Aegis — Summary
Aegis is an AI-powered project management framework delivered as a .context/ folder drop-in that gives any AI assistant a shared understanding of project state, tasks, decisions, and sessions through structured markdown files and a /aegis command vocabulary.
Problem it solves: AI coding assistants lose context between sessions, lack a consistent way to track task state transitions, and have no shared memory of architectural decisions; Aegis imposes a .context/ directory convention with YAML-driven operation patterns (plan.yaml, task.yaml, etc.) so the agent always knows the project's current position.
Distinctive trait: All /aegis commands are interpreted by the AI, not executed in a terminal — they are protocol-level instructions that tell the AI how to update structured markdown files, enforcing a strict checklist before claiming any command complete.
Target audience: Individual developers and small teams using any AI assistant who want a consistent project state machine (planned → active → hold → completed) with human-readable audit trails stored in .context/sessions/ and .context/decisions/.
Production-readiness: Alpha-quality (60 GitHub stars), maintained by BuildSomethingAI, MIT licensed, last pushed May 2025.
Differs from seeds: Closest to agent-os (Archetype 4 — markdown-scaffold, zero-binary primitives); Aegis adds YAML operation specs in .context/ai/operations/ that define each command's validation, execution, and output steps more rigorously than agent-os's standards/ folder, but both rely entirely on the AI reading files rather than a CLI enforcing behavior.