55afdce70c
Skills migration: each of the eight slash commands gains a skills/<name>/SKILL.md twin (same invocation name, byte-identical body). Per-skill allowed-tools pre-authorize the resolved python3/python/py -3 invocations + the CoWork ls fallback probe; disable-model-invocation: true makes /echo-sweep and /echo-triage operator-only. Docs-confirmed: a same-name skill takes precedence over the legacy command, so commands/ coexists until its scheduled 2.0 deletion. The $ECHO path-resolution dedupe is resolved as not-supported (skill dirs are self-contained; no cross-skill snippet sharing). Lint fix: vault_lint.py checks retired patterns BEFORE routes, so a seed README inside a retired tree (archive/...) flags retired-path instead of being absolved by the permissive leaf-readme route. New end-to-end regression test seeds archive/notes/README.md (fails pre-fix, passes now). plugin.json: version 1.6.0, homepage + repository -> git.alwisp.com/jason/echo. All suites green: 25/25 client unit tests (incl. routing-sync guard), feature, reflect, offline-queue, PATCH-semantics. Artifact rebuilt (87 entries, both formats); pointer refreshed. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
4.2 KiB
4.2 KiB
echo-memory — v1.6 TODO
Working list for the next minor release. Started 2026-07-03, right after 1.5.1 shipped. Add findings from 1.5.x live testing to the "Surfaced in testing" section as they come up — that's what this doc is for.
1. Migrate the eight slash commands to the skills format
The installer flags the plugin's commands/ directory as the legacy format
("Both formats work — consider migrating to skills/*/SKILL.md"). Confirmed against
the official docs (code.claude.com/docs/en/skills.md, plugins.md):
- Non-breaking.
commands/echo-save.md→skills/echo-save/SKILL.mdkeeps the invocation name:/echo-saveworks identically. No deprecation date oncommands/; this is future-proofing, not a fire. - Do it for the features, not the notice:
allowed-toolsper skill — done 1.6.0 (all eight skills pre-authorize the resolvedpython3/python/py -3invocations + the CoWorklsprobe).disable-model-invocation: trueon the write-heavy entry points (/echo-sweep,/echo-triage) — done 1.6.0; read-side stays model-invocable.- De-duplicate the CoWork
$ECHOpath-resolution block — resolved 1.6.0 as not-supported: per the official skills docs, skill directories are self-contained (no cross-skill snippet sharing), so the 2-line block stays per-skill. Docs confirmed same-name skill takes precedence over the legacy command, so coexistence is safe. argument-hintcarries over as-is;$ARGUMENTSsubstitution unchanged — done 1.6.0 (save/recall/reflect).
- Verify a migrated build installs cleanly on desktop and in a CoWork session
before deleting
commands/(deleting the legacy dir is a 2.0 item — seeROADMAP-2.0.md; in 1.6 both may coexist). (1.6.0 artifact built — operator install test pending.)
2. plugin.json completeness (from the old MAINTENANCE checklist)
- Add
homepage/ repository URL — done 1.6.0: bothhomepageandrepositoryset tohttps://git.alwisp.com/jason/echo.
3. Vault follow-ups (noticed during the 1.5.0 dead-link cleanup)
Three of the 27 unwrapped "dead" links were actually typos pointing at real notes; they were unwrapped per instruction but repointing them would restore real graph edges:
projects/active/forgerunner.md+_agent/sessions/2026-06-29-2200-forgerunner-v010-ship.md: "Gitea CI Docker jobs run on the host label" → the decisiondecisions/by-date/2026-06-29-gitea-ci-docker-jobs-run-on-the-host-lab.md("lab", not "label").projects/active/mpm-brand-voice.md: "Message Point Media (MPM)" ×3 → the company noteresources/companies/mpm.md(or whatever is canonical for MPM).
4. Surfaced in 1.5.x testing
(add items here as the new plugin gets real use)
- Lint blind spot: retired dirs masked by the leaf-README route (found
2026-07-03; fixed 1.6.0 — retired patterns now checked before routes, with
the
archive/notes/README.mdregression test).archive/and_agent/outputs/are retired/unrouted pre-0.6 leftovers that survived in the live vault holding only their seed READMEs — and the permissiveleaf-readmeroute (^(.+/)?README\.md$) matches first, sovault_lintnever flagged them. Fix: in the path-membership check, test the directory against retired/unknown patterns even when the only file in it is a README (e.g. evaluatedirname(path) + "/"against retired patterns before lettingleaf-readmeabsolve the file), or drop the seed-README exemption inside retired trees. Add a lint test seedingarchive/notes/README.md→ must flagretired-path. Related learning (same cleanup, 2026-07-03): the REST API cannot delete directories — removing a folder's last file orphans the empty folder on disk (the REST listing 404s, falsely reading as gone; Obsidian still shows it — manual deletion required). Documented inreferences/api-reference.md› Deleting Files and in the vault'sresources/references/obsidian-local-rest-api.md. Any future "remove retired tree" guidance must include the manual folder-cleanup step.