reduce
Extract atomic insights from raw source material. Takes articles, transcripts, meeting notes, or any unstructured input and produces structured claims with provenance metadata. The foundational extraction step of the 6R processing pipeline. Triggers on: "extract", "reduce", "distill", "summarize source"
Best use case
reduce is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Extract atomic insights from raw source material. Takes articles, transcripts, meeting notes, or any unstructured input and produces structured claims with provenance metadata. The foundational extraction step of the 6R processing pipeline. Triggers on: "extract", "reduce", "distill", "summarize source"
Teams using reduce should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/reduce/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How reduce Compares
| Feature / Agent | reduce | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Extract atomic insights from raw source material. Takes articles, transcripts, meeting notes, or any unstructured input and produces structured claims with provenance metadata. The foundational extraction step of the 6R processing pipeline. Triggers on: "extract", "reduce", "distill", "summarize source"
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# /reduce > Extract insights from source material into atomic, reusable claims. ## Purpose Transform raw input (articles, transcripts, notes, documents) into structured atomic claims — each with provenance, confidence, and topic tags. This is the core extraction step: it turns noise into signal. Every claim stands alone and can be recombined later. ## Usage ```bash # Reduce a file /reduce path/to/transcript.md # Reduce inline text /reduce --text "Ed called about pricing. He wants $2K per seat for enterprise..." # Reduce with explicit source metadata /reduce path/to/article.md --source "HBR" --date 2026-03-15 # Reduce with depth control /reduce path/to/paper.pdf --depth deep # Reduce multiple files /reduce path/to/*.md --batch ``` ## Arguments | Flag | Type | Default | Description | |------|------|---------|-------------| | `<input>` | positional | required | File path, glob pattern, or `--text` for inline | | `--text` | string | — | Inline text to reduce (alternative to file input) | | `--source` | string | auto-detect | Source attribution (author, publication, URL) | | `--date` | date | today | Date of the source material | | `--depth` | enum | `standard` | `quick` (key points only), `standard` (claims + context), `deep` (claims + evidence + counterpoints) | | `--format` | enum | `atomic` | `atomic` (one claim per block), `outline` (hierarchical), `table` (comparison grid) | | `--max-claims` | int | 50 | Maximum number of claims to extract | | `--tags` | string[] | auto | Topic tags to apply (auto-detected if omitted) | | `--batch` | flag | false | Process multiple files, one output per input | | `--output` | path | stdout | Write to file instead of stdout | ## Workflow 1. **Ingest** — Read source material. Detect format (markdown, PDF, plain text, transcript). Extract metadata (title, author, date) if present. 2. **Segment** — Break source into logical sections. Identify speakers in transcripts. Detect topic shifts. 3. **Extract** — Pull atomic claims from each segment. Each claim is a single, falsifiable statement or actionable insight. No compound claims. 4. **Classify** — Tag each claim: `fact`, `opinion`, `decision`, `action-item`, `question`, `insight`. Assign confidence (0.0–1.0). 5. **Deduplicate** — Merge claims that say the same thing in different words. Keep the clearest phrasing. 6. **Enrich** — Add topic tags, link to related entities (people, projects, orgs). Note provenance (source + location in source). 7. **Structure** — Emit claims in the requested format with YAML frontmatter. ## Output Each reduced file produces structured output: ```yaml --- type: reduction source: "path/to/original.md" source_title: "Q1 Strategy Call with Ed" source_date: 2026-03-15 reduced_at: 2026-03-20T14:30:00Z claim_count: 12 topics: [pricing, enterprise, ai-masters] --- ## Claims ### 1. Enterprise pricing target is $2K/seat - **type:** decision - **confidence:** 0.9 - **speaker:** Ed Honour - **context:** Discussed during pricing review segment - **tags:** [pricing, enterprise, ai-masters] ### 2. Current conversion rate from free tier is 3.2% - **type:** fact - **confidence:** 0.7 - **speaker:** Roberto - **context:** Referenced but not sourced — verify against analytics - **tags:** [metrics, conversion, funnel] ``` ## Dependencies - `/seed` — Often receives input from seed (but can run standalone) - `/reflect` — Output feeds into reflect for connection discovery - File system read access to source material - PDF parsing capability for `.pdf` inputs
Related Skills
/do
> The agent's primary skill. Customize this to match your agent's purpose.
/report
> Generate structured reports. Director-owned.
/primary
> Main workflow execution and routing. Director-owned.
Qualify
## Command
Prospect
## Command
Close Plan
## Command
Battlecard
## Command
Spec
## Command
Schedule
## Command
Repurpose
## Command
Ideate
## Command
Analyze
## Command