| name | using-agent-harness |
| description | Use when starting any conversation — establishes skill discovery and requires Skill tool invocation before ANY response. |
| disable-model-invocation | true |
If you were dispatched as a subagent to execute a specific task, skip this skill.
The Rule
Invoke relevant or requested skills BEFORE any response or action. Even a 1% chance a skill applies means invoke it to check.
Instruction Priority
- User's explicit instructions (CLAUDE.md, AGENTS.md, direct requests) — highest priority
- Agent Harness skills — override default system behavior where they conflict
- Default system prompt — lowest priority
How to Access Skills
- Claude Code: Use the
Skill tool. Never Read skill files directly.
- Copilot CLI: Use the
skill tool (auto-discovered from plugins).
- Gemini CLI: Use the
activate_skill tool.
Codex: subagent setup, environment detection, and App finishing notes in references/codex-tools.md.
Skill Selection
When multiple skills could apply, use this order:
- Process skills first (brainstorming, debugging) — they determine HOW to approach the task.
- Implementation skills second (design, mcp-builder) — they guide execution.
"Let's build X" → brainstorming first, then implementation skills.
"Fix this bug" → debugging first, then domain-specific skills.