Skip to main content
ClaudeWave
Skill30.7k estrellas del repoactualizado today

tools

This Claude Code skill manages persistent, reusable procedures by creating, updating, or deleting skill files stored in an isolated directory. Use it to codify repeatable workflows like setup sequences, debugging recipes, or project-specific processes that should be available across future sessions while remaining separate from manually authored skills.

Instalar en Claude Code
Copiar
git clone --depth 1 https://github.com/can1357/oh-my-pi /tmp/tools && cp -r /tmp/tools/packages/coding-agent/src/prompts/tools/manage- ~/.claude/skills/tools
Después abre una sesión nueva de Claude Code; el skill carga automáticamente.

manage-skill.md

Managed skill: `SKILL.md` in isolated `~/.omp/agent/managed-skills`; surfaced as a normal skill in future sessions.

Use: repeatable procedures worth codifying — setup sequence, debugging recipe, project-specific workflow.
User-authored skills separate; tool NEVER edits them.

- `action: "create"` — fails if skill exists.
- `action: "update"` — overwrites body; fails if skill absent.
- `action: "delete"` — fails if skill absent.

`name`: kebab-case (lowercase letters, digits, hyphens).
`description`: specific; drives discovery.
No frontmatter in `body`; generated from `name` and `description`.