DA
data-collection
Use when gathering files, running searches, and producing a structured context manifest for other agents. Read-only — never writes code or makes design decisions.
Install
mkdir -p .claude/skills/data-collection && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/14942" && unzip -o skill.zip -d .claude/skills/data-collection && rm skill.zipInstalls to .claude/skills/data-collection
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Use when gathering files, running searches, and producing a structured context manifest for other agents. Read-only — never writes code or makes design decisions.162 chars✓ has a “when” trigger
About this skill
Data Collection
Dev Stage: Scan
Purpose: Locate, read, and summarize relevant files into a structured manifest without making design decisions.
Loaded by: data-collector-specialist when ledger stage = Scan
When to Use
- At the start of any new task before planning or implementation begins
- When an agent needs targeted context from the codebase without reading files itself
- When the scope of a task is unclear and evidence must be gathered first
Procedure
- Read the collection task from
## Handoff Payloadin.github/.ai_ledger.md. - Use
grep_searchandfile_searchto locate relevant files without reading them yet. - Prioritize files most directly relevant to the task — read the most relevant first.
- For each file read: record path, purpose, and relevant content (1–3 sentences max per file).
- Stop when the requested context is collected OR the 10-file read limit is reached — whichever comes first. If more than 10 files appear relevant, categorize by directory/module and stop at the boundary.
- Write collected context as a structured manifest to
verification-artifacts/{task-id}-scan.md. - Append result summary to ledger Decisions Log.
Output
verification-artifacts/{task-id}-scan.md— structured manifest: file paths, purposes, relevant excerpts- No design conclusions, no recommendations, no architectural judgments