Skip to main content
ClaudeWave
Skill267 repo starsupdated 18d ago

New skill

This Claude Code skill provides a template structure for creating robotics agent capabilities within the arpitg1304/robotics-agent-skills repository. Use this skeleton when developing new skills to ensure proper documentation, including YAML frontmatter, concrete examples, anti-pattern warnings, and testing guidance that help agents reliably handle specific robotics workflows or failure modes.

Install in Claude Code
Copy
git clone --depth 1 https://github.com/arpitg1304/robotics-agent-skills /tmp/new-skill && cp -r /tmp/new-skill/.github/ISSUE_TEMPLATE/new- ~/.claude/skills/new-skill
Then start a new Claude Code session; the skill loads automatically.

new-skill.md

## Skill Name

`skills/<name>/`

## Robotics Area

What robotics workflow, subsystem, or failure mode should this skill cover?

## Triggers

What words or tasks should cause an agent to load this skill?

## Must-Cover Topics

- 

## Example Prompt

What user prompt should become easier or safer with this skill?

## Acceptance Checklist

- [ ] Includes YAML frontmatter with `name` and `description`.
- [ ] Includes concrete examples.
- [ ] Documents common anti-patterns.
- [ ] Includes testing or debugging guidance.
- [ ] Updates the README if this becomes a supported skill.