skills/claude-skills-open/skills/agents/agent-builder/SKILL.md
--- name: agent-builder description: Build agent from spec: code, skill, config, launchd --- # Agent Builder > Takes a spec from Process Analyst and implements the agent: code, skill, config, launchd. ## When to use - After Process Analyst has created a spec - "build an agent for process X" - "implement spec Y" ## Input Spec file from `$AGENTS_PATH/specs/[name].spec.md` ## How to execute ### Step 1: Read the spec - Read the spec file completely - Read the reference implementation: Email
npx skillsauth add aaaaqwq/claude-code-skills skills/claude-skills-open/skills/agents/agent-builderInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Takes a spec from Process Analyst and implements the agent: code, skill, config, launchd.
Spec file from $AGENTS_PATH/specs/[name].spec.md
$GOOGLE_TOOLS_PATH/email_agent.py)Based on the spec, define:
agents/[name]/
├── [name]_agent.py ← Main agent script
├── config.json ← Configuration (paths, params)
├── README.md ← Documentation
└── test_[name].py ← Tests
Build rules:
claude -p --model [model] instead of API key--dry-run flagFor each step from the spec:
Create skill file skills/agents/[name]-run.md with instructions on how to run the agent manually.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "...">
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.yourcompany.[name]-agent</string>
<key>ProgramArguments</key>
<array>
<string>/usr/bin/python3</string>
<string>$AGENTS_PATH/[name]/[name]_agent.py</string>
</array>
<key>StartInterval</key>
<integer>[seconds]</integer>
<key>StandardOutPath</key>
<string>/tmp/[name]-agent.log</string>
<key>StandardErrorPath</key>
<string>/tmp/[name]-agent-error.log</string>
</dict>
</plist>
Notify that the agent is ready for testing.
$AGENTS_PATH/[name]/$SKILLS_PATH/skills/agents/google-tools/
├── email_monitor.py ← Step 1: Gmail API check
├── email_agent.py ← Step 2: AI classify (haiku)
├── email_action_agent.py ← Step 3: CRM match + log
└── data/
├── email_summaries/ ← Output: summaries
└── email_drafts/ ← Output: draft replies
Trigger: launchd every 3600s Model: Claude haiku (classification) Output: CRM activities + PM tasks + drafts + Telegram notify
process-analyst — creates the specagent-tester — tests the agentgit-workflow — commit and PRtesting
通用自媒体文章自动发布工具。支持百家号、搜狐号、知乎、微信公众号、小红书、抖音号六个平台的自动化发布流程。使用Playwright自动化实现平台导航和发布,支持通过storageState管理Cookie实现账号切换。
development
# SKILL.md - Model Configuration Status (mcstatus) ## 触发条件 - `/mcstatus` 命令 - 用户询问模型配备、模型配置、model status、模型列表等 ## 功能 实时生成 Agent + Cron 的模型配置报告,展示当前所有 agent 的主模型/fallback链和所有 cron 任务的模型分配。 ## 执行步骤 ### Step 1: 收集 Agent 模型配置 读取各 agent 的 models.json 获取主模型和 fallback 链: ```bash for agent in main ops code quant data research content market finance pm law product sales batch; do config=$(cat ~/.openclaw/agents/$agent/agent/models.json 2>/dev/null) if [ -n "$config" ]; then echo "=== $agent
tools
MCP 服务器智能管理助手。自动检测 MCP 可用性、智能开关、功能问答,提供人性化的 MCP 管理体验。
tools
从GitHub搜索并自动安装配置MCP(Model Context Protocol)服务器工具到Claude配置文件。当用户需要安装MCP工具时触发此技能。工作流程:搜索GitHub上的MCP项目 -> 提取npx配置 -> 添加到~/.claude.json -> 处理API密钥(如有)。