compozy/compozy/.agents/skills/agent-exploration/SKILL.md
agent-exploration
Dispatches scoped-write explorer subagents in parallel — always through the current harness's native subagent facility — for multi-area research that must produce written artifacts: one seven-section analysis file per slice plus a parent-authored summary.
- Source repository stars
- 2,672
- Declared platforms
- 0
- Static risk flags
- 2
- Last source update
- 2026-08-25
- Source checked
- 2026-08-25
Decision brief
What it does: where it fits
Generic parallel-research workflow. Use when a question requires deep reads across multiple distinct areas and the operator needs written artifacts (not chat output). The skill dispatches scoped-write explorer subagents in parallel; each invocation writes one analysis file. The…
Not for
- Single-file lookups ("where is X defined?", "what does function Y return?"): answer directly with the harness's search and file-reading tools. This skill is overkill.
- Edits to existing code: the explorer is scoped-write — it can only create new analysis files, not modify anything else.
Compatibility matrix
Platform support, with evidence labels
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
Inspect first. Install second.
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/compozy/compozy --skill ".agents/skills/agent-exploration"Inspect the Agent Skill "agent-exploration" from https://github.com/compozy/compozy/blob/19b8ae06c03954205295478f982c32f3658ca94e/.agents/skills/agent-exploration/SKILL.md at commit 19b8ae06c03954205295478f982c32f3658ca94e. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
What the source asks the agent to do
- 01
Required Reading Router
Match your step to the row. Read the listed files in full before producing output. They are not appendices — they are load-bearing. Inline content in this SKILL.md is a pointer, not a substitute.
Match your step to the row. Read the listed files in full before producing output. They are not appendices — they are load-bearing. Inline content in this SKILL.md is a pointer, not a substitute. - 02
Reference Index
references/dispatch-rules.md — the scoped-write contract: what the dispatched subagent may write, may read, may run; tool allow/forbid lists; parent responsibilities; parallelism cap; failure handling. Must be embedded…
references/dispatch-rules.md — the scoped-write contract: what the dispatched subagent may write, may read, may run; tool allow/forbid lists; parent responsibilities; parallelism cap; failure handling. Must be embedded…references/checklist.md — seven-section output validation checklist (runtime, inputs, scout, dispatch, files, schema, summary). Run before authoring summary.md.assets/analysis-template.md — the canonical seven-section schema every dispatched subagent fills (Overview, Mechanisms/Patterns, Relevant Sources, Transferable Patterns, Risks/Mismatches, Open Questions, Evidence) plus… - 03
Bundled Path Rule
Resolve every bundled file relative to the directory that holds this SKILL.md. When a path appears below as references/ or assets/, expand it to /references/ — the absolute skill directory — before reading or embedding it.
Resolve every bundled file relative to the directory that holds this SKILL.md. When a path appears below as references/ or assets/, expand it to /references/ — the absolute skill directory — before reading or embedding… - 04
Required Inputs
If --path or --prompt is missing, the parent asks the operator a single clarification before continuing. Never invent defaults for either. Apply the documented defaults for --agents and --model silently when omitted.
--path (required): Output directory. Analysis files are written under /analysis/. Any project-relative or absolute directory works (for example docs/research//, tasks//, or a path outside the repo). The skill is not tie…--agents (optional, default 3, hard cap 8): Number of explorer subagents to dispatch in parallel.--prompt (required): The research question. Quoted multi-line strings are supported. If omitted, the parent asks the operator before continuing. - 05
Output Layout
File numbering is zero-padded to two digits (01, 02, …, 08).
File numbering is zero-padded to two digits (01, 02, …, 08).Each slug is a short kebab-case identifier the parent assigns during the scout (Step 2), reflecting that slice's focus.summary.md is parent-authored synthesis, not a dispatched output.
Permission review
Static risk signals and limitations
Writes files
The documentation asks the agent to create, modify, or delete local files.
Create `<path>/analysis/` if absent. The dispatched subagents refuse to write into a missing directory.Writes files
The documentation asks the agent to create, modify, or delete local files.
Write each composed prompt to its own file at `<path>/.dispatch/prompts/NN_<slug>.txt` — the round's audit trail and the exact text to re-dispatch on a slice failure. The file basename (without extension) is the slice id.Reads files
The documentation asks the agent to read local files, directories, or repositories.
Issue one subagent call per slice — all in a single parallel batch, using whatever async/parallel subagent facility the harness exposes. Each call passes the slice prompt file content verbatim as the subagent's prompt, grants read/search acEvidence record
Why each signal appears
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 91/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 2,672 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
Provenance and original SKILL.md
- Repository
- compozy/compozy
- Skill path
- .agents/skills/agent-exploration/SKILL.md
- Commit
- 19b8ae06c03954205295478f982c32f3658ca94e
- License
- MIT
- Collected
- 2026-08-25
- Default branch
- main
View the original SKILL.md
Agent Exploration
Generic parallel-research workflow. Use when a question requires deep reads across multiple distinct areas and the operator needs written artifacts (not chat output). The skill dispatches scoped-write explorer subagents in parallel; each invocation writes one analysis file. The parent then synthesizes a final summary.
Every slice runs as a native subagent of the current harness, inheriting the session's model and reasoning effort unless the operator pins a model. There is no agent registry, no external CLI, and nothing to install: the explorer's role, contract, and schema travel inside each slice prompt.
Required Reading Router
Match your step to the row. Read the listed files in full before producing output. They are not appendices — they are load-bearing. Inline content in this SKILL.md is a pointer, not a substitute.
| Step | MUST read |
|---|---|
| Step 3 — composing every slice prompt | references/dispatch-rules.md + assets/explorer-prompt.md + assets/analysis-template.md |
| Step 4 — verifying outputs | references/checklist.md + assets/analysis-template.md |
Step 5 — synthesizing summary.md | every <path>/analysis/NN_analysis_<slug>.md from this round |
| Any contract violation, fabricated evidence, or retry | references/dispatch-rules.md (re-read; do not paraphrase from memory) |
Reference Index
references/dispatch-rules.md— the scoped-write contract: what the dispatched subagent may write, may read, may run; tool allow/forbid lists; parent responsibilities; parallelism cap; failure handling. Must be embedded verbatim in every slice prompt.references/checklist.md— seven-section output validation checklist (runtime, inputs, scout, dispatch, files, schema, summary). Run before authoringsummary.md.assets/analysis-template.md— the canonical seven-section schema every dispatched subagent fills (Overview, Mechanisms/Patterns, Relevant Sources, Transferable Patterns, Risks/Mismatches, Open Questions, Evidence) plus a Scope header.assets/explorer-prompt.md— the explorer role prompt (the scoped-write contract and workflow from the dispatched subagent's perspective). Embedded verbatim at the top of every slice prompt.
Bundled Path Rule
Resolve every bundled file relative to the directory that holds this SKILL.md. When a path appears below as references/<name> or assets/<name>, expand it to <agent-exploration-dir>/references/<name> — the absolute skill directory — before reading or embedding it.
Required Inputs
--path <dir>(required): Output directory. Analysis files are written under<path>/analysis/. Any project-relative or absolute directory works (for exampledocs/research/<topic>/,tasks/<slug>/, or a path outside the repo). The skill is not tied to any specific project layout.--agents <num>(optional, default 3, hard cap 8): Number of explorer subagents to dispatch in parallel.--prompt <text>(required): The research question. Quoted multi-line strings are supported. If omitted, the parent asks the operator before continuing.--model <name>(optional; default: inherit the session's model): Per-slice model override, forwarded through the harness's native per-subagent model parameter. If the harness exposes no such parameter, stop and tell the operator — never substitute a different model than requested.
If --path or --prompt is missing, the parent asks the operator a single clarification before continuing. Never invent defaults for either. Apply the documented defaults for --agents and --model silently when omitted.
Output Layout
<path>/analysis/
├── 01_analysis_<slug-a>.md
├── 02_analysis_<slug-b>.md
├── 03_analysis_<slug-c>.md
└── summary.md
- File numbering is zero-padded to two digits (
01,02, …,08). - Each slug is a short kebab-case identifier the parent assigns during the scout (Step 2), reflecting that slice's focus.
summary.mdis parent-authored synthesis, not a dispatched output.
Procedures
Step 1: Resolve inputs
- Confirm the current harness exposes a native subagent facility. If it does not, stop and tell the operator — this skill dispatches slices only as native subagents.
- Parse
--path,--agents,--prompt,--modelfrom the invocation. If--pathor--promptis missing, ask the operator and stop. - Default
--agentsto3when omitted. Reject values below 1 or above 8 — ask the operator to choose a value in range. - Do not validate
--modelahead of time — the harness surfaces incompatibilities at dispatch; when one does, report it to the operator and re-dispatch the slice with the model they choose. - Resolve
--pathto an absolute path. If the directory does not exist, ask the operator whether to create it before continuing; if creation fails, stop and report the filesystem error. - Create
<path>/analysis/if absent. The dispatched subagents refuse to write into a missing directory.
Step 2: Parent-led initial scout (MANDATORY — do not skip)
The scout is the load-bearing step that prevents wasted parallel dispatch. The parent must do this work itself before any slice is launched.
- Perform a brief read-only exploration of the problem space using path globs, content searches, and targeted file reads. The scout's job is to learn enough about the territory to divide it well — not to produce analysis content. Cap the scout at 8–15 tool calls; deep reading belongs to the dispatched subagents.
- From the scout, identify exactly
--agentsdistinct slices that are:- Non-overlapping — two slices should not require reading the same primary files for the same purpose.
- Independently answerable — a slice's analysis must not depend on another slice's output.
- Aligned with the operator's
--prompt— every slice serves the original research question.
- For each slice, assign:
- A two-digit ordinal (
01..08). - A short kebab-case slug (≤ 4 words) reflecting that slice's focus (e.g.
state-machine,event-bus,auth-boundaries). - A focused per-slice prompt that names the slice question, the primary source paths/URLs to read, and any cross-references the dispatched subagent should use.
- A two-digit ordinal (
- Briefly tell the operator the slice list (one line per slice:
NN – slug – focus) before dispatching. Do not ask for approval unless the slices look thin or overlap; just announce and proceed.
If the scout reveals that fewer than --agents non-overlapping slices exist, reduce the dispatch count and tell the operator. Do not pad slices to hit the requested count.
Step 3: Dispatch explorer subagents in parallel
Gist tripwires — the contract items the parent must enforce in every dispatched prompt:
- The prompt names three things: slice scope, slug+ordinal, exact target file path. If any is missing, the dispatched subagent must refuse and ask back.
- The dispatched subagent gets exactly one file-write — at the named target path — and nothing else. No edits, no
git/make/package managers, no writes outside<path>/analysis/. - All slices dispatch in parallel — one subagent call per slice, issued in a single batch. Wait for every slice to finish before verification.
STOP. Read references/dispatch-rules.md in full before composing any slice prompt. That file contains the complete scoped-write contract, tool allow/forbid lists, parent responsibilities, and failure handling. The bullets above are tripwires, not the contract — the contract must be embedded verbatim in every slice prompt.
STOP. Read assets/explorer-prompt.md in full before composing any slice prompt. That file is the explorer's role prompt — it must open every slice prompt verbatim so the dispatched subagent knows its contract.
STOP. Read assets/analysis-template.md in full before composing any slice prompt. That file is the canonical seven-section schema every dispatched subagent fills. The schema must be embedded in the prompt; do not paraphrase it.
Compose one slice prompt per slice. Every prompt MUST include, in this order:
assets/explorer-prompt.mdcontent embedded verbatim (the explorer's role and contract).- The operator's original
--promptverbatim, prefixed by a short orientation line. - The slice's focused question and the primary sources to read.
- The exact target path:
<path>/analysis/NN_analysis_<slug>.md(absolute path). references/dispatch-rules.mdcontent embedded verbatim (copy-paste, do not paraphrase).- The seven-section schema from
assets/analysis-template.md.
Write each composed prompt to its own file at <path>/.dispatch/prompts/NN_<slug>.txt — the round's audit trail and the exact text to re-dispatch on a slice failure. The file basename (without extension) is the slice id.
Issue one subagent call per slice — all in a single parallel batch, using whatever async/parallel subagent facility the harness exposes. Each call passes the slice prompt file content verbatim as the subagent's prompt, grants read/search access plus file-write capability (the embedded contract confines the subagent to one write), and applies a model override only when the operator pinned one. Wait for every subagent to complete before Step 4. A subagent that errors, or returns without its written-path confirmation, is a failed slice — re-dispatch it with the contract restated. Never synthesize a missing slice's analysis as if its dispatch succeeded.
Step 4: Verify outputs
Gist tripwires — the floor items that catch most failures:
- Every slice finished clean — its subagent returned the written-path confirmation (path written, seven sections). Anything else is a slice failure, not a warning.
- Exactly
Nfiles at the expectedNN_analysis_<slug>.mdpaths under<path>/analysis/. - All seven schema sections present in each file; no empty sections without a gap-note + Open Question.
- At least one cited source per file sample-checked (read local paths; check URL well-formedness).
STOP. Read references/checklist.md in full before declaring outputs verified. That file is the seven-section output validation checklist (runtime, inputs, scout, dispatch, files, schema, summary). Every item must pass; failing items trigger a re-dispatch of the offending slice. The bullets above are tripwires, not the contract.
If a section is empty, a file is missing, a cited path is fake, or the schema is incomplete, re-dispatch the offending slice with the schema embedded and a request to fill the gap. The parent never authors the missing analysis content — the dispatched subagent owns the write.
Step 5: Synthesize summary.md
- Read every
<path>/analysis/NN_analysis_<slug>.mdin full. - Author
<path>/analysis/summary.mdwith these sections:- Research Question — the operator's
--prompt, verbatim. - Slice Map — table mapping each
NN – slugto its slice question and one-line finding. - Convergences — patterns or risks that appear in two or more analyses, with cross-citations to the slice files.
- Divergences — places where slices disagree or where one slice surfaces a finding the others miss.
- Risks & Open Questions — consolidated, deduplicated list pulled from each analysis's Open Questions and Risks/Mismatches sections.
- Recommended Next Steps — short, actionable list. Each step cites the slice file(s) that support it.
- Index — bullet list of
<path>/analysis/NN_analysis_<slug>.mdpaths so a future reader can drill in.
- Research Question — the operator's
summary.mdis parent-authored. Do not dispatch a slice for this step.
When Not To Use
- Single-file lookups ("where is X defined?", "what does function Y return?"): answer directly with the harness's search and file-reading tools. This skill is overkill.
- Edits to existing code: the explorer is scoped-write — it can only create new analysis files, not modify anything else.
- Tightly scoped competitor / reference-repo research in projects that already ship a more specialized variant (for example a project-local skill that mirrors a fixed competitor catalog). Use that variant when it exists; use this skill as the generic fallback.
Error Handling
Input and scout failures are handled inline where they occur — each item in Steps 1–2 names its own recovery. Contract violations, fabricated evidence, schema-incomplete analyses, and retries route through the Required Reading Router: STOP, re-read references/dispatch-rules.md in full, then re-dispatch the offending slice — the dispatched subagent owns the write. One round-level rule lives only here:
- Network/disk error during dispatch: fail the round entirely — a half-set of analyses is unacceptable. Re-dispatch after the error is resolved.
Frequently asked questions
What to verify before installation and use
What does the agent-exploration source document cover?
Generic parallel-research workflow. Use when a question requires deep reads across multiple distinct areas and the operator needs written artifacts (not chat output). The skill dispatches scoped-write explorer subagents in parallel; each invocation writes one analysis file. The…
How do I install agent-exploration?
The source record exposes this install command: npx skills add https://github.com/compozy/compozy --skill ".agents/skills/agent-exploration". Inspect the command and pinned source before running it.
Which permission-related actions were detected?
Static rules flagged write-files, read-files in the source; the page lists the matching lines and excerpts.
Alternatives
Compare before choosing
coreyhaines31/marketingskills
ab-testing
When the user wants to plan, design, or implement an A/B test or experiment, or build a growth experimentation program. Also use when the user mentions "A/B test," "split test," "experiment," "test this change," "variant copy," "multivariate test," "hypothesis," "should I test this," "which version is better," "test two versions," "statistical significance," "how long should I run this test," "growth experiments," "experiment velocity," "experiment backlog," "ICE score," "experimentation program
coreyhaines31/marketingskills
churn-prevention
When the user wants to reduce churn, build cancellation flows, set up save offers, recover failed payments, or implement retention strategies. Also use when the user mentions 'churn,' 'cancel flow,' 'offboarding,' 'save offer,' 'dunning,' 'failed payment recovery,' 'win-back,' 'retention,' 'exit survey,' 'pause subscription,' 'involuntary churn,' 'people keep canceling,' 'churn rate is too high,' 'how do I keep users,' or 'customers are leaving.' Use this whenever someone is losing subscribers o
alirezarezvani/claude-skills
app-store-optimization
App Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklist
wanshuiyin/Auto-claude-code-research-in-sleep
citation-audit
Use it for operations and research tasks; the detail page covers purpose, installation, and practical steps.