1- # Code-Swarm: SOTA Agent Swarm Architecture with Simone-MCP
1+ # Code-Swarm: SOTA Agent Swarm Architecture
22
33> ** KEIN tmux! KEINE Worktrees! KEIN Background-Dispatch!**
44> Subagent-Delegation erfolgt NUR via opencode-native oh-my-opencode Sub-Sessions.
55
6+ ## 🤖 Main Agents
7+
8+ ### SIN-Zeus — Supreme Fleet Commander
9+ | Property | Value |
10+ | ----------| -------|
11+ | Model | ` fireworks-ai/minimax-m2.7 ` |
12+ | Role | Fleet Commander |
13+ | Mode | Primary |
14+ | Reasoning | xhigh |
15+
16+ ** Capabilities:**
17+ - github-orchestration
18+ - fleet-dispatch
19+ - multi-agent-coordination
20+ - planning
21+ - research
22+
23+ ** Hard Rules:**
24+ - NEVER_IDLE_FLEET
25+ - NEVER_DIRECT_CODING
26+ - GITHUB_IS_SOURCE_OF_TRUTH
27+ - MIN_2_PARALLEL_TOOLS
28+
29+ ### SIN-Solo — Direct Single-Agent Executor (formerly Sin-Executor-Solo)
30+ | Property | Value |
31+ | ----------| -------|
32+ | Model | ` vercel/deepseek-v4-pro ` |
33+ | Role | Direct Executor |
34+ | Mode | Primary |
35+
36+ ** Capabilities:**
37+ - direct-coding
38+ - single-agent-execution
39+ - no-delegation
40+ - minimal-invasive-changes
41+
42+ ** Hard Rules:**
43+ - WORK_ALONE
44+ - MINIMAL_CHANGES
45+ - NO_GOVERNANCE_EDITS
46+ - VALIDATE_IMMEDIATELY
47+
48+ ### Coder-SIN-Qwen
49+ | Property | Value |
50+ | ----------| -------|
51+ | Model | ` vercel/deepseek-v4-flash ` |
52+ | Role | Alternative Coder |
53+
54+ ### Stealth-Orchestrator
55+ | Property | Value |
56+ | ----------| -------|
57+ | Model | ` vercel/deepseek-v4-flash ` |
58+ | Role | Browser Automation |
59+
60+ ---
61+
662## Simone-MCP Integration
763
864** Source** : https://github.com/Delqhi/Simone-MCP
@@ -19,16 +75,24 @@ Every Code-Swarm agent uses **Simone-MCP** for AST-level code operations via MCP
1975| ` code.insert_after_symbol ` | Write | Insert text immediately after a symbol block |
2076| ` code.project_overview ` | Read | Summarize workspace footprint and file types |
2177
22- ### Integration
78+ ### Deployment
2379
80+ ** Local Development:**
2481``` python
2582from simone_mcp.client import SimoneClient
2683from simone_mcp.bridge import SwarmSimoneBridge
2784
28- bridge = SwarmSimoneBridge(" http://localhost:8234 " )
85+ bridge = SwarmSimoneBridge(local = True )
2986await bridge.analyze_code(" MyClass" )
3087```
3188
89+ ** Production (OCI VM):**
90+ ```
91+ ubuntu@92.5.60.87:8234
92+ ```
93+
94+ ---
95+
3296## SOTA Implementation
3397
3498### P0 - Production Critical
@@ -47,6 +111,8 @@ await bridge.analyze_code("MyClass")
47111### P2 - Optimization
48112- [x] ** Self-Improvement** : RLHF feedback loops + Bayesian optimization
49113
114+ ---
115+
50116## Quick Start
51117
52118``` bash
@@ -69,25 +135,44 @@ uvicorn api.main:app --reload
69135python -m cli.main status
70136```
71137
138+ ---
139+
72140## Architecture
73141
74142```
75143SIN-Zeus (Fleet Commander)
76- ├── hermes (Dispatcher) → Simone-MCP AST
77- ├── prometheus (System Planner) → Fireworks AI minimax-m2.7 + Simone-MCP
78- ├── zeus (Validation Superlayer) → Fireworks AI minimax-m2.7
79- ├── atlas (Backend Engineer) → Fireworks AI minimax-m2.7 + Simone-MCP
144+ ├── hermes (Dispatcher) → Fireworks AI + Simone-MCP
145+ ├── prometheus (System Planner) → Fireworks AI + Simone-MCP
146+ ├── zeus (Validation Superlayer) → Fireworks AI
147+ ├── atlas (Backend Engineer) → Fireworks AI + Simone-MCP
148+ ├── SIN-Solo (Direct Executor) → Vercel DeepSeek V4 Pro
80149├── multimedia_looker (Vision) → NVIDIA Nemotron 3 Nano Omni
81150└── LangGraph Pipeline (StateGraph + Simone-MCP + Feedback Loops)
82151```
83152
153+ ---
154+
84155## GitHub Issues
85156
86157| # | Status | Description |
87158| ---| --------| -------------|
88- | #15 | 🚀 Epic | Simone-MCP Full Integration |
159+ | #15 | ✅ Epic | Simone-MCP Full Integration |
89160| #16 | 🔧 TODO | Deploy Simone-MCP on OCI VM |
90161| #17 | 🔗 TODO | Configure endpoint |
91162| #18 | 🧠 TODO | LangGraph integration |
92163| #19 | 💾 TODO | Hybrid memory |
93- | #20 | ⚙️ TODO | opencode.json MCP config |
164+ | #20 | ⚙️ TODO | opencode.json MCP config |
165+ | #21 | ✅ Epic | SIN-Zeus & SIN-Solo Fusion |
166+
167+ ---
168+
169+ ## Model Hierarchy
170+
171+ | Modell | Agenten | Provider |
172+ | --------| ---------| ----------|
173+ | ` fireworks-ai/minimax-m2.7 ` | SIN-Zeus, coder-sin-swarm, hermes, prometheus, zeus, atlas, hephaestus | Fireworks AI |
174+ | ` vercel/deepseek-v4-flash ` | Coder-SIN-Qwen, Stealth-Orchestrator, 10 Subagenten | Vercel |
175+ | ` vercel/deepseek-v4-pro ` | SIN-Solo | Vercel |
176+ | ` nvidia/nvidia/nemotron-3-nano-omni ` | multimedia_looker | NVIDIA |
177+ | ` groq/whisper-large-v3 ` | audio_agent | Groq |
178+ | ** Simone-MCP (MCP 2.0)** | ** Alle 22 Agenten** | ** AST-Level Operations** |
0 commit comments