Agent skill
epistemic-extraction
An epistemic extraction system that analyzes text to identify its logical structure according to Aristotelian and Objectivist epistemology. Your task is to extract concepts, propositions, and arguments from provided text.
Install this agent skill to your Project
npx add-skill https://github.com/richardanaya/agent-skills/tree/main/.agents/skills/epstemic-extraction
Metadata
Additional technical details for this skill
- audience
- thinks
- philosophy
- aristotle, ayn rand
SKILL.md
Epistemic Extraction System
Theoretical Framework
The extraction follows this hierarchy:
- Percepts ground concepts
- Concepts compose propositions
- Propositions compose arguments
Each level has its own standards:
- Concepts must be properly formed (valid abstraction, essential definitions)
- Propositions must assert something that can be true or false
- Arguments must have valid logical form
Extraction Components
Concepts
A concept is an open-ended mental integration of concretes according to their essential characteristics. Extract the key terms the text relies upon to make its claims.
For each concept, identify its essentials—the attributes which explain the most about the entity. A concept may have multiple essentials.
Guidelines for essentials:
- Use plain language a general dictionary would use
- Avoid jargon or technical terminology unless necessary
- Keep phrases clear and concise
- Capture both genus and differentia where applicable
Propositions
A proposition is a statement that asserts or denies something of something—one that is capable of being true or false. Extract only universal propositions from the text.
Proposition types:
- universal_affirmative: "All S are P"
- universal_negative: "No S is P"
Guidelines for propositions:
- Do not use pronouns; resolve all references to their specific referents
- Use plain language with clear meaning
- Each proposition should be atomic (one claim per proposition)
- Extract the implicit universal claims the text relies upon, not just explicit statements
Arguments
An argument is a set of propositions where some (premises) support another (conclusion). Identify the logical structures in the text.
Guidelines for arguments:
- State all premises as full propositions, not as references or numbers
- Name each argument descriptively
- Identify the logical form where applicable (Barbara, Celarent, Sorites, Conjunction, etc.)
- Include both explicit and implicit premises the argument relies upon
- State conclusions in plain language
Output Format
Return a JSON object conforming to the schema defined at the end of this document.
Extraction Principles
- Charity: Interpret the text in its strongest reasonable form
- Completeness: Extract implicit premises and universal claims the text assumes
- Clarity: Use simple, dictionary-standard language throughout
- Atomicity: Break complex claims into their constituent propositions
- Hierarchy: Recognize that arguments depend on propositions, which depend on concepts
Common Logical Forms
- Barbara (AAA-1): All M are P; All S are M; Therefore all S are P
- Celarent (EAE-1): No M is P; All S are M; Therefore no S is P
- Sorites: A chain of syllogisms where the conclusion of each is a premise of the next
- Conjunction: Two premises combined to yield a joint conclusion
- Modus Ponens: If P then Q; P; Therefore Q
- Modus Tollens: If P then Q; Not Q; Therefore not P
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "EpistemicExtraction",
"description": "Schema for epistemic extraction of concepts, propositions, and arguments from text",
"type": "object",
"required": ["concepts", "propositions", "arguments"],
"properties": {
"concepts": {
"type": "array",
"description": "Key terms the text relies upon to make its claims",
"items": {
"type": "object",
"required": ["term", "essentials"],
"properties": {
"term": {
"type": "string",
"description": "The concept word or phrase"
},
"essentials": {
"type": "array",
"description": "Attributes which explain the most about the entity",
"items": {
"type": "string"
},
"minItems": 1
}
}
}
},
"propositions": {
"type": "array",
"description": "Universal statements that assert or deny something",
"items": {
"type": "object",
"required": ["type", "statement"],
"properties": {
"type": {
"type": "string",
"enum": ["universal_affirmative", "universal_negative"],
"description": "The logical type of the proposition"
},
"statement": {
"type": "string",
"description": "The full proposition in plain language without pronouns"
}
}
}
},
"arguments": {
"type": "array",
"description": "Logical structures where premises support conclusions",
"items": {
"type": "object",
"required": ["name", "premises", "conclusion", "form"],
"properties": {
"name": {
"type": "string",
"description": "A descriptive name for the argument"
},
"premises": {
"type": "array",
"description": "Full proposition statements serving as premises",
"items": {
"type": "string"
},
"minItems": 1
},
"conclusion": {
"type": "string",
"description": "The proposition that follows from the premises"
},
"form": {
"type": "string",
"enum": [
"Barbara",
"Celarent",
"Darii",
"Ferio",
"Cesare",
"Camestres",
"Festino",
"Baroco",
"Darapti",
"Disamis",
"Datisi",
"Felapton",
"Bocardo",
"Ferison",
"Sorites",
"Conjunction",
"Modus Ponens",
"Modus Tollens",
"Disjunctive Syllogism",
"Hypothetical Syllogism",
"Reductio ad Absurdum"
],
"description": "The logical form of the argument"
}
}
}
}
}
}
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
bd-what-to-work-on-next
Determine what to work on next using the bd (beads) issue tracker by analyzing open issues, dependencies, and ready work
bd-create-new-product
Create a new product with a structured chain of related issues using the bd (beads) issue tracker - sets up epics, tasks, and dependencies for product development
generate-image
Generate images using xAI's Grok Imagine through the fal.ai MCP gateway. This skill enables text-to-image generation with detailed prompts for photorealistic, artistic, and stylized outputs.
pubmed-metaanalysis
Search PubMed for meta-analyses on a given medical topic using NCBI E-utilities API
interact-with-browser
a CLI for intearcting with browser
beautiful-reader
Use when the user wants to read some markdown in a beautiful way
Didn't find tool you were looking for?