component-extraction
Domain-neutral methodology for the third level of Adler-style reading - extracting structured components (terms, propositions, arguments, solutions) from a document section by section. Selects a reading strategy appropriate to document size and structure (section-based for documents under 50 pages with clear sections; windowing for long documents without breaks; targeted for hybrid content where only specific sections matter). Writes per-section extraction notes that downstream synthesis can consume. Reusable across any extraction workflow - skill creation from a methodology document, Pass-2 content grasp on a paper's full text, evidence-mining from a long-form report. Use when an agent has done structural analysis and now needs to extract the actual atomic content. Trigger keywords - component extraction, section-by-section extraction, extract terms, extract propositions, extract arguments, Adler Level 3, interpretive reading.
What this skill does
# component-extraction
The third level of Adler's reading methodology. Builds on `structural-analysis`: now that the document's unity, parts, and problems are mapped, this skill extracts atomic components — terms, propositions, arguments, solutions — section by section.
The extraction is the substrate the downstream synthesis works on. Quality here determines downstream artifact quality.
## Workflow
```
- [ ] Step 1: Choose a reading strategy based on document size and structure
- [ ] Step 2: Initialize a per-section extraction workspace
- [ ] Step 3: For each section in turn — read it, extract terms / propositions / arguments / solutions, write to workspace, clear from context
- [ ] Step 4: Cross-reference (terms used across sections, contradictions across sections)
- [ ] Step 5: Output the consolidated extraction
```
## Inputs
The calling agent passes:
- `source`: the document
- `structural_output`: from `structural-analysis` — gives the parts list and unity statement
- `purpose_context`: e.g., `paper_pass_2_content_grasp`, `skill_extraction_from_methodology`, `evidence_mining`
- `domain_hint`: optional
## Reading strategies
Match strategy to document characteristics from `structural-analysis`. Don't read everything at once — that's how context windows fill and quality drops.
### Strategy 1 — Section-based
**When:** clear sections, document under ~50 pages.
**How:** read one section, extract components for it, write to workspace, clear context, repeat. Each section is a unit of focused attention.
This is the default strategy. Most well-structured documents fit it.
### Strategy 2 — Windowing
**When:** long document over ~50 pages with no clear section breaks (long-form essays, transcripts).
**How:** read 200-line chunks with ~20-line overlap (so context spans the boundary), extract per chunk, dedupe across chunks at the end.
### Strategy 3 — Targeted
**When:** hybrid content where only specific sections from `structural-analysis` are high-value for the calling purpose.
**How:** read only the high-value sections (skip the rest with a note), extract intensively per relevant section.
The calling agent's `purpose_context` determines which sections are high-value.
## What to extract per section
For each section, extract these four component types. Each gets a structured entry.
### Terms (definitions; key concepts)
Words or short phrases the document defines, uses repeatedly, or relies on as load-bearing concepts. Capture:
- The term as written
- Definition (quoted from source, or "definition implicit; inferred from use" if not stated)
- Section reference
Distinguish terms-of-art (specific to this document or field) from generic terms (where the document uses an ordinary word in a normal sense — those don't need extraction).
### Propositions (claims; assertions)
Statements the document makes — claims it wants the reader to accept. Capture:
- Claim text
- Supporting evidence cited (quoted or summarized) or "no support cited"
- Hedging if any (preserve the source's hedge — never promote "suggests" to "shows")
### Arguments (logical sequences from premise to conclusion)
How does the document get from premise A to conclusion C? Capture:
- The premise(s)
- The conclusion
- The reasoning steps (numbered)
- Gaps where present ("step from X to Y is asserted, not derived")
### Solutions (concrete examples; templates; procedures)
Anything the document provides as a model of execution — examples worked through, templates to fill, scripts to run, procedures to follow. Capture:
- The example or template (referenced, not copied wholesale)
- The context it's offered for
- What variation is allowed vs prescribed
## Output structure
A consolidated extraction that the synthesis level (`synthesis-application`) can evaluate.
```markdown
## Component Extraction Output
### Reading strategy used
{section-based | windowing | targeted}
Rationale: {why}
### Per-section extractions
#### Section 1: {name}
**Terms:**
- {term} — {definition} — {section ref}
- ...
**Propositions:**
- {claim} — {evidence or "no support"} — {hedge if any}
- ...
**Arguments:**
- Premises: {list}
Conclusion: {claim}
Reasoning: {steps}
Gaps: {if any}
**Solutions:**
- {example or template} — {context} — {what's variable}
#### Section 2: {name}
... (same structure)
### Cross-section observations
- Terms used across sections (consolidated definitions)
- Contradictions: where section X says A and section Y says not-A
- Reused arguments: where the same logical move appears multiple times
```
## Common patterns
### Pattern A — Skill extraction (call from skill-creator)
`purpose_context=skill_extraction_from_methodology`. Each extracted component becomes a candidate for the SKILL.md being built — terms become the skill's vocabulary, propositions become its claims, arguments become its decision logic, solutions become its examples and templates.
### Pattern B — Paper Pass 2 (call from paper-extractor)
`purpose_context=paper_pass_2_content_grasp`. Per-section extraction maps cleanly to the paper's section structure (intro / methods / results / discussion). The output feeds Pass 2's content-grasp questions: terms become unfamiliar-terms-to-gloss, propositions become the main argument, arguments become the hypothesis-evidence chain, solutions become the figure-by-figure analysis.
### Pattern C — Evidence mining (call from a research-claim-map workflow)
`purpose_context=evidence_mining`. Propositions are the centerpiece — extract every claim with its evidence and hedge, prepare for downstream triangulation across documents.
## Guardrails
1. **Read one section at a time.** Don't load the whole document and try to extract everything at once — context overflow degrades quality.
2. **Quote when capturing.** When extracting a definition or a claim, quote the source phrasing (or note "paraphrased"). Paraphrasing silently introduces drift.
3. **Preserve hedging.** If a proposition says "suggests" or "is consistent with," the extraction says the same. Never promote.
4. **Don't extract what isn't there.** If a section has no extractable terms or solutions, write `{none}`. Don't pad to fit the template.
5. **Flag missing support.** If a proposition has no cited evidence, mark it explicitly. The downstream synthesis-application gate uses this signal.
## Related
- [`structural-analysis`](../structural-analysis/SKILL.md) — Level 2, run before this. Provides the parts list this skill iterates over.
- [`synthesis-application`](../synthesis-application/SKILL.md) — Level 4, run after this. Evaluates the components this skill produced for completeness + logic + applicability.
- [`research-claim-map`](../research-claim-map/SKILL.md) — pairs naturally with the `evidence_mining` purpose; consumes propositions and triangulates.
- The skill-creator skill at `skills/skill-creator/SKILL.md` invokes this skill as its Step 3.
- [`paper-three-pass-extraction`](../paper-three-pass-extraction/SKILL.md) invokes this skill in Pass 2 to produce the structured per-section content used by the synthesizer.
Related in Design
contribute
IncludedLocal-only OSS contribution command center. Auto-refreshes the user's in-flight PR and issue state on invoke so conversations start with full context — no need to brief Claude on what's in flight. Helps the user find issues to contribute to on GitHub, builds per-repo dossiers of what each upstream expects (CLA, DCO, branch convention, AI policy, draft-first, review bots, issue templates), runs deterministic gates before any external action so AI-assisted contributions don't reach maintainers as slop. State is markdown-only: candidate files at ~/.contribute-system/candidates/, repo dossiers at ~/.contribute-system/research/, append-only event log at ~/.contribute-system/log.jsonl. No database, no cloud calls. Use when the user asks about their PRs / issues / contributions, wants to find new work to take on, claim an issue, build/refresh a repo's dossier, or draft a Design Issue or PR. Trigger with "/contribute", "what's my PR status", "find a contribution", "claim issue X", "draft a Design Issue for Y", "refresh dossier for Z".
architectural-analysis
IncludedUser-triggered deep architectural analysis of a codebase or scoped subtree across eight modes — information architecture, data flow, integration points, UI surfaces, interaction patterns, data model, control flow, and failure modes. This skill should be used when the user asks to "diagram this codebase," "map the architecture," "show the data flow," "give me an ERD," "trace control flow," "find the integration points," "verify the layout pattern," "audit the UX architecture," or any similar request whose primary deliverable is mermaid diagrams plus cited reports under docs/architecture/. Dispatches haiku/sonnet sub-agents in parallel for per-mode exploration, then verifies every citation mechanically before any node lands in a diagram. Not for one-off prose explanations of code (use code-explanation) or for high-level system design from scratch (use system-design).
mcp
IncludedModel Context Protocol (MCP) server development and tool management. Languages: Python, TypeScript. Capabilities: build MCP servers, integrate external APIs, discover/execute MCP tools, manage multi-server configs, design agent-centric tools. Actions: create, build, integrate, discover, execute, configure MCP servers/tools. Keywords: MCP, Model Context Protocol, MCP server, MCP tool, stdio transport, SSE transport, tool discovery, resource provider, prompt template, external API integration, Gemini CLI MCP, Claude MCP, agent tools, tool execution, server config. Use when: building MCP servers, integrating external APIs as MCP tools, discovering available MCP tools, executing MCP capabilities, configuring multi-server setups, designing tools for AI agents.
react-native-skia
IncludedDesign, build, debug, and optimise high-polish animated graphics in React Native or Expo using @shopify/react-native-skia, Reanimated, and Gesture Handler. Use when the user wants canvas-driven UI, shaders, paths, rich text, image filters, sprite fields, Skottie, video frames, snapshots, web CanvasKit setup, or performance tuning for custom motion-heavy elements such as loaders, hero art, cards, charts, progress indicators, particle systems, or gesture-driven surfaces. Also use when the user asks for fluid, glow, glass, blob, parallax, 60fps/120fps, or GPU-friendly animated effects in React Native, even if they do not explicitly say "Skia". Do not use for ordinary form/layout work with standard views.
plaid
IncludedProduct Led AI Development — guides founders from idea to launched product. Six capabilities: Idea (discover a product idea), Validate (pressure-test the idea against fatal flaws, problem reality, competition, and 2-week MVP feasibility), Plan (vision intake + document generation), Design (translate image references into a design.md spec), Launch (go-to-market strategy), and Build (roadmap execution). Use when someone says "PLAID", "plaid idea", "help me find an idea", "product idea", "idea from my business", "idea from my expertise", "plaid validate", "validate my idea", "pressure-test", "is this idea good", "find fatal flaws", "validate the problem", "plan a product", "define my vision", "generate a PRD", "product strategy", "plaid design", "design from image", "translate image to design", "create design.md", "extract design tokens", "plaid launch", "go-to-market", "launch plan", "GTM strategy", "launch playbook", "plaid build", "build the app", "start building", or "execute the roadmap".
nextjs-framer-motion-animations
IncludedAdds production-safe Motion for React or Framer Motion animations to Next.js apps, including reveal, hover and tap micro-interactions, whileInView, stagger, AnimatePresence, layout and layoutId transitions, reorder, scroll-linked UI, and lightweight route-content transitions. Use when the user asks to add, refactor, or debug Motion or Framer Motion in App Router or Pages Router codebases, especially around server/client boundaries, reduced motion, LazyMotion, bundle size, hydration, or route transitions. Avoid for GSAP-style timelines, WebGL or 3D scenes, heavy scroll storytelling, or CSS-only effects unless Motion is explicitly requested.