mirror of
https://github.com/anthropics/claude-code.git
synced 2026-01-30 04:02:03 +00:00
Migrates the ralph-wiggum plugin from internal marketplace to public marketplace. Implements Geoffrey Huntley's "Ralph Wiggum" technique using Claude Code's Stop hook mechanism for continuous iterative development loops. Key features: - Interactive self-referential AI loops in current session - Stop hook intercepts exit and feeds same prompt back - Iteration tracking and completion promise detection - Max iterations safety limits Changes: - Remove all tmux dependencies and background execution mode - Simplify to interactive-only mode using Stop hooks - Add comprehensive error handling with clear messages - Fix documentation to accurately describe Stop hook mechanism - Add input validation for all command-line arguments - Register plugin in public marketplace Security fixes: - Remove eval usage (command injection vulnerability) - Add numeric validation before arithmetic operations - Remove silent error suppression 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
118 lines
4.1 KiB
JSON
118 lines
4.1 KiB
JSON
{
|
|
"$schema": "https://anthropic.com/claude-code/marketplace.schema.json",
|
|
"name": "claude-code-plugins",
|
|
"version": "1.0.0",
|
|
"description": "Bundled plugins for Claude Code including Agent SDK development tools, PR review toolkit, and commit workflows",
|
|
"owner": {
|
|
"name": "Anthropic",
|
|
"email": "support@anthropic.com"
|
|
},
|
|
"plugins": [
|
|
{
|
|
"name": "agent-sdk-dev",
|
|
"description": "Development kit for working with the Claude Agent SDK",
|
|
"source": "./plugins/agent-sdk-dev",
|
|
"category": "development"
|
|
},
|
|
{
|
|
"name": "pr-review-toolkit",
|
|
"description": "Comprehensive PR review agents specializing in comments, tests, error handling, type design, code quality, and code simplification",
|
|
"version": "1.0.0",
|
|
"author": {
|
|
"name": "Anthropic",
|
|
"email": "support@anthropic.com"
|
|
},
|
|
"source": "./plugins/pr-review-toolkit",
|
|
"category": "productivity"
|
|
},
|
|
{
|
|
"name": "commit-commands",
|
|
"description": "Commands for git commit workflows including commit, push, and PR creation",
|
|
"version": "1.0.0",
|
|
"author": {
|
|
"name": "Anthropic",
|
|
"email": "support@anthropic.com"
|
|
},
|
|
"source": "./plugins/commit-commands",
|
|
"category": "productivity"
|
|
},
|
|
{
|
|
"name": "feature-dev",
|
|
"description": "Comprehensive feature development workflow with specialized agents for codebase exploration, architecture design, and quality review",
|
|
"version": "1.0.0",
|
|
"author": {
|
|
"name": "Siddharth Bidasaria",
|
|
"email": "sbidasaria@anthropic.com"
|
|
},
|
|
"source": "./plugins/feature-dev",
|
|
"category": "development"
|
|
},
|
|
{
|
|
"name": "security-guidance",
|
|
"description": "Security reminder hook that warns about potential security issues when editing files, including command injection, XSS, and unsafe code patterns",
|
|
"version": "1.0.0",
|
|
"author": {
|
|
"name": "David Dworken",
|
|
"email": "dworken@anthropic.com"
|
|
},
|
|
"source": "./plugins/security-guidance",
|
|
"category": "security"
|
|
},
|
|
{
|
|
"name": "code-review",
|
|
"description": "Automated code review for pull requests using multiple specialized agents with confidence-based scoring to filter false positives",
|
|
"version": "1.0.0",
|
|
"author": {
|
|
"name": "Boris Cherny",
|
|
"email": "boris@anthropic.com"
|
|
},
|
|
"source": "./plugins/code-review",
|
|
"category": "productivity"
|
|
},
|
|
{
|
|
"name": "explanatory-output-style",
|
|
"description": "Adds educational insights about implementation choices and codebase patterns (mimics the deprecated Explanatory output style)",
|
|
"version": "1.0.0",
|
|
"author": {
|
|
"name": "Dickson Tsai",
|
|
"email": "dickson@anthropic.com"
|
|
},
|
|
"source": "./plugins/explanatory-output-style",
|
|
"category": "learning"
|
|
},
|
|
{
|
|
"name": "learning-output-style",
|
|
"description": "Interactive learning mode that requests meaningful code contributions at decision points (mimics the unshipped Learning output style)",
|
|
"version": "1.0.0",
|
|
"author": {
|
|
"name": "Boris Cherny",
|
|
"email": "boris@anthropic.com"
|
|
},
|
|
"source": "./plugins/learning-output-style",
|
|
"category": "learning"
|
|
},
|
|
{
|
|
"name": "frontend-design",
|
|
"description": "Create distinctive, production-grade frontend interfaces with high design quality. Generates creative, polished code that avoids generic AI aesthetics.",
|
|
"version": "1.0.0",
|
|
"author": {
|
|
"name": "Prithvi Rajasekaran & Alexander Bricken",
|
|
"email": "prithvi@anthropic.com"
|
|
},
|
|
"source": "./plugins/frontend-design",
|
|
"category": "development"
|
|
},
|
|
{
|
|
"name": "ralph-wiggum",
|
|
"description": "Interactive self-referential AI loops for iterative development. Claude works on the same task repeatedly, seeing its previous work, until completion.",
|
|
"version": "1.0.0",
|
|
"author": {
|
|
"name": "Daisy Hollman",
|
|
"email": "daisy@anthropic.com"
|
|
},
|
|
"source": "./plugins/ralph-wiggum",
|
|
"category": "development"
|
|
}
|
|
]
|
|
}
|