A Drop-in Agentic Framework for GitHub Copilot and VS Code
Transform your repository into an AI-powered development environment with specialized agents, reusable skills, and standardized workflows.
- Copy
.github/folder to your repository - Copy
AGENTS.mdto your repository root - Customize agents and instructions to match your tech stack
Pre-configured agents for every phase of development:
- Product Manager → Requirements & user stories
- Architect → System design & technical decisions
- UI/UX Designer → Visual design & accessibility
- Builder → Implementation & coding
- QA Engineer → Testing & verification
- Reviewer → Code review & quality assurance
- Refactoring Engineer → Code clean-up & optimization
- Site Reliability Engineer → Infrastructure & operations
- Security Auditor → Security compliance & audits
Reusable capabilities organized by domain:
architecture/— System design, API patterns, cloud architecturecore-engineering/— Coding standards, testing, debuggingdesign/— UI/UX workflows, accessibility, visual designlanguages/— Language-specific best practicesoperations/— DevOps, observability, incident responseproduct/— PRDs, roadmaps, user storiessecurity/— Threat modeling, compliance, auditing
Technical standards that auto-activate based on file type and context:
- Tech Strategy → Golden Path for technology choices
- Language Guides → Go, Rust, Python, TypeScript standards
- Architecture Patterns → API design, event-driven systems
- Security Policies → Authentication, secrets management
Create new resources using standardized templates:
agent.md— Define new AI personasskill.md— Add reusable workflowsinstruction.md— Create context-aware rules
Agents collaborate through handoffs—structured transitions that pass work between personas with explicit artifacts.
Example Flow:
Product Manager → Architect → Builder → QA Engineer → Reviewer
(PRD) → (Design) → (Code) → (Tests) → (Approval)
Each handoff includes:
- Artifact path (e.g.,
./artifacts/prd_feature.md) - Clear prompt for the next agent
- Verification step to ensure artifact quality
All planning documents use standardized naming in ./artifacts/:
prd_[feature].md— Product requirementsadr_[topic].md— Architecture decisionsdesign_spec_[component].md— Visual designsroadmap_[project].md— Execution roadmapsplan_[task].md— Implementation plans
Skills auto-load based on patterns defined in .github/skills/skill-rules.json. Agents check this file at initialization to discover relevant capabilities.
- Copy
templates/agent.md - Define identity, responsibilities, and handoffs
- Register in
AGENTS.md
- Copy
templates/skill.md - Define workflow and patterns
- Add activation rules to
skill-rules.json
- Copy
templates/instruction.md - Define standards and compliance requirements
- Reference from relevant agents
- AGENTS.md — Complete agent registry and capability matrix
- .github/copilot-instructions.md — Global AI governance
- Tech Strategy — Golden Path for technology choices