exploration-template
Use this template when delegating exploration, research, or search tasks.
> /plugin marketplace add Yeachan-Heo/oh-my-claudecode > /plugin install oh-my-claudecode@omc
How it fires
How this agent gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
Context preview
The summary Claude sees to decide when to auto-load this agent.
Use this template when delegating exploration, research, or search tasks.
Agent definition
exploration-template.mdExploration Task Template
Use this template when delegating exploration, research, or search tasks.
---
TASK
[Clear, specific description of what needs to be explored or researched]
Example:
- Find all implementations of the `UserService` class
- Research how authentication is handled in the codebase
- Explore the database schema and migration history
---
EXPECTED OUTCOME
[What the orchestrator expects to receive back]
Example:
- List of file paths with line numbers
- Summary of patterns found
- Structured report of findings with code snippets
- Recommendations based on findings
---
CONTEXT
[Background information to guide the exploration]
Example:
- This is a TypeScript monorepo using pnpm workspaces
- We're investigating a bug in user authentication
- The team previously used class-based services but is migrating to functional patterns
- Focus on files in the `src/auth` and `src/services` directories
---
MUST DO
- Use appropriate search tools (Grep, Glob) efficiently
- Return structured, actionable results
- Include file paths and line numbers
- Highlight any patterns or anomalies discovered
- [Add task-specific requirements]
---
MUST NOT DO
- Do not modify any files
- Do not make assumptions without evidence
- Do not search node_modules or build directories
- Do not return raw dumps without analysis
- [Add task-specific constraints]
---
REQUIRED SKILLS
- Efficient search and pattern matching
- Code comprehension and analysis
- Ability to identify architectural patterns
- [Add task-specific skills]
---
REQUIRED TOOLS
- Grep for content search
- Glob for file pattern matching
- Read for examining specific files
- [Add task-specific tools]
---
USAGE EXAMPLE
import { createDelegationPrompt } from '@/features/model-routing/prompts';
const prompt = createDelegationPrompt('LOW', 'Find all usages of deprecated API', {
deliverables: 'List of files with line numbers where the deprecated API is used',
successCriteria: 'Complete list with no false positives',
context: 'We are migrating from v1 to v2 API',
mustDo: [
'Search for both old and new API patterns',
'Group results by directory',
'Note any migration-in-progress patterns'
],
mustNotDo: [
'Do not search test files',
'Do not include commented-out code'
],
requiredSkills: [
'Regex pattern matching',
'Understanding of API versioning patterns'
],
requiredTools: [
'Grep with regex support',
'Glob for TypeScript files'
]
});Read more
Exploration Task Template
Use this template when delegating exploration, research, or search tasks.
---
TASK
[Clear, specific description of what needs to be explored or researched]
Example:
- Find all implementations of the `UserService` class
- Research how authentication is handled in the codebase
- Explore the database schema and migration history
---
EXPECTED OUTCOME
[What the orchestrator expects to receive back]
Example:
- List of file paths with line numbers
- Summary of patterns found
- Structured report of findings with code snippets
- Recommendations based on findings
---
CONTEXT
[Background information to guide the exploration]
Example:
- This is a TypeScript monorepo using pnpm workspaces
- We're investigating a bug in user authentication
- The team previously used class-based services but is migrating to functional patterns
- Focus on files in the `src/auth` and `src/services` directories
---
MUST DO
- Use appropriate search tools (Grep, Glob) efficiently
- Return structured, actionable results
- Include file paths and line numbers
- Highlight any patterns or anomalies discovered
- [Add task-specific requirements]
---
MUST NOT DO
- Do not modify any files
- Do not make assumptions without evidence
- Do not search node_modules or build directories
- Do not return raw dumps without analysis
- [Add task-specific constraints]
---
REQUIRED SKILLS
- Efficient search and pattern matching
- Code comprehension and analysis
- Ability to identify architectural patterns
- [Add task-specific skills]
---
REQUIRED TOOLS
- Grep for content search
- Glob for file pattern matching
- Read for examining specific files
- [Add task-specific tools]
---
USAGE EXAMPLE
import { createDelegationPrompt } from '@/features/model-routing/prompts';
const prompt = createDelegationPrompt('LOW', 'Find all usages of deprecated API', {
deliverables: 'List of files with line numbers where the deprecated API is used',
successCriteria: 'Complete list with no false positives',
context: 'We are migrating from v1 to v2 API',
mustDo: [
'Search for both old and new API patterns',
'Group results by directory',
'Note any migration-in-progress patterns'
],
mustNotDo: [
'Do not search test files',
'Do not include commented-out code'
],
requiredSkills: [
'Regex pattern matching',
'Understanding of API versioning patterns'
],
requiredTools: [
'Grep with regex support',
'Glob for TypeScript files'
]
});For Codex users: Check out oh-my-codex — the same orchestration experience for OpenAI Codex CLI. Liked OmC but found it a bit overkill? Try gajae-code.
Repo: Yeachan-Heo/oh-my-claudecode
Other agents on oh-my-claudecode.
code-reviewer
Expert code review specialist with severity-rated feedback, logic defect detection, SOLID principle checks, style, performance, and quality strategy
code-simplifier
Simplifies and refines code for clarity, consistency, and maintainability while preserving all functionality. Focuses on recently modified code unless…
critic
Work plan and code review expert — thorough, structured, multi-perspective (Opus)
debugger
Root-cause analysis, regression isolation, stack trace analysis, build/compilation error resolution

