con un clic
skill-creator
// Generate a new Claude Code skill file from a plain-language description. Scaffolds the SKILL.md, command file, and CLAUDE.md additions.
// Generate a new Claude Code skill file from a plain-language description. Scaffolds the SKILL.md, command file, and CLAUDE.md additions.
Multi-agent deep review for code PRs in any repo. Use when asked to "deep review this PR," "multi-agent review," "review
Tripwire check for multi-session drift. Scans state files, recent commits, and file conflicts caused by parallel Claude Code sessions.
Scan for orphaned worktrees and stale branches after crashes or abandoned sessions. Offers safe cleanup options.
Structured session lifecycle for Claude Code — start, checkpoint, end, and daily heartbeat commands that maintain project state across conversations.
| name | skill-creator |
| description | Generate a new Claude Code skill file from a plain-language description. Scaffolds the SKILL.md, command file, and CLAUDE.md additions. |
Takes a plain-language description of a task and generates a ready-to-use Claude Code skill: the SKILL.md instruction file, the command routing file, and the CLAUDE.md additions needed to wire it in.
Ask (or infer from context):
Create a skill file with this structure:
---
name: [skill-name]
description: [One line, 60+ characters. Specific enough that Claude knows when to use it.]
---
# /[skill-name] — [Short Title]
[1-2 sentence overview of what this skill does and when to use it.]
## When to Use
- [Trigger condition 1]
- [Trigger condition 2]
## Instructions
### Step 1: [First action]
[Clear, specific instructions. Include exact commands, file paths, or tool calls.]
### Step 2: [Next action]
[Continue with sequential steps.]
### Step N: Output
[Define the expected output format.]
## Design Principles
- [Key principle 1]
- [Key principle 2]
Quality checklist for the SKILL.md:
name and description (description is 60+ chars)Create a short file for .claude/commands/[name].md:
---
name: [skill-name]
description: [Same as SKILL.md description]
allowed-tools: [List of tools the skill needs]
---
Load and follow the instructions in `[path/to/SKILL.md]`.
Two additions to propose:
Show all artifacts. Ask: "Want me to save these, or make any changes first?"