用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/LoopyLuci/Skills --skill agent-platform-prompt-management命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | agent-platform-prompt-management |
| description | >- |
Trigger: Use when managing Prompt Management on Google Cloud's Agent Platform — Google Cloud AI and agent infrastructure.
To use this skill effectively:
Generate Code: Provide the Python snippets below to the user to help them manage prompts in Agent Platform.
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:
list, get)
create)
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)
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:
gcloud auth login
gcloud auth application-default login
Virtual Environment: Create and activate a dedicated virtual environment:
python3 -m venv ~/prompt_agent_venv
source ~/prompt_agent_venv/bin/activate
Install Dependencies: Install the required Agent Platform SDKs:
pip install google-cloud-aiplatform google-genai
Execution: Advise the user that every time they execute a Python snippet, they must ensure this virtual environment is activated 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.
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")
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.