Separated skill-wiki.md bundle into compile.md, lint.md, migration.md. Backported compile.md and SKILL.md (skill-wiki.md) from the installed skill at ~/.claude/skills/wiki-maintenance/ so the repo archive reflects the shipped two-layer Sources/+Wiki/ taxonomy rather than the old flat draft. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
38 lines
1.5 KiB
Markdown
38 lines
1.5 KiB
Markdown
# wiki-maintenance Skill Bundle
|
|
|
|
This document contains the four files that make up the
|
|
`wiki-maintenance` skill on herbydev. Lovebug deploys these to
|
|
`~/.claude/skills/wiki-maintenance/` during the build phase.
|
|
|
|
The skill bundle structure:
|
|
|
|
```
|
|
~/.claude/skills/wiki-maintenance/
|
|
├── SKILL.md # name, description, procedure overview
|
|
├── compile.md # detailed compile procedure
|
|
├── lint.md # detailed lint procedure
|
|
└── migration.md # one-time migration runbook
|
|
```
|
|
|
|
Each file below is the full content for that file. Copy each
|
|
section verbatim into the file at the matching path.
|
|
|
|
## Deployment notes (for the build session, not part of the skill files)
|
|
|
|
When Lovebug deploys this skill to herbydev:
|
|
|
|
1. Create directory: `mkdir -p ~/.claude/skills/wiki-maintenance`
|
|
2. Write each of the four files above to that directory:
|
|
- `~/.claude/skills/wiki-maintenance/SKILL.md`
|
|
- `~/.claude/skills/wiki-maintenance/compile.md`
|
|
- `~/.claude/skills/wiki-maintenance/lint.md`
|
|
- `~/.claude/skills/wiki-maintenance/migration.md`
|
|
3. Verify file permissions allow Claude Code to read them
|
|
4. Smoke-test: invoke "test the wiki skill" through Dispatch.
|
|
The skill should load (the agent should report the skill name
|
|
in its preamble or be able to describe what it does).
|
|
|
|
The skill is vault-agnostic. The vault path is provided per
|
|
invocation. If a future second vault exists (e.g., a separate PBS
|
|
vault for Jenny), the same skill works against it as long as that
|
|
vault has its own `CLAUDE.md` following the spec. |