Skip to main content
ClaudeWave
Skill31k repo starsupdated 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.

Install in Claude Code
Copy
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
Then start a new Claude Code session; the skill loads automatically.

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`.