Initial shared Copilot resources scaffold

This commit is contained in:
2026-04-23 15:46:34 -04:00
commit adfcb83ab6
44 changed files with 2249 additions and 0 deletions

20
docs/naming.md Normal file
View File

@@ -0,0 +1,20 @@
# Naming Standards
## General
- Use lowercase kebab-case for directory names and skill names.
- Keep filenames descriptive and stable.
- Match skill directory names to the `name` field in `SKILL.md`.
## File Conventions
- Prompts end in `.prompt.md`
- Instructions end in `.instructions.md`
- Agents end in `.agent.md`
- Hooks end in `.json`
## Frontmatter
- Always include a meaningful `description` for skills, prompts, and agents.
- Keep descriptions discovery-oriented: include what the resource does and when
to use it.