agentsclimarketplace

Autohedge swarm

Skill mahmoud20138/Tradecraft/plugins/tradecraft/skills/autohedge-swarm

102 Claude Code skills across 7 categories -- trading strategies, Azure, VSCode extensions, AI prompts, and custom automation skills

Install
npx -y skills add mahmoud20138/Tradecraft --skill autohedge-swarm

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 7 stars7 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

AutoHedge — enterprise-grade autonomous hedge fund using swarm agent architecture. Sequential pipeline: Director → Quant → Risk Manager → Execution agents. Risk-first design: position sizing before any trade execution. Currently supports Solana; Coin

SKILL.md

3.1 KB, as published. Nobody here has run it

autohedge-swarm

USE FOR:

  • "autonomous hedge fund agent"
  • "swarm agents for trading"
  • "director + quant + risk manager pipeline"
  • "Solana autonomous trading"
  • "enterprise AI trading system"
  • "risk-first automated trading" tags: [swarm, agents, hedge-fund, autonomous, Solana, risk-and-portfolio, enterprise, multi-agent, quant] kind: framework category: quant-ml-trading

What Is AutoHedge?

Enterprise-grade autonomous agent hedge fund using swarm intelligence. Specialized agents sequentially handle strategy, analysis, risk, and execution.


Swarm Agent Pipeline

Director Agent
    ↓ Strategy generation + market context
Quant Agent
    ↓ Quantitative analysis + signal generation
Risk Manager Agent
    ↓ Position sizing + risk assessment + approval
Execution Agent
    ↓ Order construction + submission
Trade Output (JSON)

Installation

pip install -U autohedge

Environment variables:

JUPITER_API_KEY="..."          # Solana DEX aggregator
OPENAI_API_KEY="sk-..."        # or ANTHROPIC_API_KEY
WALLET_PRIVATE_KEY="..."       # Solana wallet

Usage

autohedge

Or programmatically:

from autohedge import AutoHedge

fund = AutoHedge(
    llm_provider="anthropic",     # Director/Quant use Claude
    risk_threshold=0.02,          # Max 2% portfolio risk per trade
    chain="solana",
)

result = fund.analyze_and_trade("SOL/USDC")
print(result)  # JSON: analysis + decision + risk metrics

Agent Responsibilities

AgentRole
DirectorMarket context, strategy selection
QuantPrice analysis, signals, technicals
Risk ManagerPosition sizing, max drawdown limits
ExecutionOrder construction, submission

Output Format (JSON)

{
  "ticker": "SOL/USDC",
  "director_analysis": "Bullish momentum...",
  "quant_signals": {"rsi": 58, "macd": "bullish"},
  "risk_assessment": {"position_size": 0.015, "stop_loss": 0.02},
  "decision": "BUY",
  "execution": {"order_type": "market", "size": 10.5}
}

Key Design Principles

  1. Risk-first: Never execute without risk approval
  2. Audit trail: Enterprise logging at every step
  3. Modular: Swap any agent or add custom stages
  4. Structured outputs: All agents return JSON for system integration

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.