sensemaking 0.24.2 → 0.24.3
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 +15 -4
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
# sensemaking
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Search and query a directory of Markdown notes from the command line. `sense` indexes frontmatter, prose and links in a local database. It can also combine word matches with links and semantic similarity.
|
|
4
|
+
|
|
5
|
+
Results contain file paths, snippets and line ranges. A person or agent can inspect the relevant passages without loading every note. No server or build step is required.
|
|
4
6
|
|
|
5
7
|
## Problem
|
|
6
8
|
|
|
@@ -16,7 +18,7 @@ cd your-notes && sense init
|
|
|
16
18
|
sense download # the embedding model, once per machine; the first vector search fetches it otherwise
|
|
17
19
|
```
|
|
18
20
|
|
|
19
|
-
|
|
21
|
+
Requires Node.js 22.20 or newer. The default store uses Node's built-in SQLite.
|
|
20
22
|
|
|
21
23
|
```bash
|
|
22
24
|
sense map # orient: fields, hub notes, recent changes
|
|
@@ -25,7 +27,16 @@ sense peek notes/q3-report.md # structure: outline + links, b
|
|
|
25
27
|
sense sql "SELECT path FROM frontmatter WHERE has(tags, ?)" urgent
|
|
26
28
|
```
|
|
27
29
|
|
|
28
|
-
|
|
30
|
+
A search result identifies the matching note, the evidence used to rank it and the relevant line range:
|
|
31
|
+
|
|
32
|
+
```text
|
|
33
|
+
path snippets via score lines
|
|
34
|
+
pricing-decision.md …«pricing» decision … renewal «price»… match 0.0167 L4-7
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
The row is illustrative. Actual paths, snippets and scores depend on the notes and configured search signals.
|
|
38
|
+
|
|
39
|
+
## What sense indexes
|
|
29
40
|
|
|
30
41
|
Every file becomes rows in these tables, plus whatever an enabled feature adds of its own:
|
|
31
42
|
|
|
@@ -144,7 +155,7 @@ Every query starts with a freshness check against the cache in `.sense/`; only c
|
|
|
144
155
|
- **Output is flat.** `map`, `peek`, and a search row cost the same on a small tree as a large one: context cost is bounded by what you ask for, not by how much there is.
|
|
145
156
|
- **Bulk changes are paid by whoever queries next.** `sense watch` moves that re-parse into the background ([DESIGN.md](DESIGN.md#watch-coordination)): it changes latency, never answers, since every query reconciles for itself. To start the cache over, delete the directory `sense status` prints.
|
|
146
157
|
|
|
147
|
-
|
|
158
|
+
Release assessments keep these claims measured. The ordinary assessment runs required common behavior and current-store work plus full portable NFCorpus on all three stores. The explicit deep profile adds portable FEVER, pinned corpora spanning a 4x range in note count, a stress tree that packs the worst measured shapes into one place, and legacy SQLite OR-bag continuity. Historical performance, quality, and output bands warn; failed required behavior, invalid or missing required evidence, explicit caller bounds or quality floors, and approved performance guards block. Current figures: [BENCHMARKING.md](BENCHMARKING.md).
|
|
148
159
|
|
|
149
160
|
## For AI agents
|
|
150
161
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sensemaking",
|
|
3
|
-
"version": "0.24.
|
|
3
|
+
"version": "0.24.3",
|
|
4
4
|
"description": "Query and search your markdown notes with context-aware progressive disclosure: SQL over frontmatter, links, and text, plus semantic search and link-graph ranking. No server, no build step.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"markdown",
|
|
@@ -77,6 +77,7 @@
|
|
|
77
77
|
"format": "tsds format",
|
|
78
78
|
"prepublishOnly": "tsds validate",
|
|
79
79
|
"test": "tsds test:node --no-timeouts",
|
|
80
|
+
"test:benchmark-framework": "tsds test:node --no-timeouts test/integration/benchmark-workload-identity.test.ts test/integration/benchmark-row-classes.test.ts test/integration/gate-dependencies.test.ts test/integration/gate-profile.test.ts test/integration/gate-scheduling.test.ts test/integration/quality-retrieval-identity.test.ts test/integration/quality-validity.test.ts test/integration/portable-quality.test.ts test/integration/portable-quality-stage.test.ts test/integration/retained-quality.test.ts test/integration/benchmark-worker-lifetime.test.ts test/integration/benchmark-harness.test.ts test/integration/quality-cache.test.ts",
|
|
80
81
|
"test:engines": "nvu engines tsds test:node --no-timeouts",
|
|
81
82
|
"version": "tsds version"
|
|
82
83
|
},
|