New:Microsoft Teams Notifications Are Now Available in Socket.Learn more →
Get Started

zeoel-ai

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

zeoel-ai

33-agent AI software agency framework for Claude Code, Cursor, and Gemini CLI. Orchestrates specialized agents for SaaS Engineering, Cybersecurity (Red Team), McKinsey PPT Design, Spatial CAD/GIS, and PhD Research. Features Caveman & Graphify token-saving

latest
Source
npmnpm
Version
1.0.10
Version published
Maintainers
1
Created
Source
Zeoel AI Cover

🌌 Zeoel-AI — Autonomous Multi-Agent Software Agency

A 33-agent orchestrator for Claude Code, Cursor, and Gemini CLI featuring smart model routing, strict Test-Driven Development (TDD), and token-saving protocols.

npm version License: MIT Agents Skills Claude Code Ready

Zeoel-AI is a production-grade, multi-agent SaaS software engineering agency. Instead of single, fragile LLM prompts that lose context, Zeoel-AI coordinates a complete team of 33 specialized agents (UX designers, database architects, systems engineers, security auditors, QA engineers, etc.) to brainstorm, plan, build, and verify entire software projects automatically.

Quick Start • The 4-Phase Pipeline • Smart Model Routing • Optimization Protocols • 33-Agent Roster • CLI Reference • User Manual

Why Zeoel-AI?

"Traditional AI coding assistants struggle with complexity because a single model prompt is asked to be the architect, developer, tester, and security auditor simultaneously. Zeoel-AI decouples these roles. It translates a product brief into a granular sprint roadmap and dispatches specialized sub-agents with dedicated skill bindings. Every piece of code is written via strict TDD, reviewed by security agents, and validated by QA—saving thousands in tokens and preventing bugs before they reach production."

⚡ Quick Start

1. Install Globally

Install the package globally via npm:

npm install -g zeoel-ai

2. Initialize a Workspace

Navigate to any new or existing codebase directory, and run the configuration wizard:

cd your-project
zeoel

The wizard will:

  • 🔍 Scan for locally installed CLI engines (claude, opencode, codex, agy, qwen, mimo).
  • ⚙️ Configure your primary engine and map available models.
  • 📂 Initialize standard workspace directories (frontend/, backend/, docs/, .worktrees/).
  • 💾 Create zeoel.config.json configuration and setup local script shims under .zeoel/.

3. Start Brainstorming

Open .zeoel/start.md in your text editor, write your product prompt inside the markdown comment block, and run:

# macOS / Linux
.zeoel/commands/start.sh

# Windows
.zeoel\commands\start.cmd

🔄 The 4-Phase Pipeline

Zeoel-AI enforces a strict software delivery pipeline with file-based checkpoints at every phase boundary.

                  THE ZEOEL-AI ORCHESTRATION PIPELINE
                  
  [ Phase 1: Brainstorm ] ──> [ Phase 2: Sprint Plan ] ──> [ Phase 3: Execute (TDD) ] ──> [ Phase 4: Verify & Ship ]
         │                             │                              │                             │
         v                             v                              v                             v
  • Gohar (CEO) Leads           • granular task breakdowns      • Strict red-green-refactor   • QA & Security audits
  • Capability verification     • auto-generated scripts        • isolative file-edits        • snapshot release branches
  • output: PROJECT_BRIEF.md    • output: docs/sprint-N/        • Graphify context isolation  • output: done.md

1. Brainstorming (zeoel-brainstorm)

  • Gohar (CEO) leads a structured debate between the relevant agent specialists inside the terminal.
  • Gohar performs a Capability & Resource Check, warning you of any missing skills or API resources, and proposes alternative architectures.
  • Clarifying questions are written to .zeoel/questions/questions.md. The user answers in .zeoel/answers/answers.md to finalize constraints.
  • Deliverables: PROJECT_BRIEF.md (detailed specification) and docs/brainstorm/summary.md.

2. Sprint Planning (zeoel-sprint-planner)

  • Gohar plans the entire development roadmap, decomposing features into 10-20 highly granular, bite-sized tasks per sprint (migrations, routing, components, etc.).
  • Creates executable shell scripts for each task under docs/sprint-N/tasks/task_K.sh.
  • Generates a semantic representation of the codebase using:
    /graphify . --wiki
    
  • Deliverables: docs/sprint-N/plan.md, docs/sprint-N/progress.md, and docs/sprint-N/deferred.md.

3. TDD Execution (zeoel-dispatch)

  • Tasks are executed sequentially on isolated sprint branches (feature/sprint-N).
  • Sub-agents run in a strict Test-Driven Development (TDD) loop: write failing test (Red), implement minimum code to pass (Green), and optimize (Refactor).
  • All source code changes are restricted to the frontend/ or backend/ directories.
  • Sub-agents log findings in PROJECT_BRIEF.md and incrementally update codebase context with /graphify . --update.

4. Verification & Shipping

  • QA Signoff: Muhammad validates test suites and runs E2E coverage.
  • Security Signoff: Hamid runs EVM checks and OWASP security scans.
  • SEO Signoff: Zara audits public page meta-tags and JSON-LD schemas.
  • Gohar merges the branch, generates docs/sprint-N/done.md, and creates a runnable worktree archive in .worktrees/sprint-N.

⚙️ Smart Model Routing

Zeoel-AI maps agent capabilities to specific LLM models via zeoel.config.json. Mappings can be fully customized by the user:

{
  "primary_engine": "claude",
  "available_engines": {
    "claude": {
      "path": "/usr/local/bin/claude",
      "models": ["claude-3-5-sonnet", "claude-3-opus", "claude-3-5-haiku"]
    },
    "opencode": {
      "path": "/usr/local/bin/opencode",
      "models": ["deepseek-v4-pro", "qwen3.7-max", "deepseek-v4-flash"]
    }
  },
  "model_mapping": {
    "primary_design_brain": { "engine": "agy", "model": "claude-3-opus" },
    "design_polish_ux_review": { "engine": "agy", "model": "claude-3-5-sonnet" },
    "frontend_builder": { "engine": "mimo", "model": "mimo-v2.5-pro" },
    "primary_security_reviewer": { "engine": "codex", "model": "gpt-5.5" },
    "primary_backend_builder": { "engine": "opencode", "model": "deepseek-v4-pro" },
    "fast_bug_fixing": { "engine": "opencode", "model": "deepseek-v4-flash" }
  }
}

If a mapping is omitted, Zeoel-AI falls back to Complexity-Tier Auto-Routing:

  • 🟢 Light Tasks: Routed to fast, low-cost flash models (e.g., deepseek-v4-flash, claude-3-5-haiku).
  • 🟡 Standard Tasks: Routed to professional builder models (e.g., claude-3-5-sonnet, qwen3.7-max).
  • 🔴 Complex Tasks: Routed to advanced reasoning and flagship models (e.g., claude-3-opus, gpt-5.5).

🚀 Optimization Protocols

🧠 Graphify (Context Isolation)

Before dispatching a task, Zeoel-AI queries the semantic knowledge graph:

/graphify query "auth middleware and database connection"

This isolates exact code boundaries and dependencies, delivering up to 71.5x input token savings by preventing agents from reading unrelated files.

💀 Caveman (Telegraphic Output)

Instructs sub-agents to communicate in a highly compressed, telegraphic syntax:

  • Byte-preserved file diff blocks only.
  • Zero conversational filler, greetings, or explanations.
  • Saves up to 75% output token usage and speeds up execution times.

👥 The 33-Agent Roster

Zeoel-AI organizes agents into specialized departments. You can view the full capabilities in AGENTS.md.

💼 1. Management & Operations
AgentRoleSpecialtyPrimary Skills (⭐)
GoharCEO & OrchestratorRoadmap, Sprints, Codebase Checkpointszeoel, caveman, graphify
ZainabProduct ManagerAgile backlog, User Stories, Retrosproject-flow-ops, product-lens
MaryamSaaS Ops SpecialistMetric-driven analytics, Business modelssaas-ops
🎨 2. Design & User Experience
AgentRoleSpecialtyPrimary Skills (⭐)
MahdiProduct DesignerUX wireframes, User flows, accessibility auditsfrontend-design, seo
MustafaVisual DirectorWebGL, GSAP, interactive animationsfrontend-design, ui-ux-pro-max, threejs-webgl
HasanCSS CraftsmanContainer queries, Transitions, Flex/Grid layoutscss-container-queries, tailwindcss-v4
⚛️ 3. Frontend Engineering
AgentRoleSpecialtyPrimary Skills (⭐)
KararSr. Frontend EngineerNext.js, Radix primitives, Tailwindnextjs-turbopack, test-driven-development
AnasReact DeveloperVite SPAs, Zustand client statevite-patterns, frontend-design, caveman, graphify
Noorshadcn/UI CraftsmanRadix UI primitives, design token bindingsshadcn-ui-patterns, radix-ui-primitives
AminaVue/Nuxt ArchitectVue 3 composition, Nuxt 4 SSRvue3-composition-patterns, nuxt4-patterns
HassanBootstrap BuilderSCSS styling, Bootstrap 5 dashboardsbootstrap-patterns, frontend-design
🔧 4. Backend & Systems
AgentRoleSpecialtyPrimary Skills (⭐)
TariqBackend EngineerLaravel, PostgreSQL, APIs, Stripe integrationlaravel-patterns, test-driven-development
AbbasPython DeveloperDjango, FastAPI, async task queuespython-patterns, test-driven-development
BilalSystems EngineerGo, Rust, C++ high-performance servicesgo-patterns
YusufEnterprise JavaSpring Boot, Quarkus, microservicesjava-patterns
FatimaData ArchitectPostgres schemas, OLAP, ClickHouse, MLpostgres-patterns, python-patterns
📱 5. Mobile Engineering
AgentRoleSpecialtyPrimary Skills (⭐)
AbdullahFlutter DeveloperMulti-platform Flutter, Riverpod, Dartdart-flutter-patterns
ZaydReact Native DeveloperExpo, Native modules, JavaScriptreact-native-best-practices
LaylaiOS DeveloperSwiftUI, Swift Concurrency, native iOSswift-patterns
HamzaAndroid DeveloperKotlin, Jetpack Compose, native Androidkotlin-patterns
🛡️ 6. Security, QA & DevOps
AgentRoleSpecialtyPrimary Skills (⭐)
HamidSecurity AuditorOWASP audits, EVM auditing, Pen testingclaude-red, trailofbits-auditing
MuhammadQA LeadUnit, Integration, E2E playbookse2e-testing, test-driven-development
AliDevOps EngineerCI/CD pipelines, Docker, Cloud orchestrationdeployment-patterns
IbrahimAI ArchitectMulti-agent frameworks, custom MCP serversmcp-patterns, self-evolution
📊 7. Domain & Marketing Specialists
AgentRoleSpecialtyPrimary Skills (⭐)
KhadijaHealthcare ExpertHIPAA, FHIR integrations, compliancehealthcare-compliance
SalmanWeb3 & Smart ContractsSolidity, EVM protocols, DeFi mechanicssolidity-patterns, trailofbits-auditing
ZaraTechnical SEO ExpertJSON-LD, PageSpeed, metadata auditsseo, seo-growth
FarhanGrowth MarketerCRO, Landing page copy, funnel mappinggrowth-marketing, seo-growth
TahaSlides & PPT DesignerMcKinsey HTML decks, Chart.js templatesppt-mckinsey, ckm:slides
SamiGIS & Spatial DesignerPostGIS, GeoJSON, parametric architecturecomputational-architecture, postgres-patterns
YahyaResearch ScientistScientific literature, empirical analysisempirical-research, deep-research
SajjadSystematic DebuggerLog trace, stack trace, bug resolutionsystematic-debugging, error-handling
BaqirTechnical WriterOpenAPI specs, developer docs, wiki mappingzeoel-codebase-knowledge, api-design

🖥️ CLI Commands

# Launch workspace initialization / configuration wizard
zeoel

# List all discovered agents in current registry
zeoel agent list

# Inspect a specific agent's prompt, skills, and configuration
zeoel agent inspect karar-frontend

# Execute a dry-run task for a specific agent
zeoel agent run karar-frontend "Design responsive navbar"

# Execute a live task with real LLM calls
zeoel agent run karar-frontend "Design responsive navbar" --live

# Execute a live task using deepseek model on opencode engine
zeoel agent run karar-frontend "Design responsive navbar" --live --engine opencode -m deepseek-v4-pro

📬 Contact & Support

📄 License

MIT © Gohar Abbas

Keywords

ai

FAQs

Package last updated on 18 Jun 2026

Related posts