Agent Skills
› HashWarlock/nobody-plans-for-pi
› using-plans-for-nobody
using-plans-for-nobody
GitHub规范 Agent 在交互前必须扫描并加载适用技能的流程,强调先加载后响应,包含优先级、防理性化检查及子代理工作流指令。
Trigger Scenarios
启动新对话
接收用户消息需处理任务
Install
npx skills add HashWarlock/nobody-plans-for-pi --skill using-plans-for-nobody -g -y
SKILL.md
Frontmatter
{
"name": "using-plans-for-nobody",
"description": "Use when starting any conversation — establishes how to find and use skills, requiring skill loading before any response including clarifying questions"
}
Using Plans for Nobody
If there is even a 1% chance a skill might apply to what you are doing, you MUST load and follow the skill.
How to Access Skills
In pi, use /skill:name to load a skill. Skill descriptions are in the system prompt — scan them before every task.
The Rule
Load relevant skills BEFORE any response or action. Even a 1% chance means load the skill.
- User message received
- Scan available skills — might any apply?
- If yes:
/skill:name, announce "Using [skill] to [purpose]" - Follow skill instructions exactly
- Then respond
Skill Priority
- Process skills first (nobody-brainstorms, nobody-debugs) — determines HOW to approach
- Implementation skills second (nobody-uses-tdd, nobody-writes-plans) — guides execution
Red Flags — You're Rationalizing
| Thought | Reality |
|---|---|
| "Just a simple question" | Questions are tasks. Check for skills. |
| "Need more context first" | Skill check comes BEFORE clarifying questions. |
| "Let me explore first" | Skills tell you HOW to explore. |
| "Too simple for a skill" | Simple things become complex. Use it. |
| "I remember this skill" | Skills evolve. Read current version. |
Subagent Workflows
Use the subagent tool for delegated execution:
/implement <task>— scout → planner → worker chain/scout-and-plan <task>— scout → planner (no implementation)/implement-and-review <task>— worker → reviewer → worker/review <scope>— reviewer on recent changes/scout <query>— fast codebase recon
Version History
- fc2edc0 Current 2026-07-25 05:06


