From thinking-frameworks-skills
Extracts structured components (terms, propositions, arguments, solutions) from a document section by section using Adler-style reading. Selects a reading strategy based on document size and structure. Use after structural analysis when atomic content extraction is needed.
How this skill is triggered — by the user, by Claude, or both
Slash command
/thinking-frameworks-skills:component-extractionThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
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 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.
- [ ] 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
The calling agent passes:
source: the documentstructural_output: from structural-analysis — gives the parts list and unity statementpurpose_context: e.g., paper_pass_2_content_grasp, skill_extraction_from_methodology, evidence_miningdomain_hint: optionalMatch strategy to document characteristics from structural-analysis. Don't read everything at once — that's how context windows fill and quality drops.
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.
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.
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.
For each section, extract these four component types. Each gets a structured entry.
Words or short phrases the document defines, uses repeatedly, or relies on as load-bearing concepts. Capture:
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).
Statements the document makes — claims it wants the reader to accept. Capture:
How does the document get from premise A to conclusion C? Capture:
Anything the document provides as a model of execution — examples worked through, templates to fill, scripts to run, procedures to follow. Capture:
A consolidated extraction that the synthesis level (synthesis-application) can evaluate.
## 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
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.
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.
purpose_context=evidence_mining. Propositions are the centerpiece — extract every claim with its evidence and hedge, prepare for downstream triangulation across documents.
{none}. Don't pad to fit the template.structural-analysis — Level 2, run before this. Provides the parts list this skill iterates over.synthesis-application — Level 4, run after this. Evaluates the components this skill produced for completeness + logic + applicability.research-claim-map — pairs naturally with the evidence_mining purpose; consumes propositions and triangulates.skills/skill-creator/SKILL.md invokes this skill as its Step 3.paper-three-pass-extraction invokes this skill in Pass 2 to produce the structured per-section content used by the synthesizer.npx claudepluginhub lyndonkl/claude --plugin thinking-frameworks-skillsMaps document structure using Adler's Level 2 reading methodology: classifies content type, states unity in one sentence, enumerates major parts and their relationships, and defines the problems the document solves. Use after inspectional reading.
Analyzes EPUB/PDF books into structured chapter notes with key concepts extracted and synthesized via parallel agents.
Distills lasting knowledge from any source — PDF, web article, pasted text, codebase file, transcript, markdown doc, or book chapter. Source-agnostic with type-aware quality rules.