@owrede/vault-memory 0.9.1 → 0.9.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -4
- package/dist/cli.js +1 -1
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,9 +6,11 @@ Reads one or more Obsidian vaults, indexes them with local embeddings via Ollama
|
|
|
6
6
|
|
|
7
7
|
## Status
|
|
8
8
|
|
|
9
|
-
**v0.9.
|
|
9
|
+
**v0.9.2** — Vault-hygiene skill pack: three new Claude Code skills (`audit-vault-health`, `find-stale-notes`, `triage-inbox`) that compose the existing MCP tools into guided maintenance workflows. Pure-Markdown release — no code changes in the server. Distributed via the existing `install-skills.sh` one-liner.
|
|
10
10
|
|
|
11
|
-
Previous
|
|
11
|
+
Previous releases:
|
|
12
|
+
- **v0.9.1** — Body-hash short-circuit (migration 006): frontmatter-only edits no longer trigger chunk + embedding regeneration.
|
|
13
|
+
- **v0.9.0** — Agent-Compatibility & Self-Orientation: OB1-compatible `search`/`fetch` tools, plus `vault_stats` and `recent_notes` for agent first-connect orientation.
|
|
12
14
|
|
|
13
15
|
## Architecture in one paragraph
|
|
14
16
|
|
|
@@ -122,12 +124,15 @@ npm install && npm run build && npm link # creates the global `vault-memory` b
|
|
|
122
124
|
|
|
123
125
|
## Skills (Claude Code integration)
|
|
124
126
|
|
|
125
|
-
The `skills/` directory contains
|
|
127
|
+
The `skills/` directory contains five Claude Code skills you can drop into any vault's `.claude/skills/` folder. They are the user-facing way to install and operate vault-memory without remembering CLI flags.
|
|
126
128
|
|
|
127
129
|
| Skill | What it does | When to invoke |
|
|
128
130
|
|---|---|---|
|
|
129
131
|
| **`install-vault-memory/`** | The complete installer — 8 idempotent checkpoints from Homebrew through MCP smoketest. Defaults to autonomous mode with a `why:` line on every install prompt. Re-running on a working setup verifies state in under 5 seconds and exits. | First-time setup of a vault, or repairing a broken state. `/install-vault-memory` |
|
|
130
132
|
| **`add-vault/`** | Wraps `vault-memory add-vault` CLI with a confirmation flow — appends to `config.toml`, writes `.mcp.json`, builds the initial index. Atomic and idempotent. | Adding a *second or third* vault after vault-memory is already installed. `/add-vault` |
|
|
133
|
+
| **`audit-vault-health/`** (v0.9.2) | Read-only vault health audit — overview stats, broken wikilinks, tag drift (case/separator variants), frontmatter schema drift, indexing freshness. Pure read, never modifies notes. | Quarterly check, before relying on search after bulk import. `/audit-vault-health` |
|
|
134
|
+
| **`find-stale-notes/`** (v0.9.2) | Discovers notes >6mo old with 0 backlinks. Presents candidates as a sortable table, walks through each one with per-note actions (Archive / Update / Delete / Skip / Keep). Hash-protected deletes; never bulk-acts. | Vault cleanup, after import-bursts. `/find-stale-notes` |
|
|
135
|
+
| **`triage-inbox/`** (v0.9.2) | Walks through recent inbox-stage notes (sparse frontmatter, few tags, recent mtime). Per note: suggests target folder, tags, frontmatter, related wikilinks — based on semantic search against the rest of the vault. User accepts / edits / skips per note. | After a capture-burst (voice memos, web clippings, meeting transcripts). `/triage-inbox` |
|
|
131
136
|
|
|
132
137
|
### Installing the skills in a vault
|
|
133
138
|
|
|
@@ -149,7 +154,7 @@ The script is idempotent — re-running it fetches the latest skill versions fro
|
|
|
149
154
|
If you cloned the source repo, you can also copy directly:
|
|
150
155
|
|
|
151
156
|
```bash
|
|
152
|
-
cp -R ~/Documents/GitHub/vault-memory/skills/{install-vault-memory,add-vault} .claude/skills/
|
|
157
|
+
cp -R ~/Documents/GitHub/vault-memory/skills/{install-vault-memory,add-vault,audit-vault-health,find-stale-notes,triage-inbox} .claude/skills/
|
|
153
158
|
```
|
|
154
159
|
|
|
155
160
|
After Claude Code restarts, `/install-vault-memory` and `/add-vault` are available as slash commands in that vault.
|
package/dist/cli.js
CHANGED