用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/xsw632/ChipAgent --skill chipyard命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | chipyard |
| description | Unified Chipyard flow: automatically routes to local or Docker workflow based on backend_mode setting. |
| allowed-tools | ["Bash","Read","AskUserQuestion"] |
Unified entry point. Routes to the appropriate workflow based on .chipagent/env.json configuration.
PROJECT_ROOT="<project-root>"
BACKEND_MODE=$(grep -o '"backend_mode": *"[^"]*"' "$PROJECT_ROOT/.chipagent/env.json" | cut -d'"' -f4)
If backend_mode is missing or empty:
Run /chip-agent:initialize to detect installed tools and determine best backend mode
backend_mode to .chipagent/env.jsonRe-read backend_mode after initialization completes:
BACKEND_MODE=$(grep -o '"backend_mode": *"[^"]*"' "$PROJECT_ROOT/.chipagent/env.json" | cut -d'"' -f4)
Continue with routing using the newly detected backend_mode
If still empty after initialization, default to local.
| backend_mode | Skill to read | Description |
|---|---|---|
local | skills/chipyard-local/SKILL.md | Local Chipyard installation via MCP tools |
docker | skills/chipyard-docker/SKILL.md | Docker containers (ucbbar/chipyard-image) |
Execution: Read the appropriate skill file and follow its pipeline.
Use either local or Docker MCP servers:
mcp__chipagent-backend__* tools → run Chipyard locallymcp__chipagent-backend-docker__* tools → run Chipyard in Docker containersThen invoke this skill again.