A collection of reusable agent skills for TechTown projects.
| Skill | Description |
|---|---|
| techtown-brand-guidelines | TechTown brand and design system guidelines |
Install skills using the skills CLI:
# Install all skills
npx skills add techtown-fr/skills
# Install a specific skill
npx skills add techtown-fr/skills --skill techtown-brand-guidelines
# Install to a specific agent (e.g., GitHub Copilot)
npx skills add techtown-fr/skills -a github-copilot
# List available skills without installing
npx skills add techtown-fr/skills --list-
Create a directory under
skills/:mkdir skills/my-new-skill
-
Add a
SKILL.mdfile with YAML frontmatter:--- name: my-new-skill description: Brief description of what this skill does metadata: author: techtown version: "1.0" license: MIT --- # My New Skill Instructions for the agent...
-
Add any supporting assets or reference files as needed.
Each skill has its own license. See the individual skill directories for details.