Neural Orchestration Platform (Golden Armada)

A plugin-based AI agent orchestration platform that combines a visual workflow builder with a deep Claude Code configuration system. Fourteen domain plugins extend the platform across cloud infrastructure, enterprise SaaS, home automation, and more. The root plugin (claude-orchestration v4.0.1) ships 137 agents, 55 skills, and 100+ slash commands that activate automatically through a registry-backed keyword system.
The frontend (@accos/frontend v1.0.0) is the control surface: a React 18 application where you design, visualize, and manage multi-agent workflows and the plugin marketplace.
Architecture
┌─────────────────────────────────────────────────────────────────┐
│ Visual Workflow Builder │
│ ReactFlow canvas · Zustand state · WebSocket │
└────────────────────────┬────────────────────────────────────────┘
│
┌────────────────────────▼────────────────────────────────────────┐
│ Plugin System Core │
│ Discovery · Installation · Validation · Dependency resolution │
│ Health checking · Sandboxing · Federated registry │
└───────────┬────────────────────────────────┬────────────────────┘
│ │
┌───────────▼──────────┐ ┌────────────▼───────────────────┐
│ 14 Domain Plugins │ │ Agent Fleet │
│ jira-orchestrator │ │ 137 agents · 30+ categories │
│ tvs-microsoft-deploy│ │ 55 skills · 100+ commands │
│ home-assistant-arch │ │ Activated via registry index │
│ fastapi-backend │ └────────────────────────────────┘
│ ... and 10 more │
└───────────┬──────────┘
│
┌───────────▼──────────────────────────────────────────────────────┐
│ MCP Servers │
│ deploy-intelligence · lessons-learned · project-metrics │
│ code-quality-gate · workflow-bridge · perplexity · firecrawl │
└──────────────────────────────────────────────────────────────────┘
Features
Visual Workflow Builder
- Drag-and-drop ReactFlow canvas with 27 node types (Trigger, Agent, Action, Phase, Control, Terminator)
- Real-time execution tracking over WebSocket
- JSON Schema-driven property forms with Zod validation
- Pre-built workflow templates (Jira dev cycle, member management, theme deployment)
Claude Code Configuration System
- 137 agents across 30+ domain categories, invoked via the
Task tool
- 55 skills providing reusable procedures activated by keyword triggers
- 100+ slash commands mapped through a registry quickLookup index
- 11 lifecycle hooks for safety validation, quality gates, and self-healing
- 5 custom MCP servers exposing deploy state, code quality, metrics, and workflow pipelines
Plugin System
- Install plugins from registry, Git URL, or local path
- Automatic semver dependency resolution
- Comprehensive manifest validation against JSON schema
- Supply chain security via Sigstore signing and composite trust scoring
- Sandboxed execution with configurable permission grants
- Plugin CLI for scaffolding, linting, bundling, and diagnosing plugins
Quick Start
Prerequisites: Node.js 18+, pnpm
# Install dependencies
pnpm install
# Start development server
pnpm dev
# Opens at http://localhost:5173
# Build for production
pnpm build
Project Structure