Methodology Curator
Surface expert frameworks for creating and evaluating skills, hooks, and agents.
Installation
- Make sure Claude is on your device and in your terminal.
Skills load from
~/.claude/skills/when Claude Code starts up — so you need it on your machine first. If you don't have it yet, install it once with the command below, then runclaudein any terminal to verify.One-time setupnpm i -g @anthropic-ai/claude-codeAlready have it? Skip ahead.
- Paste into Claude Code or into your terminal.
This copies the whole skill folder into
~/.claude/skills/methodology-curator-athola/— the SKILL.md plus any scripts, reference docs, or templates the skill ships with. Safe default: works for every skill.Faster alternative (instruction-only skills)
Skips the clone and grabs only the SKILL.md file. Don't use this if the skill ships Python scripts, reference markdowns, or asset templates — they won't be downloaded and the skill will fail when it tries to load them.
Quick install (SKILL.md only)Sign up to copy - Restart Claude Code.
Quit and reopen Claude Code (or any other agent that loads from
~/.claude/skills/). New skills are picked up on startup. - Just ask Claude.
Skills auto-activate when your request matches the skill's description — no slash command needed. Trigger phrases live in the skill's own frontmatter; you can read them in the “What this skill does” section above.
Prefer to read the source first? Open on GitHub.
When Claude uses it
Surface expert frameworks. Use when creating or evaluating skills, hooks, or agents.
What this skill does
Table of Contents
Methodology Curator
Overview
Identifying the best way to approach a domain is often more difficult than the technical scaffolding itself. This skill surfaces frameworks from domain masters to prevent reinventing established processes and identify methodology gaps in existing work. It should be used as a brief initial check before brainstorming or evaluation begins.
Workflow Integration
When starting new work, identify the domain (e.g., Instruction Design, Code Review, or Knowledge Management) and consult the corresponding module in modules/ to discover experts and their frameworks. Select principles that fit your context and document them in a methodology brief before proceeding to creation.
For existing work, determine what the skill or hook is trying to teach and compare it against established frameworks. This gap analysis identifies opportunities to add missing principles or align terminology with recognized standards. Surgically add methodology rather than rewriting from scratch to maintain authority and effectiveness.
Domain Modules
Each module in the modules/ directory provides a curated list of masters, key works, and actionable frameworks. These resources include selection guides and anti-patterns to avoid for each domain.
- Instruction Design:
modules/instruction-design.md- Teaching techniques and behavioral objectives. - Code Review:
modules/code-review.md- Review methodologies and feedback patterns. - Debugging:
modules/debugging.md- Systematic troubleshooting frameworks. - Testing:
modules/testing.md- TDD masters and test design patterns. - Knowledge Management:
modules/knowledge-management.md- Note-taking and knowledge systems. - Decision Making:
modules/decision-making.md- Mental models and decision frameworks.
When to Skip
Skip for Creation when:
- You're implementing a well-defined spec
- The domain is highly specific to your codebase
- You've already researched methodologies externally
- Creating a simple utility with no pedagogical component
Skip for Evaluation when:
- Fixing syntax/structural issues (use
/validate-plugininstead) - The work is purely mechanical (no methodology to ground)
- Already performed a recent methodology audit
- Quick bug fixes that don't change the approach
Domain Modules
Each module contains:
- Masters: Recognized experts in the domain
- Key Works: Essential books/papers/talks
- Frameworks: Actionable methodologies
- Selection Guide: When to use each approach
- Anti-patterns: What to avoid
Adding New Domains
To expand the masters database, create a new module following this template:
# [Domain Name] Masters
## Masters Overview
| Expert | Key Contribution | Best For |
|--------|-----------------|----------|
| Name | Framework/Book | Context |
## Detailed Frameworks
### [Framework 1]
**Source**: [Expert] - [Work]
**Core Idea**: [One sentence]
**Key Principles**:
- Principle 1
- Principle 2
**Use When**: [Context]
**Avoid When**: [Anti-context]
## Selection Matrix
[Decision guide for choosing between frameworks]
Integration with Skill Authoring
After curating methodologies, the skill authoring workflow benefits from:
- Grounded TDD scenarios: Test against the methodology's expected behaviors
- Principled anti-rationalization: Counter excuses using the methodology's logic
- Authoritative references: Cite masters in skill documentation
- Consistent terminology: Use the methodology's vocabulary
Related
For Creation
/create-skill- Skill creation workflow (use after this)/create-hook- Hook creation workflowsuperpowers:brainstorming- Refine approach after methodology selectionskill-authoring- Detailed skill writing guidance
For Evaluation
/skills-eval- Evaluate skill quality (complements methodology audit)/analyze-skill- Analyze skill complexity/bulletproof-skill- Harden against rationalizationpensive:code-reviewer- Code review (uses code-review domain)
Related skills
Documentation Co-Authoring
anthropics
Guide structured workflows for writing docs, proposals, and technical specs collaboratively.
MCP Server Builder
anthropics
Build protocol servers that connect language models to external APIs and services.
Ask Questions If Underspecified
trailofbits
Ask clarifying questions before starting work on ambiguous requests.
Claude Plugin Marketplace Builder
daymade
Convert a Claude skills repository into an installable marketplace with auto-updates.