Official Quaestor plugin marketplace for specification-driven development
npx claudepluginhub jeanluciano/quaestorSkills-first specification-driven development framework with 7 agent skills for planning, implementation, review, and shipping. Natural language activation with intelligent agent orchestration. Includes /plan, /implement, /research commands plus managing-specifications, implementing-features, and reviewing-and-shipping skills.
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Production-ready workflow orchestration with 79 focused plugins, 184 specialized agents, and 150 skills - optimized for granular installation and minimal token usage
Curated collection of 141 specialized Claude Code subagents organized into 10 focused categories
A minimal Claude Code plugin for specification-driven development
Quaestor is a Claude Code plugin that provides Skills and slash commands for specification-driven development. Write lightweight specs, implement with context, ship with confidence.
Design Principles:
NOTE: Quaestor has been many things, but mainly a learning sandbox for me. Nowadays, it's a tool that I and a small number of people use. From 1.0 forward, Quaestor will be boring and stable. New features will be planned and added as Anthropic releases new features for Claude Code. This is all to say that Quaestor is "feature complete," and hardly any skills, sub-agents, or commands will be added. I've gotta get back to work, and so do you.
7 Skills (auto-activate based on context):
managing-specifications - Create and manage specificationsimplementing-features - Implement features with quality gatesreviewing-and-shipping - Code review and PR generationdebugging-issues - Systematic bug investigationsecurity-auditing - Security analysis and vulnerability detectionoptimizing-performance - Performance profiling and optimizationinitializing-project - Setup Quaestor in any project3 Slash Commands:
/plan - Create specifications/implement - Implement specs with tracking/research - Explore codebase patternsSpec Lifecycle:
draft/ → active/ → completed/Alternatively, you can add the marketplace and install separately:
/plugin marketplace add jeanluciano/quaestor
/plugin install quaestor:quaestor
See Claude Code plugins documentation for details.
For project-level installation:
pip install quaestor
# or
uv pip install quaestor
Then initialize in your project:
quaestor init
# Install the plugin
/plugin install quaestor@quaestor-official
# Create a spec
/plan "User authentication with JWT"
# Implement it
/implement spec-auth-001
# Ship it
"Create a pull request for spec-auth-001"
Skills activate automatically based on what you're doing. Just describe what you want in natural language:
Create lightweight specifications that define:
Specs live in .quaestor/specs/ and move through folders as they progress:
.quaestor/specs/
├── draft/ # Planned work
├── active/ # In progress (max 3)
└── completed/ # Finished
Skills are auto-activating workflows that trigger based on context. You don't invoke them directly - just describe what you want:
/implement spec-id → implementing-features activates# Create a spec
/plan "Add rate limiting to API endpoints"
# → spec-feature-042.md created in draft/
# Start implementing
/implement spec-feature-042
# → Skills guide you through implementation with quality checks
# Check progress
"What's the status of spec-feature-042?"
# → "spec-feature-042: 3/5 criteria complete (60%)"
# Ship it
"Create a pull request for spec-feature-042"
# → PR created with spec context included