You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs(readme): update documentation to reflect Agent Skills structure
- Add separate sections for Agent Skills and Custom Instructions
- Document dynamic loading benefits (~70% token reduction)
- Update project structure to include skills, instructions, and prompts
- Add links to all Agent Skills with descriptions
- Clarify distinction between dynamic skills and always-active instructions
- Include references to skills README and migration guide
@@ -28,13 +29,17 @@ GitHub Copilot Starter is a template repository for configuring, customizing, an
28
29
29
30
## Features
30
31
32
+
-**Agent Skills**: Modular, dynamically-loaded skills following the [Agent Skills specification](https://agentskills.io/specification) for ~70% reduction in baseline token usage
33
+
-**Custom instructions**: Universal principles (security, accessibility, best practices) that apply to all code
31
34
-**Flexible instruction system**: Easily add, edit, or remove instruction files for coding standards, workflows, UI guidelines, accessibility, testing, and more
32
35
-**Customizable prompts**: Define your own Copilot prompts and conventions for your team or project
33
36
-**Best practices templates**: Includes example instructions for SOLID, DRY, KISS, commit messages, accessibility, and more
34
37
-**Specification-driven workflow**: Optionally use the included workflow for requirements, design, implementation, and validation
35
38
-**No fixed tech stack**: Adapt to any language, framework, or toolchain
36
39
37
-
## Project Structure
40
+
## Project Stskills/` — Agent Skills (dynamically loaded when relevant)
Agent Skills are modular, discoverable instructions that AI agents load dynamically based on the task at hand. Skills are located in`.github/skills/` and follow the [Agent Skills specification](https://agentskills.io/specification).
0 commit comments