skills/43-wentorai-research-plugins/skills/domains/humanities/philosophy-research-guide/SKILL.md
Research methods and analytical frameworks for philosophical inquiry and scho...
npx skillsauth add brycewang-stanford/Awesome-Agent-Skills-for-Empirical-Research philosophy-research-guideInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
A skill for conducting rigorous philosophical research, from constructing arguments and analyzing texts to writing publishable philosophy papers. Covers major subfields, argumentation methods, and the distinctive methodology of philosophical inquiry.
Every philosophical argument can be reconstructed in standard form:
Premise 1: All knowledge requires justification. (epistemic principle)
Premise 2: Sensory experience alone cannot provide certainty. (empirical claim)
Premise 3: If knowledge requires certainty, then sensory experience
is insufficient for knowledge. (conditional from P1, P2)
Conclusion: Therefore, knowledge requires something beyond sensory
experience. (from P1, P2, P3 by modus ponens)
def evaluate_argument(premises: list[str], conclusion: str,
premises_true: list[bool],
valid: bool) -> dict:
"""
Evaluate an argument's logical properties.
An argument is:
- Valid: if the conclusion follows necessarily from the premises
- Sound: if it is valid AND all premises are true
- Cogent (inductive): if premises make conclusion probable
"""
all_true = all(premises_true)
sound = valid and all_true
return {
'n_premises': len(premises),
'valid': valid,
'all_premises_true': all_true,
'sound': sound,
'diagnosis': (
'Sound argument' if sound
else 'Valid but unsound (false premise)' if valid
else 'Invalid argument -- conclusion does not follow'
)
}
Identify and avoid these in philosophical writing:
| Fallacy | Structure | Example | |---------|-----------|---------| | Affirming the consequent | If P then Q; Q; therefore P | "If it rained, the street is wet. The street is wet. Therefore it rained." | | Begging the question | Assuming the conclusion in a premise | "God exists because the Bible says so, and the Bible is true because it is God's word." | | False dilemma | Presenting only two options when more exist | "Either we have free will or everything is determined." | | Equivocation | Using a term with different meanings | "A bank is beside a river. I deposit money in a bank. Therefore I deposit money beside a river." | | Straw man | Misrepresenting an opponent's position | Attacking a weakened version of the actual argument |
Key research questions and methods:
Systematic approach to ethical analysis:
Step 1: Identify the moral question clearly
Step 2: Gather relevant empirical facts
Step 3: Apply ethical frameworks:
- Consequentialism: What outcomes does each option produce?
- Deontology: What duties or rules apply?
- Virtue ethics: What would a virtuous person do?
- Care ethics: What relationships and responsibilities are involved?
Step 4: Identify conflicts between frameworks
Step 5: Construct a reasoned position addressing objections
Step 6: Consider implications and edge cases
Hermeneutic methodology for textual interpretation:
A standard analytic philosophy paper follows this structure:
1. Introduction (10%)
- State the thesis clearly in the first paragraph
- Preview the argument structure
2. Background / Setup (15%)
- Present the problem or debate
- Define key terms precisely
3. Main Argument (40%)
- Present the argument in numbered steps
- Provide support for each premise
4. Objections and Replies (25%)
- Consider the strongest objections
- Provide substantive responses
5. Conclusion (10%)
- Summarize without merely repeating
- Note limitations and future directions
Philosophy primarily uses author-date citations and engages directly with the text. Quote passages when the exact wording matters for the argument. Always cite the most authoritative edition of historical texts (e.g., Bekker numbers for Aristotle, Adam and Tannery for Descartes).
development
Conduct rigorous thematic analysis (TA) of qualitative data following Braun and Clarke's (2006) six-phase framework. Use whenever the user mentions 'thematic analysis', 'TA', 'Braun and Clarke', 'qualitative coding', 'identifying themes', or asks for help analysing interviews, focus groups, open-ended survey responses, or transcripts to identify patterns. Also trigger for questions about inductive vs theoretical coding, semantic vs latent themes, essentialist vs constructionist epistemology, building a thematic map, or writing up a qualitative findings section. Covers all six phases, the four upfront analytic decisions, the 15-point quality checklist, and the five common pitfalls. Produces a Word document write-up and an annotated thematic map. Does NOT cover IPA, grounded theory, discourse analysis, conversation analysis, or narrative analysis — use a different method for those.
development
Guide users through writing a systematic literature review (SLR) following the PRISMA 2020 framework. Use this skill whenever the user mentions 'systematic review', 'systematic literature review', 'SLR', 'PRISMA', 'PRISMA 2020', 'PRISMA flow diagram', 'PRISMA checklist', or asks for help writing, structuring, or auditing a literature review that follows reporting guidelines. Also trigger when the user asks about inclusion/exclusion criteria for a review, search strategies for databases like Scopus/WoS/PubMed, study selection processes, risk of bias assessment, or narrative synthesis for a review paper. This skill covers the full PRISMA 2020 checklist (27 items), produces a Word document manuscript in strict journal article format, generates an annotated PRISMA flow diagram, and enforces APA 7th Edition referencing throughout. It does NOT cover meta-analysis or statistical pooling. By Chuah Kee Man.
testing
Performs placebo-in-time sensitivity analysis with hierarchical null model and optional Bayesian assurance. Use when checking model robustness, verifying lack of pre-intervention effects, or estimating study power.
data-ai
Fit, summarize, plot, and interpret a chosen CausalPy experiment. Use after the causal method has been selected, including when configuring PyMC/sklearn models and scale-aware custom priors.