Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Summary

Skills-first specification-driven development - automatic spec creation, lifecycle management, progress tracking, and PR generation with Agent Skills

Install to Claude Code

/plugin install quaestor@quaestor

Run in Claude Code. Add the marketplace first with /plugin marketplace add jeanluciano/quaestor if you haven't already.

README.md

Quaestor

> A minimal Claude Code plugin for specification-driven development

![PyPI Version](https://pypi.org/project/quaestor/) ![Python 3.12+](https://www.python.org/downloads/) ![License: MIT](https://opensource.org/licenses/MIT) ![Documentation](https://jeanluciano.github.io/quaestor)

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:

  • Zen - Minimal surface area, maximum utility
  • Engineer as Driver - You make decisions, Quaestor provides structure
  • Light Spec-Driven - Just enough specification to stay aligned

_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.

What's Included

7 Skills (auto-activate based on context):

  • managing-specifications - Create and manage specifications
  • implementing-features - Implement features with quality gates
  • reviewing-and-shipping - Code review and PR generation
  • debugging-issues - Systematic bug investigation
  • security-auditing - Security analysis and vulnerability detection
  • optimizing-performance - Performance profiling and optimization
  • initializing-project - Setup Quaestor in any project

3 Slash Commands:

  • /plan - Create specifications
  • /implement - Implement specs with tracking
  • /research - Explore codebase patterns

Spec Lifecycle:

  • Folder-based state: draft/active/completed/
  • Automatic progress tracking via checkboxes
  • Max 3 active specs (enforced)

Installation

As a Claude Code Plugin (Recommended)

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.

Via pip/uv (Project-Level)

For project-level installation:

pip install quaestor
# or
uv pip install quaestor

Then initialize in your project:

quaestor init

Quick Start

# 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:

  • "Show my active specs" → managing-specifications skill
  • "Debug the login failure" → debugging-issues skill
  • "Review this code for security issues" → security-auditing skill

How It Works

Specifications

Create lightweight specifications that define:

  • What you're building (title and description)
  • Why you're building it (motivation)
  • What success looks like (acceptance criteria as checkboxes)

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

Skills are auto-activating workflows that trigger based on context. You don't invoke them directly - just describe what you want:

  • Want to plan? Say "create a spec for X" → managing-specifications activates
  • Want to implement? Use /implement spec-id → implementing-features activates
  • Want to ship? Say "create a PR" → reviewing-and-shipping activates

Example Session

# 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

Documentation

📚 Full Documentation

Contributing

git clone https://github.com/jeanluciano/quaestor.git
cd quaestor
pip install -e .
pytest

License

MIT License

---

<div align="center">

Documentation · Issues

</div>

Related plugins

Browse all →