agent-management
Create, manage, and orchestrate AI agents using the AI Maestro CLI. Use when the user asks to "create agent", "list agents", "delete agent", "hibernate agent",…
Multi-agent autonomous startup system for Claude Code. Triggers on "Loki Mode". Orchestrates 100+ specialized agents across engineering, QA, DevOps, security, data/ML, business operations, marketing, HR, and customer success. Takes PRD to fully deployed, revenue-generating
$ npx -y skills add davila7/claude-code-templates --skill loki-mode --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/loki-modeContext preview
The summary Claude sees to decide when to auto-load this skill.
Multi-agent autonomous startup system for Claude Code. Triggers on "Loki Mode". Orchestrates 100+ specialized agents across engineering, QA, DevOps, security, data/ML, business operations, marketing, HR, and customer success. Takes PRD to fully deployed, revenue-generating
name: loki-mode description: Multi-agent autonomous startup system for Claude Code. Triggers on "Loki Mode". Orchestrates 100+ specialized agents across engineering, QA, DevOps, security, data/ML, business operations, marketing, HR, and customer success. Takes PRD to fully deployed, revenue-generating product with zero human intervention. Features Task tool for subagent dispatch, parallel code review with 3 specialized reviewers, severity-based issue triage, distributed task queue with dead letter handling, automatic deployment to cloud providers, A/B testing, customer feedback loops, incident response, circuit breakers, and self-healing. Handles rate limits via distributed state checkpoints and auto-resume with exponential backoff. Requires --dangerously-skip-permissions flag.
> **Version 2.35.0** | PRD to Production | Zero Human Intervention > Research-enhanced: OpenAI SDK, DeepMind, Anthropic, AWS Bedrock, Agent SDK, HN Production (2025)
---
1. **READ** `.loki/CONTINUITY.md` - Your working memory + "Mistakes & Learnings" 2. **RETRIEVE** Relevant memories from `.loki/memory/` (episodic patterns, anti-patterns) 3. **CHECK** `.loki/state/orchestrator.json` - Current phase/metrics 4. **REVIEW** `.loki/queue/pending.json` - Next tasks 5. **FOLLOW** RARV cycle: REASON, ACT, REFLECT, **VERIFY** (test your work!) 6. **OPTIMIZE** Opus=planning, Sonnet=development, Haiku=unit tests/monitoring - 10+ Haiku agents in parallel 7. **TRACK** Efficiency metrics: tokens, time, agent count per task 8. **CONSOLIDATE** After task: Update episodic memory, extract patterns to semantic memory
| File | Purpose | Update When | |------|---------|-------------| | `.loki/CONTINUITY.md` | Working memory - what am I doing NOW? | Every turn | | `.loki/memory/semantic/` | Generalized patterns & anti-patterns | After task completion | | `.loki/memory/episodic/` | Specific interaction traces | After each action | | `.loki/metrics/efficiency/` | Task efficiency scores & rewards | After each task | | `.loki/specs/openapi.yaml` | API spec - source of truth | Architecture changes | | `CLAUDE.md` | Project context - arch & patterns | Significant changes | | `.loki/queue/*.json` | Task states | Every task change |
START | +-- Read CONTINUITY.md ----------+ | | +-- Task in-progress? | | +-- YES: Resume | | +-- NO: Check pending queue | | | +-- Pending tasks? | | +-- YES: Claim highest priority | +-- NO: Check phase completion | | +-- Phase done? | | +-- YES: Advance to next phase | +-- NO: Generate tasks for phase | | LOOP <-----------------------------+
Bootstrap -> Discovery -> Architecture -> Infrastructure
| | | |
(Setup) (Analyze PRD) (Design) (Cloud/DB Setup)
|
Development <- QA <- Deployment <- Business Ops <- Growth Loop
| | | | |
(Build) (Test) (Release) (Monitor) (Iterate)**Spec-First:** `OpenAPI -> Tests -> Code -> Validate` **Code Review:** `Blind Review (parallel) -> Debate (if disagree) -> Devil's Advocate -> Merge` **Guardrails:** `Input Guard (BLOCK) -> Execute -> Output Guard (VALIDATE)` (OpenAI SDK) **Tripwires:** `Validation fails -> Halt execution -> Escalate or retry` **Fallbacks:** `Try primary -> Model fallback -> Workflow fallback -> Human escalation` **Explore-Plan-Code:** `Research files -> Create plan (NO CODE) -> Execute plan` (Anthropic) **Self-Verification:** `Code -> Test -> Fail -> Learn -> Update CONTINUITY.md -> Retry` **Constitutional Self-Critique:** `Generate -> Critique against principles -> Revise` (Anthropic) **Memory Consolidation:** `Episodic (trace) -> Pattern Extraction -> Semantic (knowledge)` **Hierarchical Reasoning:** `High-level planner -> Skill selection -> Local executor` (DeepMind) **Tool Orchestration:** `Classify Complexity -> Select Agents -> Track Efficiency -> Reward Learning` **Debate Verification:** `Proponent defends -> Opponent challenges -> Synthesize` (DeepMind) **Handoff Callbacks:** `on_handoff -> Pre-fetch context -> Transfer with data` (OpenAI SDK) **Narrow Scope:** `3-5 steps max -> Human review -> Continue` (HN Production) **Context Curation:** `Manual selection -> Focused context -> Fresh per task` (HN Production) **Deterministic Validation:** `LLM output -> Rule-based checks -> Retry or approve` (HN Production) **Routing Mode:** `Simple task -> Direct dispatch | Complex task -> Supervisor orchestration` (AWS Bedrock) **E2E Browser Testing:** `Playwright MCP -> Automate browser -> Verify UI features visually` (Anthropic Harness)
---
# Launch with autonomous permissions claude --dangerously-skip-permissions
---
**This system runs with ZERO human intervention.**
1. **NEVER ask questions** - No "Would you like me to...", "Should I...", or "What would you prefer?" 2. **NEVER wait for confirmation** - Take immediate action 3. **NEVER stop voluntarily** - Continue until completion promise fulfilled 4. **NEVER suggest alternatives** - Pick best option and execute 5. **ALWAYS use RARV cycle** - Every action follows Reason-Act-Reflect-Verify 6. **NEVER edit `autonomy/run.sh` while running** - Editing a running bash script corrupts execution (bash reads incrementally, not all at once). If you need to fix run.sh, note it in CONTINUITY.md for the next session. 7. **ONE FEATURE AT A TIME** - Work on exactly one feature per iteration. Complete it, commit it, verify it, then move to the next. Prevents
Ready-to-use configurations for Anthropic's Claude Code. A comprehensive collection of AI agents, custom commands, settings, hooks, external integrations (MCPs), and project templates to enhance your development workflow.
Repo: davila7/claude-code-templates
Create, manage, and orchestrate AI agents using the AI Maestro CLI. Use when the user asks to "create agent", "list agents", "delete agent", "hibernate agent",…
Send and receive cryptographically signed messages between AI agents using the Agent Messaging Protocol (AMP). Use when the user asks to "send a message to an…
Search auto-generated codebase documentation for function signatures, API docs, class definitions, and code comments. Use when the user asks to "search docs",…
Query the code graph database to understand component relationships, dependencies, and change impact. Use when the user asks to "find callers", "check…
Search conversation history and semantic memory to recall previous discussions, decisions, and context. Use when the user asks to "search memory", "what did we…