Skip to content
Agent Orchestration
Agent

exploration-template

Use this template when delegating exploration, research, or search tasks.

From plugin
oh-my-claudecode
39k21 skills21 agents21 commands11 hooks
+1
Install
> /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.md

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'
  ]
});
Read more
Ships withoh-my-claudecode

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.

Get the whole plugin

Other agents on oh-my-claudecode.