AI coding agent framework: Agent • Knowledge • Instructions • Skills
Portable: Copy .github/ to any codebase.
| File | Purpose |
|---|---|
copilot-instructions.md |
Terse rules (START→WORK→END) |
instructions/protocols.instructions.md |
Gates, skill triggers, delegation |
instructions/architecture.instructions.md |
Project structure & file placement |
instructions/workflow.instructions.md |
Phases, TODO, END steps |
instructions/quality.instructions.md |
Verification, gotchas |
skills/INDEX.md |
Domain→skill lookup |
skills/*/SKILL.md |
Agent Skills (per-domain) |
agents/*.agent.md |
Custom agents (8 total) |
scripts/*.py |
Codemap, skill suggestions |
templates/*.md |
Workflow log, skill, agent templates |
python .github/scripts/knowledge.py # Update knowledge (--update, --generate, --suggest)
python .github/scripts/skills.py # Skill management (--update, --generate, --suggest)
python .github/scripts/instructions.py # Instruction optimization
python .github/scripts/docs.py # Documentation updates
python .github/scripts/agents.py # Agent management
python .github/scripts/session_cleanup.py # Session cleanup- Agent reads
copilot-instructions.mdat session start - Follows START→WORK→END phases
- Loads skills from
skills/when touching relevant files - At END: runs scripts, creates workflow log
Context over Process. Knowledge over Ceremony.