Shared Claude Code skills for the Red Hawk
Robotics software team. Add the marketplace once and everyone gets the same set
of skills, updated with a git pull.
In Claude Code:
/plugin marketplace add frc2713/skills
/plugin install frc2713-skills@frc2713
That's it — the skills are now available. To pick up new skills or updates later:
/plugin marketplace update frc2713
| Skill | What it does |
|---|---|
/teach-me <topic> |
An adaptive tutor. Calibrates what you already know, then guides you through the topic one step at a time, checking understanding as it goes. Curriculum-aware — it uses the software_training lessons as its syllabus. |
/review-my-code |
An interactive, teaching code review for your FRC / WPILib Java. Walks your code with you, surfaces issues worst-first, and guides you to fix them yourself instead of rewriting it. Not the automated branch review (that's /code-review). |
This repo is a Claude Code plugin marketplace:
.claude-plugin/
marketplace.json # lists the plugins in this marketplace
plugins/
frc2713-skills/ # one plugin bundling all the team's skills
.claude-plugin/
plugin.json
skills/
teach-me/
SKILL.md # one folder per skill
- Create
plugins/frc2713-skills/skills/<skill-name>/SKILL.md. - Give it YAML frontmatter with
nameand adescriptionthat clearly says when the skill should trigger (this is what Claude matches on). - Bump the
versioninplugin.jsonandmarketplace.json. - Add a row to the Skills table above.
- Open a PR. Once merged, teammates get it with
/plugin marketplace update frc2713.
See Anthropic's skill authoring docs
for the full SKILL.md format, and the skill-creator skill if you want help
scaffolding one.