一键导入
meta-skills
Discovers and bridges skills from Claude, Cursor, Copilot, and other ecosystems into pi. Use /meta-skills to list and scan external skills.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Discovers and bridges skills from Claude, Cursor, Copilot, and other ecosystems into pi. Use /meta-skills to list and scan external skills.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Skill chain resolver extension. Resolves `imports:` and `Read skill:` references in SKILL.md files recursively, making chained skills available to pi as first-class skills. Use /skill-chain to inspect and manage skill chains.
Independent execution pipeline. Takes any plan markdown as input, breaks it into discrete tasks with dependencies, and orchestrates specialized sub-agents to implement them. Enforces 0 lint/build errors after every task. Resumable if interrupted. Use when the user says "deep execute", "/deep-execute", or wants to implement a plan.
Launch a multi-phase planning pipeline: research the codebase AND web for best practices, create a plan, generate a user flow spec, deepen it, get critiques from specialized agents, resolve questions, and produce a finalized plan. All state saves to docs/plans/{slug}/ as committable markdown. Resumable if interrupted. Use when the user says "deep plan", "/deep-plan", or asks for a thorough implementation plan.
Protocol for preserving critical skill invariants across context compaction. Imported by orchestrator skills (deep-plan, deep-execute, deep-review, deep-auto). Uses PreCompact + PostCompact hooks to ensure non-negotiable rules survive context loss.
Fully autonomous pipeline orchestrator. Chains deep-plan (with auto-resolved Q&A), deep-execute, deep-review, and optionally deep-complete into a single unattended run. All critic questions are resolved using codebase evidence and codified best practices. Resumable if interrupted. Use when the user says "deep auto", "/deep-auto", or wants to run the full pipeline autonomously.
Structured bug-fix pipeline. Reproduce → validate intent → write red test → fix → verify → regression review → complete. Never fixes without a failing test first. Resumable. Use when the user says "deep bug", "/deep-bug", or provides a bug report.
| name | meta-skills |
| description | Discovers and bridges skills from Claude, Cursor, Copilot, and other ecosystems into pi. Use /meta-skills to list and scan external skills. |
This extension discovers skills from external AI coding tools and makes them available inside pi as first-class skills.
| Source | Path | Type |
|---|---|---|
| Claude | ~/.claude/skills/ | claude |
| Claude Plugins | ~/.claude/plugin-skills/ | claude-plugin |
| Cursor | .cursor/skills/ | cursor |
| Copilot | .github/copilot/skills/ | copilot |
| Any | configurable | generic |
Create .pi/meta-skills.json in your project root, or ~/.pi/agent/meta-skills.json for global config:
{
"sources": [
{ "root": "~/.claude/skills", "type": "claude" },
{ "root": "~/.claude/plugin-skills", "type": "claude-plugin" },
{ "root": ".cursor/skills", "type": "cursor" },
{ "root": ".github/copilot/skills", "type": "copilot" }
]
}
| Command | Description |
|---|---|
/meta-skills | List discovered external skills |
/meta-skills scan | Rescan all sources |
/meta-skills sources | Show configured sources |