Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here
consensus-protocols logo

consensus-protocols

multi-agent-intelligence-marketplace

OtherClaude Codeby jmanhype

Summary

Byzantine fault-tolerant consensus, Raft, CRDT, gossip protocols, and quorum management

Install to Claude Code

/plugin install consensus-protocols@multi-agent-intelligence-marketplace

Run in Claude Code. Add the marketplace first with /plugin marketplace add jmanhype/claude-code-plugin-marketplace if you haven't already.

README.md

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)

| Plugin | Category | What It Contains | |---|---|---| | ace-context-engineering | Productivity | Schemas (7 JSON), scripts (5 Python), skill.md. Implements bullet/delta context evolution with TF-IDF retrieval. | | code-safety-monitor | Safety | Python source in src/, setup.py, requirements.txt. DSPy-based backdoor detection. | | quant-trading-system | Trading | Python modules in qts/ at repo root (main, risk, executor, market_intelligence, tournament, research_loop, llm_client, bullets). | | tournament-runner | Trading | Plugin manifest. Uses qts.tournament module from repo root. | | research-execution-pipeline | Research | Plugin manifest. Uses qts.research_loop from repo root. | | modular-agentic-dev | Methodology | Plugin manifest. Session-based agentic development framework. | | github-automation-suite | GitHub | Plugin manifest. Describes 13 GitHub agent roles. | | swarm-coordination | Distributed | Plugin manifest. Adaptive/hierarchical/mesh swarm patterns. | | consensus-protocols | Distributed | Plugin manifest. Byzantine, Raft, CRDT, gossip protocols. | | core-dev-suite | Development | Plugin manifest. Planner, coder, reviewer, tester, researcher agents. | | market-intelligence | Trading | Plugin manifest. Market analysis agent definitions. | | repo-management-tools | GitHub | Plugin manifest. Multi-repo coordination. | | hive-mind-orchestration | Distributed | Plugin manifest. Distributed decision-making. | | testing-qa-framework | Testing | Plugin manifest. TDD agents and test automation. | | api-docs-generator | Documentation | Plugin manifest. OpenAPI/Swagger generation. | | cicd-automation | DevOps | Plugin manifest. GitHub Actions automation. | | mobile-automation | Mobile | Plugin manifest. React Native + ClassDojo workflows. | | performance-optimization | Optimization | Plugin manifest. Load balancing and benchmarks. | | architecture-design | Architecture | Plugin manifest. System design agents. | | memory-coordination | Coordination | Plugin manifest. Memory and task orchestration. | | safety-compliance | Safety | Plugin manifest. Circuit breakers and kill switches. | | sparc-methodology | Methodology | Plugin manifest. SPARC development framework. | | base-template-generator | Templates | Plugin 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

Related plugins

Browse all →