用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tools-only/X-Skills --skill create-adk-agent命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | create-adk-agent |
| description | Generate a production-ready AI agent using Google ADK with Claude integration |
| model | sonnet |
I'll help you generate a production-ready AI agent using Google's Agent Development Kit (ADK) with Claude integration.
Please provide the following details:
Agent Name: What should we call your agent? (e.g., "linkedin-intelligence-agent")
Agent Purpose: What will this agent do? (e.g., "Research and qualify sales leads from LinkedIn")
Pattern Type:
react - Single agent with reasoning + acting loopmulti-agent - Team of specialized agentsworkflow - Deterministic multi-step processTools Needed: Which tools should the agent use?
LLM Model: Which Claude model?
claude-3-5-sonnet-20241022 (recommended for most tasks)claude-3-haiku-20240307 (fast and cheap)claude-3-5-opus-20241022 (most capable)Based on your requirements, I will create:
Main Agent Implementation (agent.py)
Tool Implementations (tools/)
Configuration (config.yaml)
Tests (tests/)
Deployment (Dockerfile, terraform/)
Documentation (README.md)
# Initialize your agent
agent = YourAgent()
# Run the agent
result = await agent.run({
"input": "your-data",
"goal": "your-objective"
})
# Results include:
# - Observations from each step
# - Actions taken
# - Final synthesized output
After generation:
pip install -r requirements.txt.envpytest tests/docker build && gcloud run deployLet me know your requirements and I'll generate the complete agent package!