├── .context ├── AI_INSTRUCTIONS.md ├── README.md ├── ai │ └── operations │ │ ├── README.md │ │ ├── context.yaml │ │ ├── help.yaml │ │ ├── plan.yaml │ │ ├── reconcile.yaml │ │ ├── save.yaml │ │ ├── session_triggers.yaml │ │ ├── start.yaml │ │ ├── status.yaml │ │ ├── task.yaml │ │ ├── task_creation.yaml │ │ ├── task_transition.yaml │ │ └── validation.yaml ├── memory │ ├── OPERATIONS.md │ ├── README.md │ ├── RECOVERY.md │ ├── REFERENCES.md │ ├── SELF_IMPROVEMENT.md │ ├── STATE_TRACKING.md │ ├── STRUCTURE.md │ ├── core │ │ ├── config.json │ │ ├── rules.json │ │ └── state.json │ ├── project │ │ ├── context │ │ │ └── project.json │ │ └── self_improvement.json │ └── session │ │ └── active.json ├── plan │ └── planning_document.md ├── tasks │ ├── README.md │ ├── active │ │ └── .gitkeep │ ├── blocked │ │ └── .gitkeep │ ├── completed │ │ └── .gitkeep │ ├── hold │ │ └── .gitkeep │ └── planned │ │ └── .gitkeep └── templates │ ├── README.md │ ├── decisions │ ├── README.md │ ├── TEMPLATE.md │ └── example.md │ ├── sessions │ ├── README.md │ ├── TEMPLATE.md │ └── example.md │ ├── tasks │ ├── README.md │ ├── TEMPLATE.md │ └── example.md │ └── validation.md ├── COMMANDS.json ├── COMMANDS.md ├── LICENSE └── README.md /.context/AI_INSTRUCTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildSomethingAI/aegis-framework/HEAD/.context/AI_INSTRUCTIONS.md -------------------------------------------------------------------------------- /.context/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildSomethingAI/aegis-framework/HEAD/.context/README.md -------------------------------------------------------------------------------- /.context/ai/operations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildSomethingAI/aegis-framework/HEAD/.context/ai/operations/README.md -------------------------------------------------------------------------------- /.context/ai/operations/context.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildSomethingAI/aegis-framework/HEAD/.context/ai/operations/context.yaml -------------------------------------------------------------------------------- /.context/ai/operations/help.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildSomethingAI/aegis-framework/HEAD/.context/ai/operations/help.yaml -------------------------------------------------------------------------------- /.context/ai/operations/plan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildSomethingAI/aegis-framework/HEAD/.context/ai/operations/plan.yaml -------------------------------------------------------------------------------- /.context/ai/operations/reconcile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildSomethingAI/aegis-framework/HEAD/.context/ai/operations/reconcile.yaml -------------------------------------------------------------------------------- /.context/ai/operations/save.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildSomethingAI/aegis-framework/HEAD/.context/ai/operations/save.yaml -------------------------------------------------------------------------------- /.context/ai/operations/session_triggers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildSomethingAI/aegis-framework/HEAD/.context/ai/operations/session_triggers.yaml -------------------------------------------------------------------------------- /.context/ai/operations/start.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildSomethingAI/aegis-framework/HEAD/.context/ai/operations/start.yaml -------------------------------------------------------------------------------- /.context/ai/operations/status.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildSomethingAI/aegis-framework/HEAD/.context/ai/operations/status.yaml -------------------------------------------------------------------------------- /.context/ai/operations/task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildSomethingAI/aegis-framework/HEAD/.context/ai/operations/task.yaml -------------------------------------------------------------------------------- /.context/ai/operations/task_creation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildSomethingAI/aegis-framework/HEAD/.context/ai/operations/task_creation.yaml -------------------------------------------------------------------------------- /.context/ai/operations/task_transition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildSomethingAI/aegis-framework/HEAD/.context/ai/operations/task_transition.yaml -------------------------------------------------------------------------------- /.context/ai/operations/validation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildSomethingAI/aegis-framework/HEAD/.context/ai/operations/validation.yaml -------------------------------------------------------------------------------- /.context/memory/OPERATIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildSomethingAI/aegis-framework/HEAD/.context/memory/OPERATIONS.md -------------------------------------------------------------------------------- /.context/memory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildSomethingAI/aegis-framework/HEAD/.context/memory/README.md -------------------------------------------------------------------------------- /.context/memory/RECOVERY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildSomethingAI/aegis-framework/HEAD/.context/memory/RECOVERY.md -------------------------------------------------------------------------------- /.context/memory/REFERENCES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildSomethingAI/aegis-framework/HEAD/.context/memory/REFERENCES.md -------------------------------------------------------------------------------- /.context/memory/SELF_IMPROVEMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildSomethingAI/aegis-framework/HEAD/.context/memory/SELF_IMPROVEMENT.md -------------------------------------------------------------------------------- /.context/memory/STATE_TRACKING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildSomethingAI/aegis-framework/HEAD/.context/memory/STATE_TRACKING.md -------------------------------------------------------------------------------- /.context/memory/STRUCTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildSomethingAI/aegis-framework/HEAD/.context/memory/STRUCTURE.md -------------------------------------------------------------------------------- /.context/memory/core/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildSomethingAI/aegis-framework/HEAD/.context/memory/core/config.json -------------------------------------------------------------------------------- /.context/memory/core/rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildSomethingAI/aegis-framework/HEAD/.context/memory/core/rules.json -------------------------------------------------------------------------------- /.context/memory/core/state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildSomethingAI/aegis-framework/HEAD/.context/memory/core/state.json -------------------------------------------------------------------------------- /.context/memory/project/context/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildSomethingAI/aegis-framework/HEAD/.context/memory/project/context/project.json -------------------------------------------------------------------------------- /.context/memory/project/self_improvement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildSomethingAI/aegis-framework/HEAD/.context/memory/project/self_improvement.json -------------------------------------------------------------------------------- /.context/memory/session/active.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildSomethingAI/aegis-framework/HEAD/.context/memory/session/active.json -------------------------------------------------------------------------------- /.context/plan/planning_document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildSomethingAI/aegis-framework/HEAD/.context/plan/planning_document.md -------------------------------------------------------------------------------- /.context/tasks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildSomethingAI/aegis-framework/HEAD/.context/tasks/README.md -------------------------------------------------------------------------------- /.context/tasks/active/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.context/tasks/blocked/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.context/tasks/completed/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.context/tasks/hold/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.context/tasks/planned/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.context/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildSomethingAI/aegis-framework/HEAD/.context/templates/README.md -------------------------------------------------------------------------------- /.context/templates/decisions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildSomethingAI/aegis-framework/HEAD/.context/templates/decisions/README.md -------------------------------------------------------------------------------- /.context/templates/decisions/TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildSomethingAI/aegis-framework/HEAD/.context/templates/decisions/TEMPLATE.md -------------------------------------------------------------------------------- /.context/templates/decisions/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildSomethingAI/aegis-framework/HEAD/.context/templates/decisions/example.md -------------------------------------------------------------------------------- /.context/templates/sessions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildSomethingAI/aegis-framework/HEAD/.context/templates/sessions/README.md -------------------------------------------------------------------------------- /.context/templates/sessions/TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildSomethingAI/aegis-framework/HEAD/.context/templates/sessions/TEMPLATE.md -------------------------------------------------------------------------------- /.context/templates/sessions/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildSomethingAI/aegis-framework/HEAD/.context/templates/sessions/example.md -------------------------------------------------------------------------------- /.context/templates/tasks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildSomethingAI/aegis-framework/HEAD/.context/templates/tasks/README.md -------------------------------------------------------------------------------- /.context/templates/tasks/TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildSomethingAI/aegis-framework/HEAD/.context/templates/tasks/TEMPLATE.md -------------------------------------------------------------------------------- /.context/templates/tasks/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildSomethingAI/aegis-framework/HEAD/.context/templates/tasks/example.md -------------------------------------------------------------------------------- /.context/templates/validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildSomethingAI/aegis-framework/HEAD/.context/templates/validation.md -------------------------------------------------------------------------------- /COMMANDS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildSomethingAI/aegis-framework/HEAD/COMMANDS.json -------------------------------------------------------------------------------- /COMMANDS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildSomethingAI/aegis-framework/HEAD/COMMANDS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildSomethingAI/aegis-framework/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuildSomethingAI/aegis-framework/HEAD/README.md --------------------------------------------------------------------------------