Skip to main content

skill-editor

REQUIRED for editing any skill file. Ensures changes sync to Claude, Codex, and Cursor. Never edit .claude/skills/ files directly - always use this skill.

Zur Installation springen

Quellinformationen

Repository
stacklok/toolhive-studio
Letzte Quellaktivität
21. Januar 2026 um 16:48
Erkannte Sprache von SKILL.md
Englisch
Sterne
167
Forks
24

Installationsoptionen

Standardmäßig ist der Prompt ausgewählt, der zuerst die Quelle prüft. Sie können zu einem direkten Befehl wechseln oder eine lokale Kopie herunterladen.

Quelldateien prüfen

Lesen Sie SKILL.md und alle von SkillsMP angezeigten Begleitdateien, bevor Sie sich für eine Installation entscheiden.

SKILL.md wird angezeigt

SKILL.md
Quellanweisungen · Schreibgeschützte Vorschau
name
skill-editor
description
REQUIRED for editing any skill file. Ensures changes sync to Claude, Codex, and Cursor. Never edit .claude/skills/ files directly - always use this skill.
# Skill Editor Edit existing AI agent skills while keeping Claude, Codex, and Cursor in sync. ## Workflow 1. **Always edit Claude first** - `.claude/skills/<name>/SKILL.md` is the canonical source 2. **Replicate with CLI** - Copy changes to `.codex/skills/` and `.cursor/skills/` 3. **Never edit Codex/Cursor directly** - They are copies of Claude's version ## Finding Existing Skills List all skills: ```bash ls -la .claude/skills/ ``` Read a skill: ```bash cat .claude/skills/<name>/SKILL.md ``` ## Editing a Skill 1. Read the current skill content from `.claude/skills/<name>/SKILL.md` 2. Make the requested changes 3. Replicate to other agents: ```bash cp .claude/skills/<name>/SKILL.md .codex/skills/<name>/ cp .claude/skills/<name>/SKILL.md .cursor/skills/<name>/ ``` ## Verification Always verify sync after editing: ```bash diff .claude/skills/<name>/SKILL.md .codex/skills/<name>/SKILL.md diff .claude/skills/<name>/SKILL.md .cursor/skills/<name>/SKILL.md ``` No output means files are identical. ## Common Edits - **Update description** - Improve auto-discovery keywords - **Add instructions** - Expand the skill's capabilities - **Fix errors** - Correct mistakes in the skill logic - **Add references** - Create `references/` directory for supporting docs ## Deleting a Skill Remove from all three locations: ```bash rm -rf .claude/skills/<name> .codex/skills/<name> .cursor/skills/<name> ```
Auf GitHub ansehen