sensemaking 0.11.1 → 0.11.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sensemaking",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.2",
|
|
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",
|
|
@@ -46,7 +46,8 @@ What the shape buys: bare search never ranks raw noise above compiled pages; the
|
|
|
46
46
|
"queries": {
|
|
47
47
|
"project": { "sql": "SELECT path, kind, created, title FROM frontmatter WHERE project = ? ORDER BY created DESC" },
|
|
48
48
|
"steers": { "sql": "SELECT path, created, title FROM frontmatter WHERE kind = 'steer' AND project = ? ORDER BY created" },
|
|
49
|
-
"retirement": { "sql": "SELECT path, project, created FROM frontmatter WHERE datetime(created) < datetime('now','
|
|
49
|
+
"retirement": { "sql": "SELECT path, project, created FROM frontmatter WHERE datetime(created) < datetime('now','-90 day') AND path NOT IN (SELECT dst FROM links WHERE dst IS NOT NULL)" },
|
|
50
|
+
"today": { "sql": "SELECT path, title FROM frontmatter WHERE date(created) = date('now','localtime') ORDER BY created" },
|
|
50
51
|
"unfiled": { "sql": "SELECT path FROM frontmatter WHERE project IS NULL" }
|
|
51
52
|
}
|
|
52
53
|
}
|
|
@@ -54,6 +55,8 @@ What the shape buys: bare search never ranks raw noise above compiled pages; the
|
|
|
54
55
|
|
|
55
56
|
```
|
|
56
57
|
sense project acme-app # one project's notes, newest first
|
|
58
|
+
sense today # `now` is UTC: a query whose boundary is a day needs 'localtime'
|
|
59
|
+
# `retirement` above is a 90-day window, so it does not
|
|
57
60
|
sense search "prefers terse commit messages" --k 5
|
|
58
61
|
→ memory/acme-app/2026-08-02-commits.md via: match
|
|
59
62
|
→ memory/acme-app/2026-06-11-style.md via: vector similarity: 0.71 # near-duplicate → merge candidate
|