{
  "markdown": "# claude-code-plugin-marketplace\n\nCollection of 23 plugins for Claude Code. Each plugin is a directory under `plugins/` containing a `plugin.json` manifest, a `README.md`, and in some cases implementation code.\n\n## Status\n\nMixed. Some plugins (quant-trading-system, code-safety-monitor, ace-context-engineering) contain implementation code. Most plugins are manifest + README definitions that describe agent prompts and workflows. No centralized test suite.\n\n## Plugin Catalog (23)\n\n| Plugin | Category | What It Contains |\n|---|---|---|\n| `ace-context-engineering` | Productivity | Schemas (7 JSON), scripts (5 Python), skill.md. Implements bullet/delta context evolution with TF-IDF retrieval. |\n| `code-safety-monitor` | Safety | Python source in `src/`, `setup.py`, `requirements.txt`. DSPy-based backdoor detection. |\n| `quant-trading-system` | Trading | Python modules in `qts/` at repo root (main, risk, executor, market_intelligence, tournament, research_loop, llm_client, bullets). |\n| `tournament-runner` | Trading | Plugin manifest. Uses `qts.tournament` module from repo root. |\n| `research-execution-pipeline` | Research | Plugin manifest. Uses `qts.research_loop` from repo root. |\n| `modular-agentic-dev` | Methodology | Plugin manifest. Session-based agentic development framework. |\n| `github-automation-suite` | GitHub | Plugin manifest. Describes 13 GitHub agent roles. |\n| `swarm-coordination` | Distributed | Plugin manifest. Adaptive/hierarchical/mesh swarm patterns. |\n| `consensus-protocols` | Distributed | Plugin manifest. Byzantine, Raft, CRDT, gossip protocols. |\n| `core-dev-suite` | Development | Plugin manifest. Planner, coder, reviewer, tester, researcher agents. |\n| `market-intelligence` | Trading | Plugin manifest. Market analysis agent definitions. |\n| `repo-management-tools` | GitHub | Plugin manifest. Multi-repo coordination. |\n| `hive-mind-orchestration` | Distributed | Plugin manifest. Distributed decision-making. |\n| `testing-qa-framework` | Testing | Plugin manifest. TDD agents and test automation. |\n| `api-docs-generator` | Documentation | Plugin manifest. OpenAPI/Swagger generation. |\n| `cicd-automation` | DevOps | Plugin manifest. GitHub Actions automation. |\n| `mobile-automation` | Mobile | Plugin manifest. React Native + ClassDojo workflows. |\n| `performance-optimization` | Optimization | Plugin manifest. Load balancing and benchmarks. |\n| `architecture-design` | Architecture | Plugin manifest. System design agents. |\n| `memory-coordination` | Coordination | Plugin manifest. Memory and task orchestration. |\n| `safety-compliance` | Safety | Plugin manifest. Circuit breakers and kill switches. |\n| `sparc-methodology` | Methodology | Plugin manifest. SPARC development framework. |\n| `base-template-generator` | Templates | Plugin manifest. Project scaffolding. |\n\n## Repository Structure\n\n```\n.claude-plugin/\n  marketplace.json       # Plugin registry (23 entries)\n\nplugins/\n  <plugin-name>/\n    plugin.json          # Manifest (name, description, version)\n    README.md            # Plugin documentation\n    src/                 # (some plugins) Implementation code\n\nqts/                     # Quantitative trading system (shared module)\n  main.py                # Entry point\n  risk.py                # Risk management (leverage caps, stop-loss, drawdown)\n  executor.py            # Order execution (paper + live via CCXT)\n  market_intelligence.py # Market data analysis\n  tournament.py          # Multi-variant paper trading tournaments\n  research_loop.py       # Strategy research pipeline\n  llm_client.py          # LLM provider integration (mock, OpenAI, DeepSeek)\n  bullets.py             # ACE bullet logging\n```\n\n## Installation\n\n```bash\n# Add marketplace to Claude Code\n/plugin marketplace add jmanhype/claude-code-plugins\n\n# Browse plugins\n/plugin\n\n# Install a specific plugin\n/plugin install code-safety-monitor\n```\n\n## Quantitative Trading System\n\nThe `qts/` directory at the repo root contains the actual trading implementation shared by 3 plugins (quant-trading-system, tournament-runner, research-execution-pipeline).\n\n```bash\n# Paper trading\nPYTHONPATH=. python -m qts.main --symbols ETH SOL XRP --llm-provider mock\n\n# Tournament (multi-variant comparison)\nPYTHONPATH=. python -m qts.tournament --variants tp_trail_1.0 tp_trail_1.5 --days 7\n```\n\nRisk defaults: 1.0x gross leverage cap, 25% max position per symbol, -5% daily loss limit, -10% max drawdown halt.\n\n## Configuration\n\nTrading plugins require environment variables:\n\n```bash\nEXCHANGE_API_KEY=...\nEXCHANGE_SECRET=...\nPAPER_TRADING=true   # default; live trading requires 3-layer approval\n```\n\nGitHub plugins require:\n\n```bash\nGITHUB_TOKEN=...\n```\n\n## Limitations\n\n- Most plugins are manifest-only (prompt definitions, not executable code)\n- The `/plugin` command infrastructure depends on Claude Code's plugin system, which is not publicly documented\n- No tests for the plugin loading mechanism\n- The `qts/` trading system has 1 test file (`test_risk.py`)\n- Plugin versioning is inconsistent; only `ace-context-engineering` has a version field in the manifest\n- No CI/CD pipeline for plugin validation\n- The marketplace registry (`marketplace.json`) must be manually kept in sync with the `plugins/` directory\n- Several GitHub Actions workflows reference external services that may not be configured\n",
  "bytes": 5342,
  "sha": "22e999cbf7e4c62fc42bc59c77c5b6fbd83293767125b434a45ddd6a031df1e3",
  "repo_slug": "jmanhype/claude-code-plugin-marketplace",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/skl_jmanhype_claude_code_plugin_marketplace__bdca12ae/readme"
}