npx skills add ...
npx skills add google/skills --skill 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 google/skills --skill agent-platform-prompt-management
To use this skill effectively:
Execute Operations via Python: Run the Python snippets below using
run_command in the execution environment to manage prompts in Agent
Platform on behalf of the user. Do not delegate execution to the user or
claim lack of access once approved.
No File System Search: Do not try to find Python files or scripts on the 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:
Tier R: Read-only (list, get)
Tier M: Mutating & Reversible (create)
Requires interactive confirmation with 'Yes'/'No' options before 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.
Same-turn restriction: Do not execute the creation code in the same turn as presenting the confirmation prompt. Stop and wait for the user's reply; only execute after explicit 'Yes' / approval.
Every parameter in the card must trace back to something the user said.
The target model is a user choice, not a default: if the user did not
name one, ASK before building the card. Do not carry over the model that
appears in the examples here or in references/create.md.
Gold Standard Example — for a user who said "create a prompt called Customer Support Greeting for gemini-2.5-pro with the template Hello {{user_name}}, how can I help...":
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]
Tier D: Destructive & Irreversible (delete)
Requires explicit typed confirmation (e.g. "I confirm" or "Yes, delete it") before executing prompt deletion, to prevent accidental permanent loss of production prompt assets. Ask for confirmation before any pre-flight checks.
Same-turn restriction: NEVER execute in the same turn as asking for typed confirmation. Wait for the user to reply in a new turn.
Gold Standard Example:
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 PromptPlease 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:
Google Cloud Authentication: Authenticate with your Google Cloud account and configure active Application Default Credentials (ADC) for Agent Platform access:
Python Dependencies: This skill needs google-cloud-aiplatform and
google-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:
Execution: Run Python snippets with a plain python3. There is no
environment to activate first.
[!TIP]
Placeholder Parameter Replacement: The Python scripts below use uppercase string placeholders (like
"PROJECT_ID","LOCATION_ID","PROMPT_ID", and"MODEL_ID"). You MUST dynamically replace these placeholders with the actual Project ID, Region, Prompt ID, and target model values provided in the user's prompt (or discovered context) before generating or providing the scripts. If the user did not supply one of these, ask -- a placeholder is never satisfied by guessing a plausible value.
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.
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 executing the deletion code. The action is irreversible.
Once the user replies with typed confirmation (e.g., "I confirm"), proceed
immediately to execute the deletion code via run_command.
[!IMPORTANT]
NEVER pre-emptively 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 running the code in a single parallel turn is a severe safety violation.
When the user asks to list prompts or check that a deleted prompt is gone, list
the prompts and explicitly state whether the deleted prompt ID is present. If it
is not found, explicitly confirm: "I have verified that the prompt with ID
<PROMPT_ID> is no longer present in the project."
"MODEL_ID" placeholder. Like the other
placeholders it is MUST-replace, and it is replaced from what the user
said -- if they named no model, ask. Do not substitute a plausible current
model such as gemini-2.5-pro.metadata_schema_uri and nested metadata structure to ensure the prompt
is recognized by Agent Platform Studio and the Prompts SDK.