Loading...
Loading...
Create new skills for the bench-skills repo following all conventions. Use when the user says "create a new skill", "add a skill", "new slash command", or wants to extend bench-skills with additional capabilities.
npx skill4agent add elliottrjacobs/bench-skills bench-new-skillnpx skills addreferences/references/AskUserQuestion:
question: "What should this skill do? Give me 2-3 examples of what you'd say to trigger it."{area}-{name}| Area | For |
|---|---|
| Engineering workflow (plan, build, review) |
| Product management (specs, requirements) |
| Security auditing and best practices |
| Documentation and learning capture |
| Meta skills for bench-skills itself |
Use when the user says "review this", "code review", or provides a PR number.A comprehensive code review tool that analyzes security, performance, and architecture.~/bench-skills/skills/{skill-name}/
├── SKILL.md
└── references/ (only if needed for large templates/catalogs)
└── {reference}.md---
name: {skill-name}
description: {triggering conditions}
allowed-tools: [{tools needed}]
---
# /{skill-name} — {Short Title}
{One sentence explaining what this skill does.}
## When to Use
- {Trigger condition 1}
- {Trigger condition 2}
- {Trigger condition 3}
## Process
### Step 1: {First Step}
{Instructions}
### Step 2: {Second Step}
{Instructions}
...
## Output
{What the skill produces and where it's saved.}
## Next Steps
{What to do after running this skill. Link to other skills.}{area}-{name}allowed-toolsnpx skills add ~/bench-skills -g -s {skill-name}