{
  "markdown": "# Everva Claude Code Plugins\n\nMarketplace for [Claude Code](https://claude.ai/code) plugins by [Everva](https://github.com/everva).\n\n## Installation\n\n### Step 1: Add the Marketplace\n\nOpen Claude Code (CLI, VS Code, or JetBrains) and run:\n\n```bash\n/plugin marketplace add everva/claude-plugins\n```\n\nThis registers the Everva marketplace so you can install any plugin from it.\n\n### Step 2: Install a Plugin\n\n```bash\n/plugin install dark-factory@everva    # Autonomous AI pipeline\n/plugin install mobile-agents@everva   # iOS HIG + Android M3 specialists\n/plugin install tdd-pipeline@everva    # TDD tester + reviewer + UI polish\n/plugin install code-review@everva     # Code review with auto-fix\n```\n\n### Step 3: Reload\n\n```bash\n/reload-plugins\n```\n\nThat's it. The plugin's skills, agents, and hooks are now available in your Claude Code session.\n\n## Available Plugins\n\n| Plugin | Description | Skills | Install |\n| --- | --- | --- | --- |\n| [dark-factory](plugins/dark-factory/) | Autonomous AI development pipeline with governance tiers, holdout validation, satisfaction testing, and Ralph Wiggum loop | `/dark-factory:factory`, `/dark-factory:task`, `/dark-factory:readiness`, `/dark-factory:dashboard`, `/dark-factory:init` | `/plugin install dark-factory@everva` |\n| [mobile-agents](plugins/mobile-agents/) | iOS and Android UI specialist agents — HIG compliance, Material Design 3, accessibility gates | Agents: `ios-ui-specialist`, `android-ui-specialist` | `/plugin install mobile-agents@everva` |\n| [tdd-pipeline](plugins/tdd-pipeline/) | TDD pipeline agents — test-first tester, code reviewer, UI polish | Agents: `tester`, `reviewer`, `ui-polish` | `/plugin install tdd-pipeline@everva` |\n| [code-review](plugins/code-review/) | Multi-session code review with isolated reviewer sessions and auto-fix loop | `/code-review:review`, `/code-review:review-fix` | `/plugin install code-review@everva` |\n\n## Lego Architecture\n\nPlugins are composable building blocks. Pick what your project needs:\n\n```text\nFull-stack mobile project:        Backend-only project:       iOS-only app:\n  dark-factory                      dark-factory                mobile-agents\n  mobile-agents                     tdd-pipeline                tdd-pipeline\n  tdd-pipeline                      code-review                 code-review\n  + project-specific agents         + project-specific agents\n```\n\nPlugin agents are **generic** — they read your project's `CLAUDE.md` for context. Override any agent by placing a same-named `.md` file in your project's `.claude/agents/` directory.\n\n| Layer | Plugin | What it provides |\n| --- | --- | --- |\n| Pipeline & Governance | `dark-factory` | Ralph loop, holdout validation, satisfaction judge, governance tiers, rate limiting, circuit breaker |\n| Mobile Quality | `mobile-agents` | iOS HIG compliance, Android Material Design 3, accessibility gates |\n| TDD & Review | `tdd-pipeline` | Test-first tester, code reviewer, UI polish agent |\n| Code Review | `code-review` | Isolated review sessions, auto-fix loop |\n\n## Quick Start: Dark Factory\n\n```bash\n# 1. Install\n/plugin install dark-factory@everva\n\n# 2. Initialize in your project (creates .dark-factory/ directory)\n/dark-factory:init MyProject owner/repo\n\n# 3. Edit risk factors for your project\n#    .dark-factory/config.yaml\n\n# 4. Write holdout scenarios (agent-invisible behavioral tests)\n#    .dark-factory/holdouts/<layer>/*.holdout.yaml\n\n# 5. Check project readiness score\n/dark-factory:readiness\n\n# 6. Run a single task through the full pipeline\n/dark-factory:task docs/specs/my-feature.intent.md\n\n# 7. Start the autonomous Ralph Wiggum loop\n/dark-factory:factory start 10 8    # 10 tasks, 8 hours max\n```\n\nSee [Dark Factory README](plugins/dark-factory/README.md) for full documentation.\n\n## Quick Start: Code Review\n\n```bash\n# 1. Install\n/plugin install code-review@everva\n\n# 2. Review current changes\n/code-review:review\n\n# 3. Review + auto-fix loop (max 3 iterations)\n/code-review:review-fix\n```\n\nSee [Code Review README](plugins/code-review/README.md) for full documentation.\n\n## Quick Start: Mobile Agents\n\n```bash\n# 1. Install\n/plugin install mobile-agents@everva\n\n# 2. Agents are now available for spawning\n# ios-ui-specialist — HIG compliance, VoiceOver, Dynamic Type\n# android-ui-specialist — Material Design 3, TalkBack, Compose patterns\n\n# 3. Override for your project (optional)\n# Place a custom version in .claude/agents/ios-ui-specialist.md\n```\n\n## Quick Start: TDD Pipeline\n\n```bash\n# 1. Install\n/plugin install tdd-pipeline@everva\n\n# 2. Agents are now available for spawning\n# tester — writes tests FIRST (TDD), coverage >= 80%\n# reviewer — code quality gates, security checklist\n# ui-polish — cross-platform consistency, micro-interactions\n```\n\n## Using Plugins in Your Project\n\n### Global Installation (all projects)\n\nAdd to `~/.claude/settings.json`:\n\n```json\n{\n  \"extraKnownMarketplaces\": {\n    \"everva\": {\n      \"source\": { \"source\": \"github\", \"repo\": \"everva/claude-plugins\" }\n    }\n  },\n  \"enabledPlugins\": {\n    \"dark-factory@everva\": true,\n    \"mobile-agents@everva\": true,\n    \"tdd-pipeline@everva\": true,\n    \"code-review@everva\": true\n  }\n}\n```\n\n### Project-Level Installation (shared with team)\n\nAdd to your project's `.claude/settings.json`:\n\n```json\n{\n  \"extraKnownMarketplaces\": {\n    \"everva\": {\n      \"source\": { \"source\": \"github\", \"repo\": \"everva/claude-plugins\" }\n    }\n  },\n  \"enabledPlugins\": {\n    \"dark-factory@everva\": true\n  }\n}\n```\n\nCommit this file to git so your team gets the plugin automatically.\n\n### Local Development / Testing\n\nTest a plugin from a local directory without installing:\n\n```bash\nclaude --plugin-dir /path/to/claude-plugins/plugins/dark-factory\n```\n\n## Managing Plugins\n\n```bash\n# Update all plugins to latest version\n/plugin marketplace update everva\n\n# Disable a plugin (keeps data)\n/plugin disable dark-factory@everva\n\n# Re-enable\n/plugin enable dark-factory@everva\n\n# Uninstall (removes plugin, keeps data in $CLAUDE_PLUGIN_DATA)\n/plugin uninstall dark-factory@everva\n\n# Remove marketplace entirely\n/plugin marketplace remove everva\n\n# Validate plugin structure (for development)\n/plugin validate .\n```\n\n## Creating a New Plugin\n\nWant to add a plugin to this marketplace? See [CONTRIBUTING.md](CONTRIBUTING.md).\n\n## License\n\nMIT\n",
  "bytes": 6283,
  "sha": "99e41c3f185ffe352062ab4c5cc52596dc844dcd0f5407d8ff15ad1e193b2d5a",
  "repo_slug": "everva/claude-plugins",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/plg_everva_claude_plugins_dark_factory_8748ee95/readme"
}