{
  "markdown": "# mwguerra Claude Code Plugins\n\nA collection of Claude Code plugins for development workflows.\n\n## Installation\n\n```bash\n# Add the marketplace\n/plugin marketplace add mwguerra/claude-code-plugins\n\n# Browse and install plugins\n/plugin\n```\n\n## Available Plugins\n\n### article-writer\nCreate publication-ready technical articles with author voice profiles, web research, runnable code examples, and multi-language output. Supports interactive single-article creation or autonomous batch processing.\n\n```bash\n/plugin install article-writer@mwguerra-marketplace\n```\n\n### code\nProduction readiness toolkit with code cleanup, comprehensive analysis, and automated testing. Removes debug artifacts for clean commits, runs Pest and Playwright tests, and prepares apps for deployment.\n\n```bash\n/plugin install code@mwguerra-marketplace\n```\n\n### docs-specialist\nGenerate and maintain documentation from code with drift detection. Validates docs against source, auto-generates from code patterns, syncs outdated content, and provides reusable templates.\n\n```bash\n/plugin install docs-specialist@mwguerra-marketplace\n```\n\n### docker-local\nExpert agent for docker-local (mwguerra/docker-local) Laravel Docker development environment. Manages Docker services, diagnoses issues, checks project conflicts, handles database operations, and troubleshoots environment setup.\n\n```bash\n/plugin install docker-local@mwguerra-marketplace\n```\n\n### docker-specialist\nDocker and Docker Compose expert with complete documentation. Generates Dockerfiles, compose configs, database containers, SSL/TLS setup with Traefik or Nginx, and provides troubleshooting.\n\n```bash\n/plugin install docker-specialist@mwguerra-marketplace\n```\n\n### e2e-test-specialist\nComprehensive E2E testing using Playwright MCP. Creates detailed test plans, tests all pages for errors, verifies user flows by role, and runs visual browser tests with full coverage.\n\n```bash\n/plugin install e2e-test-specialist@mwguerra-marketplace\n```\n\n### filament-specialist\nExpert FilamentPHP v4 assistant with complete official documentation. Generates resources, forms, tables, actions, widgets, infolists, and Pest tests following v4 patterns.\n\n```bash\n/plugin install filament-specialist@mwguerra-marketplace\n```\n\n### laravel-filament-package-development-specialist\nScaffold and develop Laravel packages and Filament plugins with full testing support. Creates package structure, configures Pest testing, sets up GitHub Actions CI.\n\n```bash\n/plugin install laravel-filament-package-development-specialist@mwguerra-marketplace\n```\n\n### post-development\nApp launch preparation toolkit with SEO analysis, automated screenshots, buyer persona creation, social media ad generation, technical article writing, and landing page proposals.\n\n```bash\n/plugin install post-development@mwguerra-marketplace\n```\n\n### taskmanager\nPlan and execute tasks from PRDs with hierarchical subtasks, dependency tracking, and project memories. Features dashboard visualization, autonomous batch execution, and persistent memory.\n\n```bash\n/plugin install taskmanager@mwguerra-marketplace\n```\n\n### terminal-specialist\nTerminal and shell systems expert with comprehensive documentation. Covers TTY/PTY architecture, stdin/stdout/stderr streams, signals, ANSI escape sequences, job control, and terminal modes.\n\n```bash\n/plugin install terminal-specialist@mwguerra-marketplace\n```\n\n### test-specialist\nProactive Pest 4 testing for PHP, Laravel, Livewire, and Filament apps. Auto-generates tests for models, controllers, policies, and Livewire components. Analyzes coverage gaps.\n\n```bash\n/plugin install test-specialist@mwguerra-marketplace\n```\n\n### obsidian-vault\nManage an Obsidian vault as your development knowledge base and automatic work journal. Auto-captures commits, tasks, and Claude Code components with structured frontmatter.\n\n```bash\n/plugin install obsidian-vault@mwguerra-marketplace\n```\n\n### error-memory\nIntelligent error tracking and solution recall system. Learns from every error you solve, providing instant access to past solutions with multi-level matching and confidence scores.\n\n```bash\n/plugin install error-memory@mwguerra-marketplace\n```\n\n### prd-builder\nInteractive PRD (Product Requirements Document) builder with comprehensive interview-driven discovery, gap analysis, and taskmanager integration.\n\n```bash\n/plugin install prd-builder@mwguerra-marketplace\n```\n\n### my-workflow\nPersonal workflow management combining assistant, secretary, and executive roles. Tracks sessions, commitments, decisions, and goals. Integrates with GitHub and Obsidian vault. Provides intelligent briefings and productivity insights.\n\n```bash\n/plugin install my-workflow@mwguerra-marketplace\n```\n\n## Reinstall Script\n\nIf you need to completely reinstall all marketplace plugins (useful after updates or to fix issues), add this script to `~/.claude/reinstall_marketplace.sh`:\n\n```bash\n#!/bin/bash\n\n# Delete marketplaces cleanup script\n# Removes marketplace plugins and related configuration\n\nSCRIPT_DIR=\"$(cd \"$(dirname \"${BASH_SOURCE[0]}\")\" && pwd)\"\n\necho \"Cleaning up marketplace plugins...\"\n\n# Delete installed_plugins.json\nif [ -f \"$SCRIPT_DIR/plugins/installed_plugins.json\" ]; then\n    rm \"$SCRIPT_DIR/plugins/installed_plugins.json\"\n    echo \"Deleted: plugins/installed_plugins.json\"\nelse\n    echo \"Not found: plugins/installed_plugins.json\"\nfi\n\n# Delete marketplaces folder\nif [ -d \"$SCRIPT_DIR/plugins/marketplaces\" ]; then\n    rm -rf \"$SCRIPT_DIR/plugins/marketplaces\"\n    echo \"Deleted: plugins/marketplaces/\"\nelse\n    echo \"Not found: plugins/marketplaces/\"\nfi\n\nif [ -d \"$SCRIPT_DIR/plugins/cache\" ]; then\n    rm -rf \"$SCRIPT_DIR/plugins/cache\"\n    echo \"Deleted: plugins/cache/\"\nelse\n    echo \"Not found: plugins/cache/\"\nfi\n\n# Remove enabledPlugins from settings.json using jq or sed\nif [ -f \"$SCRIPT_DIR/settings.json\" ]; then\n    if command -v jq &> /dev/null; then\n        # Use jq if available\n        jq 'del(.enabledPlugins)' \"$SCRIPT_DIR/settings.json\" > \"$SCRIPT_DIR/settings.json.tmp\" && \\\n        mv \"$SCRIPT_DIR/settings.json.tmp\" \"$SCRIPT_DIR/settings.json\"\n        echo \"Removed enabledPlugins from settings.json\"\n    else\n        # Fallback to Python if jq not available\n        python3 -c \"\nimport json\nwith open('$SCRIPT_DIR/settings.json', 'r') as f:\n    data = json.load(f)\nif 'enabledPlugins' in data:\n    del data['enabledPlugins']\nwith open('$SCRIPT_DIR/settings.json', 'w') as f:\n    json.dump(data, f, indent=2)\n    f.write('\\n')\n\"\n        echo \"Removed enabledPlugins from settings.json\"\n    fi\nelse\n    echo \"Not found: settings.json\"\nfi\n\n# Function to reinstall a marketplace and all its plugins\nreinstall_marketplace() {\n    local marketplace_name=\"$1\"\n    local marketplace_repo=\"$2\"\n    local marketplace_dir=\"$SCRIPT_DIR/plugins/marketplaces/$marketplace_name\"\n\n    echo \"Reinstalling marketplace: $marketplace_name\"\n    claude plugin marketplace remove \"$marketplace_name\"\n    claude plugin marketplace add \"$marketplace_repo\"\n\n    if [ -d \"$marketplace_dir\" ]; then\n        echo \"Installing plugins from $marketplace_name...\"\n        for plugin_dir in \"$marketplace_dir\"/*/; do\n            local plugin_name=$(basename \"$plugin_dir\")\n            # Skip hidden directories (like .git, .claude-plugin)\n            if [[ \"$plugin_name\" != .* ]]; then\n                echo \"Installing: $plugin_name@$marketplace_name\"\n                claude plugin install \"$plugin_name@$marketplace_name\"\n            fi\n        done\n    else\n        echo \"Error: Marketplace directory not found at $marketplace_dir\"\n        return 1\n    fi\n}\n\n# Reinstall marketplaces\nreinstall_marketplace \"mwguerra-marketplace\" \"mwguerra/claude-code-plugins\"\n\n# Make all .sh files executable in plugins directory\necho \"Making .sh files executable in plugins directory...\"\nfind \"$SCRIPT_DIR/plugins\" -name \"*.sh\" -type f -exec chmod +x {} \\;\necho \"Done setting permissions.\"\n\necho \"Done!\"\n```\n\n**Usage:**\n\n```bash\n# Make executable\nchmod +x ~/.claude/reinstall_marketplace.sh\n\n# Run to reinstall all plugins\n~/.claude/reinstall_marketplace.sh\n```\n\n## Requirements\n\n- Claude Code\n\n## License\n\nMIT\n",
  "bytes": 8117,
  "sha": "ef985e84a0c6cb93440f7323b02e20cb8c7a5316dca3014a69156058e62bda77",
  "repo_slug": "mwguerra/claude-code-plugins",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/skl_mwguerra_claude_code_plugins_filament_re_0105865e/readme"
}