@owrede/vault-memory 0.10.0 → 1.0.0
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 +34 -1
- package/dist/cli.js +1 -1
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@ atomic writes.
|
|
|
11
11
|
|
|
12
12
|
Nothing leaves your machine. No cloud sync, no API keys, no telemetry.
|
|
13
13
|
|
|
14
|
-
> See [CHANGELOG.md](./CHANGELOG.md) for release history. Latest: **
|
|
14
|
+
> See [CHANGELOG.md](./CHANGELOG.md) for release history. Latest: **v1.0.0** — stable API; SemVer-locked.
|
|
15
15
|
|
|
16
16
|
## What is vault-memory?
|
|
17
17
|
|
|
@@ -367,6 +367,39 @@ section — see the bottom of the changelog for the recipe.
|
|
|
367
367
|
|
|
368
368
|
_Coming soon._
|
|
369
369
|
|
|
370
|
+
## Filing issues
|
|
371
|
+
|
|
372
|
+
Bug reports and feature requests are welcome. Open one via the
|
|
373
|
+
[Issues tab](https://github.com/owrede/vault-memory/issues/new/choose) —
|
|
374
|
+
two structured templates are available:
|
|
375
|
+
|
|
376
|
+
- **Bug report** — for things that are broken or misbehave. Include repro
|
|
377
|
+
steps, your `vault-memory` version, and a one-line severity assessment.
|
|
378
|
+
- **Feature request** — for new tools, behaviours, or skills. Describe the
|
|
379
|
+
use case and a concrete proposed shape.
|
|
380
|
+
|
|
381
|
+
Both templates auto-label the issue (`bug` / `enhancement`) and route into
|
|
382
|
+
the area-labels documented below. Anyone with a GitHub account can open
|
|
383
|
+
issues; the maintainer triages and labels.
|
|
384
|
+
|
|
385
|
+
### Area labels
|
|
386
|
+
|
|
387
|
+
Issues are organised by which part of vault-memory they touch:
|
|
388
|
+
|
|
389
|
+
| Label | Scope |
|
|
390
|
+
|---|---|
|
|
391
|
+
| `area:search` | search_hybrid, search_semantic, search_text, search, fetch |
|
|
392
|
+
| `area:indexer` | catchup, watcher, body-hash short-circuit |
|
|
393
|
+
| `area:schema-inference` | suggest_frontmatter + folder/neighbor/content layers |
|
|
394
|
+
| `area:skills` | Claude Code skills bundled in `skills/` |
|
|
395
|
+
| `area:cli` | `vault-memory` CLI (serve, add-vault, index) |
|
|
396
|
+
| `area:graph` | wikilinks, backlinks, broken-link detection |
|
|
397
|
+
| `area:reranker` | ONNX cross-encoder reranker |
|
|
398
|
+
| `area:db-migration` | SQLite schema migrations, sqlite-vec |
|
|
399
|
+
|
|
400
|
+
Plus the functional labels `eval`, `performance`, `breaking-change`,
|
|
401
|
+
`needs-repro`, `good-first-fix`.
|
|
402
|
+
|
|
370
403
|
## License
|
|
371
404
|
|
|
372
405
|
MIT.
|
package/dist/cli.js
CHANGED