analyze
Run a comprehensive multi-agent crypto analysis with phased execution. Usage: /analyze BTC or /analyze ETH SOL
Extend the system by creating new MCP servers, agents, or skills. Usage: /create a DeFi protocol tracker or /create an agent for macro analysis
$ npx -y skills add hugoguerrap/crypto-claude-desk --skill create --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/createContext preview
The summary Claude sees to decide when to auto-load this skill.
Extend the system by creating new MCP servers, agents, or skills. Usage: /create a DeFi protocol tracker or /create an agent for macro analysis
name: create description: Extend the system by creating new MCP servers, agents, or skills. Usage: /create a DeFi protocol tracker or /create an agent for macro analysis user-invocable: true
Extend the crypto trading desk with a new component based on the user's natural language description: $ARGUMENTS
Determine what the user wants to create:
If unclear, ask the user what type of component they want.
Delegate to `system-builder` agent: "Research what's needed to create: $ARGUMENTS. Use WebSearch to find relevant public APIs (prefer no-API-key-required). Use WebFetch to read API documentation. Read existing components in the project to understand patterns — read at least 2 files from the relevant directory (mcp-servers/, agents/, or skills/). Read mcp-servers/validators.py for reusable validation. Write a research summary to data/create/{name}-research.md with: APIs found, rate limits, data available, recommended approach."
After research completes, delegate to `system-builder` agent: "Based on the research in data/create/{name}-research.md, generate a new {type} for: $ARGUMENTS. Follow the exact patterns from existing files. Write the component to the correct location:
Write a creation summary to data/create/{name}-summary.md."
If the component is an MCP server, delegate to `system-builder` agent: "Generate a test file for the new MCP server `mcp-servers/{name}.py`. Read `tests/helpers.py` to understand the `call_tool()` helper. Read at least 2 existing test files (e.g., `tests/test_crypto_data.py`, `tests/test_crypto_exchange.py`) to understand the testing pattern:
Write the test to `tests/test_{name}.py`."
After the component is generated, present:
1. **What was created** — show the file path and a brief description 2. **Review** — show the key parts of the generated file for the user to review 3. **Next steps** — tell the user what they need to do:
For **MCP servers**:
For **agents**:
For **skills**:
Present: 1. Research findings (APIs, feasibility) 2. Generated component (file path + key capabilities) 3. Test results (MCP servers: show pytest output) 4. Integration checklist (numbered steps)
I used to spend weeks building multi-agent systems with LangGraph, CrewAI, and AutoGen. Hundreds of lines of Python orchestration code, custom state machines, fragile message passing between agents.
Repo: hugoguerrap/crypto-claude-desk
Run a comprehensive multi-agent crypto analysis with phased execution. Usage: /analyze BTC or /analyze ETH SOL
Close an open trade and run post-mortem analysis. Usage: /close-trade trade_001 or /close-trade trade_001 at 98500
Autonomous monitoring loop. Checks open trades against SL/TP levels, closes trades that hit targets, evaluates expired predictions, and generates periodic…
View current portfolio status, open trades, and performance stats. Usage: /portfolio
First-time setup for Crypto Trading Desk. Detects your environment, installs dependencies, and verifies everything works. Run this once after installing the…