Skip to main content
ClaudeWave
Skill341 estrellas del repoactualizado 2d ago

skill-manage

skill-manage implements approved lifecycle operations on the canonical Mnemon skill library, including creating new skills, updating existing skill content, and moving skills between active, stale, and archived states. Use this skill only after explicit user approval or host policy authorization, ensuring changes apply to the skill library canonical state rather than host runtime behavior directly.

Instalar en Claude Code
Copiar
git clone --depth 1 https://github.com/mnemon-dev/mnemon /tmp/skill-manage && cp -r /tmp/skill-manage/harness/loops/skill/skills/skill-manage ~/.claude/skills/skill-manage
Después abre una sesión nueva de Claude Code; el skill carga automáticamente.

SKILL.md

# skill-manage

Use this skill only after a proposal has been approved by the user or by an
explicit host policy.

## Boundary

This skill modifies canonical Mnemon skill state. It does not modify host
runtime behavior directly. New active skills become host-visible at the next
Prime sync.

Resolve canonical directories from:

```text
$MNEMON_SKILL_LOOP_ACTIVE_DIR
$MNEMON_SKILL_LOOP_STALE_DIR
$MNEMON_SKILL_LOOP_ARCHIVED_DIR
```

## Allowed MVP Operations

- create an approved skill under `active/<skill-id>/SKILL.md`
- apply approved `SKILL.md` content drafted by `skill-author`
- patch an existing skill in its current lifecycle directory
- consolidate duplicated skills with an approved replacement
- move `active -> stale`
- move `stale -> archived`
- restore `stale -> active`
- restore `archived -> stale` or `archived -> active` when explicitly approved
- update metadata or usage notes needed by the lifecycle

## Procedure

1. Read the approved proposal and confirm the intended operation.
2. Check `MNEMON_SKILL_LOOP_PROTECTED_SKILLS`; do not modify protected skills
   unless the approval explicitly covers the exception.
3. Keep skill ids hyphen-case: lowercase letters, numbers, and `-`. Preserve a
   non-conforming id only when an external host compatibility boundary requires
   it.
4. Apply the smallest canonical change under the lifecycle directories.
5. Prefer moving to `archived` over deletion.
6. Do not edit the host skill surface directly. Let Prime regenerate it.
7. Record the applied change in the proposal or usage log when useful.

## Safety

If the proposal is ambiguous, risky, or conflicts with current repository state,
stop and ask for approval instead of guessing.