google/agent-platform-prompt-management
>- Manages and orchestrates prompts in Agent Platform. Use when you need to create, list, retrieve, version, or delete managed prompts in Agent Platform. Don't use for model training, model deployment to endpoints, or managing non-Agent Platform prompts.
npx skills add https://github.com/google/skills --skill agent-platform-prompt-management
To use this skill effectively:
them manage prompts in Agent Platform.
file system for these operations.
Before executing any commands or scripts on behalf of the user, you must adhere
to the following safety tiers based on the action requested, to prevent
accidental mutation or permanent deletion of prompt resources:
list, get)create)executing prompt creation, to prevent unintended resource proliferation
or misconfiguration. The confirmation prompt must clearly explain the
proposed prompt creation and its key parameters (e.g., display name,
template text, target model). Natural-language paraphrases without
specifying the parameters are not sufficient.
turn as presenting the confirmation prompt. Stop and wait for the user's
reply; only execute after explicit 'Yes' / approval.
> I will create a prompt in Agent Platform with the following
> parameters. Please confirm this information before I proceed:
>
> * Display Name: Customer Support Greeting
> * Target Model: gemini-2.5-pro
> * Template Text: "Hello {{user_name}}, how can I help..."
>
> Do you confirm? [Yes/No]
delete)delete it") before executing prompt deletion, to prevent accidental
permanent loss of production prompt assets. Ask for confirmation before
any pre-flight checks.
typed confirmation. Wait for the user to reply in a new turn.
> I will permanently delete the following prompt from Agent Platform.
> This action is irreversible. Please explicitly type your confirmation
> (e.g., "I confirm") before I proceed:
>
> * Prompt ID: prompt_12345abc
> * Display Name: Legacy Outdated Prompt
>
> Please type your confirmation to proceed.
CRITICAL: Before the user runs any of the Python snippets below, you MUST
advise them to ensure the environment is correctly initialized by following
these steps:
and configure active Application Default Credentials (ADC) for Agent
Platform access:
gcloud auth login
gcloud auth application-default login
google-cloud-aiplatform andgoogle-genai. Do not create a virtual environment — it starts empty
and hides packages the environment already provides, forcing a redundant
install. Probe, and install only what is missing:
python3 -c "import vertexai, google.genai" \
|| pip install google-cloud-aiplatform google-genai
python3. There is noenvironment to activate first.
> [!TIP]
>
> Placeholder Parameter Replacement: The Python scripts below use uppercase
> string placeholders (like "PROJECT_ID", "LOCATION_ID", and "PROMPT_ID").
> You MUST dynamically replace these placeholders with the actual Project
> ID, Region, and Prompt ID values provided in the user's prompt (or discovered
> context) before generating or providing the scripts.
The SDK provides a high-level Prompt class in the preview module.
Use when you need to create a new managed prompt in Agent Platform.
instructions and Python snippets.
import vertexai
from vertexai.preview import prompts
vertexai.init(project="PROJECT_ID", location="LOCATION_ID")
all_prompts = prompts.list()
for p in all_prompts:
print(f"Name: {p.display_name}, ID: {p.prompt_id}")
import vertexai
from vertexai.preview import prompts
vertexai.init(project="PROJECT_ID", location="LOCATION_ID")
retrieved_prompt = prompts.get(prompt_id="PROMPT_ID")
# Versions are supported: prompts.get(prompt_id="PROMPT_ID", version_id="2")
# Assemble with variables (kwargs must match template variable names)
assembled = retrieved_prompt.assemble_contents(text="The quick brown fox...")
print(assembled)
CRITICAL: You must pass the numeric prompt ID (e.g.,
"1234567890123456789") to prompts.delete(). The SDK constructs the full
resource path internally using the project and location from vertexai.init().
Confirmation Required: As a Tier D (Destructive) operation, the agent MUST
pause and request explicit, high-friction typed re-confirmation of the prompt ID
from the user before generating or providing the deletion code. The action is
irreversible.
> [!IMPORTANT]
>
> **NEVER pre-emptively provide or execute any deletion code before receiving
> the user's response in a new turn.** You must never speculate or assume that
> confirmation will be given. Asking for confirmation and providing the code in
> a single parallel turn is a severe safety violation.
import vertexai
from vertexai.preview import prompts
vertexai.init(project="PROJECT_ID", location="LOCATION_ID")
prompts.delete(prompt_id="PROMPT_ID")
deleted resource returns NOT_FOUND. Treat this as success.
enclosed in double curly braces) in your prompt templates.
production prompts.
gemini-2.5-pro)when creating the prompt to ensure consistency.
metadata_schema_uri and nested metadata structure to ensure the prompt
is recognized by Agent Platform Studio and the Prompts SDK.
Take google/agent-platform-prompt-management from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.
The instructions reference pip.
Without those the skill loads but fails at the first command.