Auto-discovered marketplace from zainw/ai-plugins
npx claudepluginhub zainw/ai-pluginsAutonomous research-driven coding for Claude Code. Research options, present choices, implement with full verification. Inspired by Andrej Karpathy's autoresearch concept and pi-autoresearch by davebcn87.
Spec-driven coding for Claude Code. Paste a spec, get reviewed code. Reviews specs for gaps, asks clarifying questions, routes to implementation based on prescriptiveness, and delivers verified code in an isolated branch.
Early work-in-progress. These plugins work and produce high-quality output, but the experience is rough around the edges. Expect lots of permission prompts to accept, some UI jank, and a workflow that isn't yet polished. The results, however, are genuinely good.
A monorepo of Claude Code plugins that make Claude research before it codes.
/research — autoresearchAutonomous research-driven coding. Instead of jumping straight to implementation, Claude researches multiple options, scores them, presents you with a ranked comparison, and only implements after you pick a winner.
Inspired by Andrej Karpathy's autoresearch concept and pi-autoresearch by davebcn87.
Pipeline:
Example:
/research replace moment.js with a lighter alternative
/spec — autospecSpec-driven coding. Paste a spec from anywhere — Google Docs, Jira, Slack, an email from your boss — and Claude will review it for gaps, ask clarifying questions, then implement it.
Pipeline:
Example:
/spec Here's the PRD my PM sent: [paste spec]
From your terminal:
# Install autoresearch
claude plugin add /path/to/ai-plugins/autoresearch
# Install autospec
claude plugin add /path/to/ai-plugins/autospec
Or if published to a registry:
claude plugin add autoresearch
claude plugin add autospec
After installing, the /research and /spec slash commands become available in any Claude Code session.
# Should list both plugins
claude plugin list
# Start a Claude Code session in your project
claude
# Run autoresearch
/research replace our REST client with something better
# Run autospec
/spec implement user authentication with OAuth2 and refresh tokens
Lots of permission prompts. The plugins dispatch multiple subagents that read files, search the web, write to disk, create git branches, and run shell commands. You'll be accepting tool permissions frequently. This is the biggest UX pain point right now.
It takes a while. A full research pipeline with 4 candidates can take 5-10+ minutes. It's doing real work — web searches, documentation analysis, codebase scanning — but it's not instant.
The UI can be noisy. You'll see agent dispatches, state file writes, and structured log updates scrolling by. The intermediate output isn't pretty, but it's transparent.
The output is genuinely good. Despite the rough experience, the final implementation quality is high. Research is thorough, trade-off analysis is real, and implementation happens in isolated branches so nothing breaks your working tree.
Both plugins maintain state in their respective directories (.autoresearch/ and .autospec/). Sessions are resumable — if Claude Code crashes or you close the terminal, the plugin picks up where it left off on next launch.
# Clear a session and start fresh
/research clear
/spec clear
Create a config file to override defaults:
# For autoresearch
echo '{"maxRetries": 5, "maxResearchers": 6}' > .autoresearch/config.json
Official prompts.chat marketplace - AI prompts, skills, and tools for Claude Code
Open Design — local-first design app exposed to coding agents over MCP. Install once with your agent's plugin command and projects/files/skills are reachable through stdio.
Behavioral guidelines to reduce common LLM coding mistakes, derived from Andrej Karpathy's observations