用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/patrickking67/godmode --skill summon命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | summon |
| description | Summon the right subagent for a task: survey those available and dispatch the best fit. |
Map the specialized subagents available in this environment and, if $ARGUMENTS
describes a task, recommend the best-fit agent(s) and show exactly how to dispatch them.
Gather every agent on hand from all sources:
Explore, or whatever the Task tool offers)..claude/agents/*.md.~/.claude/agents/*.md.oracle (read-only code recon), demiurge (implementation), inquisitor (review),
arbiter (test/verify judgment), and seer (debugging / root-cause).Glob those paths and read each definition's frontmatter for its name and description. De-duplicate by name; note where each one comes from.
For every agent, give a one-line summary of what it's best at, pulled from its description, not invented. Group them by source (host, project, personal, plugin) so the user can see what's built in versus what this repo adds.
If $ARGUMENTS names a task, pick the best-fit agent(s):
If no task is given, present the categorized list from steps 1–2 so the user knows what's on hand, and invite them to re-run with a task description for a recommendation.
The principle: delegate broad exploration and parallelizable, well-bounded work to subagents; keep tightly-coupled reasoning that needs full context in the main thread.