Skip to main content
ClaudeWave
Slash Command693 estrellas del repoactualizado 19d ago

skillforge

SkillForge is a skill management system that routes requests to create, improve, or locate reusable AI skills for specific tasks like Amazon review analysis or PPC audits. Use it when you need to organize AI capabilities into modular, reusable skills, get advice on your current project context, or determine whether to build new skills, enhance existing ones, or combine multiple skills to solve a problem.

Instalar en Claude Code
Copiar
mkdir -p ~/.claude/commands && curl -fsSL https://raw.githubusercontent.com/tripleyak/SkillForge/HEAD/commands/skillforge.md -o ~/.claude/commands/skillforge.md
Después abre una sesión nueva de Claude Code; el slash command carga automáticamente.

skillforge.md

# SkillForge

Use SkillForge for skill routing, creation, improvement, and proactive advice.

## Arguments

$ARGUMENTS = a SkillForge request, such as:

- `create a skill for Amazon review gap analysis`
- `do I have a skill for PPC search term audits?`
- `improve the listing audit skill`
- `advice`
- `checkpoint <brief current context>`

## Instructions

1. Read `~/.claude/skills/skillforge/SKILL.md`.
2. If arguments are empty, show the available modes and ask what the user wants to do.
3. If arguments start with `advice`, run:
   ```bash
   python ~/.claude/skills/skillforge/scripts/context_advisor.py list
   ```
4. If arguments start with `checkpoint`, run:
   ```bash
   python ~/.claude/skills/skillforge/scripts/context_advisor.py checkpoint --cwd "$PWD" --text "<remaining arguments>"
   ```
5. For all other arguments, use the SkillForge skill workflow with `$ARGUMENTS` as the input.
6. Before creating a new skill, confirm SkillForge has checked for existing matching skills.
7. Report the recommended action clearly: use existing, improve existing, create new, compose skills, or clarify.

Request:

$ARGUMENTS