Releases: daniel8824-del/claude-wiki-verbs
Release list
v0.1.1 — install.sh sed-in-place fix
What's Fixed
Critical: install.sh previously ran sed -i on every skill file to substitute \${VAULT_ROOT} with the user's vault path. This dirtied the git working tree of the canonical repo, breaking the single-source-of-truth guarantee — a user who later ran git add . && git push could leak their private vault path into the public repo.
What Changed
The installer now appends one line to your shell rc (~/.bashrc / ~/.zshrc):
export VAULT_ROOT="/path/to/your/vault"Bash auto-expands \${VAULT_ROOT} at runtime in skill commands like find \${VAULT_ROOT} -iname "X*.md". The canonical skill files stay clean across installs — verified by sandbox test (0 unintended modifications, was 11 before).
SKILL.md gained a Vault Path Resolution section explaining the env var contract for both LLM (placeholder semantics) and shell (automatic expansion).
Upgrade
cd ~/repos/claude-wiki-verbs
git pull
./install.sh # idempotent — safe to re-run