Back to Discover

claude-code-plugin-marketplace

prompt

jmanhype

Multi-agent trading, swarm intelligence, and GitHub automation plugins for Claude Code. 19 production-grade plugins built from 68+ specialized agents.

View on GitHub
27 starsMITSynced Aug 2, 2026

Install to Claude Code

/plugin marketplace add jmanhype/claude-code-plugin-marketplace

README

claude-code-plugin-marketplace

Collection 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.

Status

Mixed. 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.

Plugin Catalog (23)

PluginCategoryWhat It Contains
ace-context-engineeringProductivitySchemas (7 JSON), scripts (5 Python), skill.md. Implements bullet/delta context evolution with TF-IDF retrieval.
code-safety-monitorSafetyPython source in src/, setup.py, requirements.txt. DSPy-based backdoor detection.
quant-trading-systemTradingPython modules in qts/ at repo root (main, risk, executor, market_intelligence, tournament, research_loop, llm_client, bullets).
tournament-runnerTradingPlugin manifest. Uses qts.tournament module from repo root.
research-execution-pipelineResearchPlugin manifest. Uses qts.research_loop from repo root.
modular-agentic-devMethodologyPlugin manifest. Session-based agentic development framework.
github-automation-suiteGitHubPlugin manifest. Describes 13 GitHub agent roles.
swarm-coordinationDistributedPlugin manifest. Adaptive/hierarchical/mesh swarm patterns.
consensus-protocolsDistributedPlugin manifest. Byzantine, Raft, CRDT, gossip protocols.
core-dev-suiteDevelopmentPlugin manifest. Planner, coder, reviewer, tester, researcher agents.
market-intelligenceTradingPlugin manifest. Market analysis agent definitions.
repo-management-toolsGitHubPlugin manifest. Multi-repo coordination.
hive-mind-orchestrationDistributedPlugin manifest. Distributed decision-making.
testing-qa-frameworkTestingPlugin manifest. TDD agents and test automation.
api-docs-generatorDocumentationPlugin manifest. OpenAPI/Swagger generation.
cicd-automationDevOpsPlugin manifest. GitHub Actions automation.
mobile-automationMobilePlugin manifest. React Native + ClassDojo workflows.
performance-optimizationOptimizationPlugin manifest. Load balancing and benchmarks.
architecture-designArchitecturePlugin manifest. System design agents.
memory-coordinationCoordinationPlugin manifest. Memory and task orchestration.
safety-complianceSafetyPlugin manifest. Circuit breakers and kill switches.
sparc-methodologyMethodologyPlugin manifest. SPARC development framework.
base-template-generatorTemplatesPlugin manifest. Project scaffolding.

Repository Structure

.claude-plugin/
  marketplace.json       # Plugin registry (23 entries)

plugins/
  <plugin-name>/
    plugin.json          # Manifest (name, description, version)
    README.md            # Plugin documentation
    src/                 # (some plugins) Implementation code

qts/                     # Quantitative trading system (shared module)
  main.py                # Entry point
  risk.py                # Risk management (leverage caps, stop-loss, drawdown)
  executor.py            # Order execution (paper + live via CCXT)
  market_intelligence.py # Market data analysis
  tournament.py          # Multi-variant paper trading tournaments
  research_loop.py       # Strategy research pipeline
  llm_client.py          # LLM provider integration (mock, OpenAI, DeepSeek)
  bullets.py             # ACE bullet logging

Installation

# Add marketplace to Claude Code
/plugin marketplace add jmanhype/claude-code-plugins

# Browse plugins
/plugin

# Install a specific plugin
/plugin install code-safety-monitor

Quantitative Trading System

The qts/ directory at the repo root contains the actual trading implementation shared by 3 plugins (quant-trading-system, tournament-runner, research-execution-pipeline).

# Paper trading
PYTHONPATH=. python -m qts.main --symbols ETH SOL XRP --llm-provider mock

# Tournament (multi-variant comparison)
PYTHONPATH=. python -m qts.tournament --variants tp_trail_1.0 tp_trail_1.5 --days 7

Risk defaults: 1.0x gross leverage cap, 25% max position per symbol, -5% daily loss limit, -10% max drawdown halt.

Configuration

Trading plugins require environment variables:

EXCHANGE_API_KEY=...
EXCHANGE_SECRET=...
PAPER_TRADING=true   # default; live trading requires 3-layer approval

GitHub plugins require:

GITHUB_TOKEN=...

Limitations

  • Most plugins are manifest-only (prompt definitions, not executable code)
  • The /plugin command infrastructure depends on Claude Code's plugin system, which is not publicly documented
  • No tests for the plugin loading mechanism
  • The qts/ trading system has 1 test file (test_risk.py)
  • Plugin versioning is inconsistent; only ace-context-engineering has a version field in the manifest
  • No CI/CD pipeline for plugin validation
  • The marketplace registry (marketplace.json) must be manually kept in sync with the plugins/ directory
  • Several GitHub Actions workflows reference external services that may not be configured

Rendered live from jmanhype/claude-code-plugin-marketplace's GitHub README — not stored, always reflects the source repo.

22 Plugins

NameDescriptionCategorySource
code-safety-monitorDSPy-powered AI safety monitor for detecting backdoors and malicious behavior in code with 90% detection rate./plugins/code-safety-monitor
modular-agentic-devStructured framework for session-based, agent-driven development with modular prompts and audit checkpoints./plugins/modular-agentic-dev
quant-trading-systemComplete quantitative trading stack with risk management, circuit breakers, and execution hooks./plugins/quant-trading-system
research-execution-pipelineDSPy-powered research pipeline with automated strategy discovery, backtesting, and continuous optimization./plugins/research-execution-pipeline
github-automation-suite13 specialized GitHub agents for PR management, code reviews, issue tracking, releases, and project boards./plugins/github-automation-suite
swarm-coordinationAdaptive, hierarchical, and mesh swarm coordinators for distributed agent systems./plugins/swarm-coordination
consensus-protocolsByzantine fault-tolerant consensus, Raft, CRDT, gossip protocols, and quorum management./plugins/consensus-protocols
core-dev-suiteEssential development agents: planner, coder, reviewer, tester, and researcher./plugins/core-dev-suite
market-intelligenceMarket analysis, monitoring, and intelligence gathering for trading and financial applications./plugins/market-intelligence
repo-management-toolsMulti-repo coordination, synchronization, and architecture management./plugins/repo-management-tools
hive-mind-orchestrationDistributed decision-making and collective intelligence orchestration for swarm systems./plugins/hive-mind-orchestration
testing-qa-frameworkTDD London School agents, production validators, and comprehensive test automation./plugins/testing-qa-framework
api-docs-generatorOpenAPI/Swagger documentation generation and API documentation automation./plugins/api-docs-generator
cicd-automationGitHub Actions workflows, DevOps automation, and CI/CD pipeline management./plugins/cicd-automation
mobile-automationClassDojo workflow automation and React Native mobile development agents./plugins/mobile-automation
performance-optimizationLoad balancing, resource allocation, and performance benchmarking tools./plugins/performance-optimization
architecture-designSystem architecture agents, design patterns, and architectural decision support./plugins/architecture-design
memory-coordinationMemory management and task orchestration for complex multi-agent workflows./plugins/memory-coordination
safety-complianceCircuit breakers, kill switches, approval guards, and safety mechanisms for production systems./plugins/safety-compliance
sparc-methodologySPARC agents and coordinator templates for systematic development methodology./plugins/sparc-methodology
base-template-generatorProject scaffolding, boilerplate generation, and foundational template creation./plugins/base-template-generator
ace-context-engineeringAgentic Context Engineering: evolve context through bullets, deltas, and TF-IDF retrieval. Complete with schemas, validation, and production scripts.productivity./plugins/ace-context-engineering

0 Comments

Login required
Log in to post a comment or update on this repo.

No comments yet — be the first to share an update.