delimit-cli 4.6.1 → 4.7.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/CHANGELOG.md CHANGED
@@ -1,6 +1,86 @@
1
1
  # Changelog
2
2
 
3
3
 
4
+ ## [4.7.0] - 2026-06-03
5
+
6
+ Feature release: fold the open-core Delimit Seal verifier into delimit-cli.
7
+
8
+ ### Added
9
+
10
+ - **`delimit seal-verify <receipt.json>`** + MCP tool **`delimit_seal_verify`**
11
+ (Free tier): verify a Delimit Seal receipt's Ed25519 signature and content-pin
12
+ against the bundled, content-hashed Layer-0 constitution — with no access to the
13
+ engine or the signing key. Bundles `gateway/ai/seal/` (verifier, constitution,
14
+ public key, sample receipt). Honest about what it does NOT attest.
15
+ - The verifier **lazy-imports `cryptography` and fails closed** if it is absent
16
+ (returns verification_unavailable) — it never blocks install or any other tool.
17
+ To enable seal verification: `pip install cryptography`.
18
+
19
+ ### Notes
20
+
21
+ - Purely additive — no existing tool, command, or behavior changed.
22
+
23
+
24
+ ## [4.6.1] - 2026-05-22
25
+
26
+ Patch release: bundle hygiene + gateway sync carrying 7 upstream improvements.
27
+
28
+ ### Fixed
29
+
30
+ - **`delimit setup hooks`** (LED-1207, #100): bypass broken `npx` fallback in
31
+ the pre-commit / pre-push hook generator. Fresh installs now produce hooks
32
+ that work even when the npm-resolved `delimit` shim is absent from `PATH`
33
+ (the fallback used to fail silently and produce no-op hooks).
34
+
35
+ ### Improved (carried from the gateway)
36
+
37
+ These ship inside the gateway/ tree that bundles with delimit-cli. They are
38
+ in effect for anyone running the MCP server from a 4.6.1 install:
39
+
40
+ - **Cross-post dedup for Reddit drafts** — same-author + same-normalized-title
41
+ within a 7-day window dedupes manual re-submits across subreddits. Reddit's
42
+ native `crosspost_parent` field is *also* now captured: when set, an O(1)
43
+ fingerprint lookup catches the native cross-post case before the heuristic.
44
+ Two-layer coverage: native UI cross-posts (rare, O(1)) + manual re-submits
45
+ (common, O(N)).
46
+
47
+ - **Inline follow-up draft in reply-alert emails** — both Reddit reply-alerts
48
+ and GitHub outreach-reply-alerts now ship with a pre-composed, voice-matched
49
+ follow-up reply inside the email body. The original "Draft a follow-up
50
+ reply and post from mobile" sentinel remains as graceful degradation if
51
+ the drafter falls through. Designed for mobile copy-paste-and-post flow.
52
+
53
+ - **STR-195 binding founder decisions auto-injected into `delimit_deliberate`** —
54
+ when a panel question touches a venture name or decision keyword, matching
55
+ `feedback_*.md` memories surface as a `BINDING FOUNDER DECISIONS — CANNOT BE
56
+ RE-LITIGATED` block prepended to the panel context. Closed decisions stop
57
+ getting re-argued every deliberation. Memory walk is mtime-cached; portfolio
58
+ anchors can be extended via `~/.delimit/social_target_ventures.json` for
59
+ Pro users whose ventures aren't in the default delimit-portfolio set.
60
+
61
+ - **`delimit_security_audit` false-positive elimination** (LED-1278 (c)):
62
+ token-handling code (`const token = readCurrentToken()`,
63
+ `const token = (options.token || process.env.X)`) no longer trips the
64
+ `generic_secret` detector. Provider-specific detectors (aws_access_key,
65
+ github_token, jwt_token, sk-proj API key) remain fully armed. Verified
66
+ against a regression-guard test set including real AKIA, ghp_, JWT, and
67
+ bearer-token literal shapes.
68
+
69
+ ### Chores
70
+
71
+ - **Excluded dev-only build scripts from the customer tarball** (#101):
72
+ `build-license-core.sh`, `security-check.sh`, and `test-license-core-so.sh`
73
+ are publish-time hooks invoked from `prepublishOnly`; they never ran on
74
+ customer installs. Removed from the published bundle (166 → 163 files,
75
+ ~10KB unpacked) and closed the meta-leak where the scripts' own
76
+ leak-detection grep patterns contained the patterns they protected against.
77
+
78
+ ### Documentation
79
+
80
+ - **Retract incorrect 4.6.0 'known issue' line** (LED-1403): the prior
81
+ CHANGELOG entry referenced a regression that did not actually ship.
82
+
83
+
4
84
  ## [4.6.0] - 2026-05-15
5
85
 
6
86
  ### Added — Codex CLI + Gemini CLI auto-trigger directives (LED-1399)
@@ -69,7 +69,7 @@ function normalizeNaturalLanguageArgs(argv) {
69
69
  const explicitCommands = new Set([
70
70
  'install', 'mode', 'status', 'session', 'build', 'ask', 'policy', 'auth', 'audit',
71
71
  'explain-decision', 'uninstall', 'proxy', 'hook', 'version', 'vault', 'deliberate',
72
- 'remember', 'recall', 'forget', 'report', 'signin', 'signout', 'activate'
72
+ 'remember', 'recall', 'forget', 'report', 'signin', 'signout', 'activate', 'seal-verify'
73
73
  ]);
74
74
  if (explicitCommands.has((raw[0] || '').toLowerCase())) {
75
75
  return raw;
@@ -6916,12 +6916,43 @@ program
6916
6916
  results = results.filter(m => m.tags && m.tags.some(t => t.includes(tagFilter)));
6917
6917
  }
6918
6918
 
6919
- // Filter by query (case-insensitive substring on text + tags)
6919
+ // Filter by query — tokenized OR-match on text + tags + context.
6920
+ // Previously this required the entire query as one contiguous
6921
+ // substring (haystack.includes(query)), so any multi-word query
6922
+ // returned zero hits. Now we split on whitespace and keep an entry
6923
+ // if it matches at least one token, then rank by the number of
6924
+ // distinct tokens matched (descending), tie-broken by recency.
6920
6925
  if (query) {
6921
- results = results.filter(m => {
6922
- const haystack = (m.text + ' ' + (m.tags || []).join(' ')).toLowerCase();
6923
- return haystack.includes(query);
6926
+ const tokens = query.split(/\s+/).filter(Boolean);
6927
+ const scored = [];
6928
+ for (const m of results) {
6929
+ const haystack = (
6930
+ (m.text || '') + ' ' +
6931
+ (m.tags || []).join(' ') + ' ' +
6932
+ (m.context || '')
6933
+ ).toLowerCase();
6934
+ let matched = 0;
6935
+ let occurrences = 0;
6936
+ for (const tok of tokens) {
6937
+ const c = haystack.split(tok).length - 1;
6938
+ if (c > 0) {
6939
+ matched += 1;
6940
+ occurrences += c;
6941
+ }
6942
+ }
6943
+ if (matched >= 1) {
6944
+ scored.push({ mem: m, matched, occurrences });
6945
+ }
6946
+ }
6947
+ // Rank: most tokens matched, then most occurrences, then recency.
6948
+ scored.sort((a, b) => {
6949
+ if (b.matched !== a.matched) return b.matched - a.matched;
6950
+ if (b.occurrences !== a.occurrences) return b.occurrences - a.occurrences;
6951
+ const at = new Date(a.mem.created_at || a.mem.created || 0).getTime();
6952
+ const bt = new Date(b.mem.created_at || b.mem.created || 0).getTime();
6953
+ return bt - at;
6924
6954
  });
6955
+ results = scored.map(s => s.mem);
6925
6956
  }
6926
6957
 
6927
6958
  // Unless --all, limit to last 10
@@ -6930,8 +6961,13 @@ program
6930
6961
  results = results.slice(-10);
6931
6962
  }
6932
6963
 
6933
- // Display newest first
6934
- results.reverse();
6964
+ // Display order: newest-first for the unfiltered/tag views (memories
6965
+ // arrive newest-first, so reverse only when NOT ranking by query).
6966
+ // Query results are already ordered best-match-first by the ranking
6967
+ // above and must not be reversed.
6968
+ if (!query) {
6969
+ results.reverse();
6970
+ }
6935
6971
 
6936
6972
  console.log(chalk.bold('\n Delimit Memories\n'));
6937
6973
 
@@ -6964,5 +7000,55 @@ program
6964
7000
  }
6965
7001
  });
6966
7002
 
7003
+ program
7004
+ .command('seal-verify <receipt_path>')
7005
+ .description('Verify a Delimit Seal receipt (Ed25519 signature + content-pin) against the bundled constitution')
7006
+ .option('--json', 'Output the full verification result as JSON')
7007
+ .action((receiptPath, options) => {
7008
+ const resolved = path.resolve(receiptPath);
7009
+ if (!fs.existsSync(resolved)) {
7010
+ console.error(chalk.red(`\n Receipt not found: ${resolved}\n`));
7011
+ process.exit(1);
7012
+ }
7013
+ const verifier = homeSubpath('server', 'ai', 'seal', 'verifier.py');
7014
+ if (!fs.existsSync(verifier)) {
7015
+ console.error(chalk.yellow('\n Seal verifier not installed. Run: ') + chalk.cyan('delimit setup') + '\n');
7016
+ process.exit(1);
7017
+ }
7018
+ try {
7019
+ const escaped = resolved.replace(/'/g, "\\'");
7020
+ const pyCmd = `python3 -c "
7021
+ import sys, os, json
7022
+ sys.path.insert(0, os.path.dirname('${verifier}'))
7023
+ from verifier import verify_receipt
7024
+ print(json.dumps(verify_receipt('${escaped}'), default=str))
7025
+ "`;
7026
+ const out = execSync(pyCmd, {
7027
+ encoding: 'utf-8',
7028
+ timeout: 30000,
7029
+ env: { ...process.env, PYTHONPATH: path.dirname(verifier) },
7030
+ });
7031
+ const r = JSON.parse(out.trim().split('\n').pop());
7032
+ if (options.json) {
7033
+ console.log(JSON.stringify(r, null, 2));
7034
+ } else {
7035
+ console.log(chalk.bold('\n Delimit Seal — receipt verification\n'));
7036
+ console.log(' ' + (r.valid ? chalk.green('✅ VERIFIED') : chalk.red('❌ FAILED')) +
7037
+ chalk.gray(` (${(r.layer0_seed_id || '').slice(0, 20)}…)`));
7038
+ if (r.checks) {
7039
+ for (const [k, v] of Object.entries(r.checks)) {
7040
+ console.log(` [${v ? chalk.green('✓') : chalk.red('✗')}] ${k}`);
7041
+ }
7042
+ }
7043
+ if (r.error) console.log(chalk.yellow(` ${r.error}`));
7044
+ console.log(chalk.gray(' Proves the governed process ran — not factual correctness or goodness.\n'));
7045
+ }
7046
+ process.exitCode = r.valid ? 0 : 1;
7047
+ } catch (e) {
7048
+ console.error(chalk.red(`\n Verification error: ${e.message}\n`));
7049
+ process.exitCode = 2;
7050
+ }
7051
+ });
7052
+
6967
7053
  const normalizedArgs = normalizeNaturalLanguageArgs(process.argv);
6968
7054
  program.parse([process.argv[0], process.argv[1], ...normalizedArgs]);
@@ -258,18 +258,22 @@ async function main() {
258
258
  const venvPy = fs.existsSync(venvPython) ? venvPython : venvPythonWin;
259
259
  if (fs.existsSync(reqFile)) {
260
260
  execSync(`"${venvPy}" -m pip install --quiet -r "${reqFile}" 2>/dev/null`, { stdio: 'pipe' });
261
+ // LED-1564: even when reqFile exists, ensure pytest is present.
262
+ // Older reqFiles (pre-2026-05-22) didn't list it; without pytest
263
+ // the delimit_test_smoke deploy-gate step fails to run cleanly.
264
+ execSync(`"${venvPy}" -m pip install --quiet pytest 2>/dev/null`, { stdio: 'pipe' });
261
265
  } else {
262
- execSync(`"${venvPy}" -m pip install --quiet fastmcp==3.1.0 pyyaml==6.0.3 pydantic==2.12.5 packaging==26.0 2>/dev/null`, { stdio: 'pipe' });
266
+ execSync(`"${venvPy}" -m pip install --quiet fastmcp==3.1.0 pyyaml==6.0.3 pydantic==2.12.5 packaging==26.0 pytest 2>/dev/null`, { stdio: 'pipe' });
263
267
  }
264
268
  python = venvPy; // Use venv python for MCP config
265
269
  await logp(` ${green('✓')} Python dependencies installed (isolated venv)`);
266
270
  } catch {
267
271
  log(` ${yellow('!')} venv install failed — trying global pip`);
268
272
  try {
269
- execSync(`${python} -m pip install --quiet fastmcp==3.1.0 pyyaml==6.0.3 pydantic==2.12.5 packaging==26.0 2>/dev/null`, { stdio: 'pipe' });
273
+ execSync(`${python} -m pip install --quiet fastmcp==3.1.0 pyyaml==6.0.3 pydantic==2.12.5 packaging==26.0 pytest 2>/dev/null`, { stdio: 'pipe' });
270
274
  await logp(` ${green('✓')} Python dependencies installed (global)`);
271
275
  } catch {
272
- log(` ${yellow('!')} pip install failed — run manually: pip install fastmcp pyyaml pydantic packaging`);
276
+ log(` ${yellow('!')} pip install failed — run manually: pip install fastmcp pyyaml pydantic packaging pytest`);
273
277
  }
274
278
  }
275
279
 
@@ -358,6 +358,12 @@ def run_diff(old_spec: str, new_spec: str) -> Dict[str, Any]:
358
358
  }
359
359
  for c in changes
360
360
  ],
361
+ # LED-1588: structured side-channel for fail-open skips (unresolvable
362
+ # refs, malformed nodes) so a clean `changes` list is not mistaken for
363
+ # "proven safe". Additive — existing keys are unchanged. The JSON
364
+ # Schema branch above intentionally omits this (engine does not yet
365
+ # populate advisories; a misleading empty field would imply it checked).
366
+ "advisories": engine.advisories,
361
367
  }
362
368
 
363
369
 
@@ -14,11 +14,131 @@ logger = logging.getLogger("delimit.ai.memory_bridge")
14
14
 
15
15
  MEMORY_DIR = Path.home() / ".delimit" / "memory"
16
16
 
17
+ # Legacy CLI store filename. The npm CLI historically wrote memories as
18
+ # newline-delimited JSON (`memories.jsonl`) using a `text`/`created`/`source`
19
+ # schema, while the MCP store writes one `mem-*.json` file per entry using
20
+ # `content`/`created_at`/`context`. The readers below reconcile both so a
21
+ # customer who created memories via the old CLI still sees them through the
22
+ # MCP tools (FIX C — non-destructive; the .jsonl is never rewritten here).
23
+ LEGACY_JSONL_NAME = "memories.jsonl"
24
+
17
25
 
18
26
  def _ensure_dir():
19
27
  MEMORY_DIR.mkdir(parents=True, exist_ok=True)
20
28
 
21
29
 
30
+ def _tokenize(query: str) -> List[str]:
31
+ """Split a search query into lowercased whitespace-delimited tokens.
32
+
33
+ Used by search() for OR-semantics keyword matching: an entry is a hit
34
+ if it contains at least one token. Empty / whitespace-only queries
35
+ yield no tokens (callers preserve their own empty-query behavior).
36
+ """
37
+ return [t for t in (query or "").lower().split() if t]
38
+
39
+
40
+ def _normalize_legacy_entry(raw: Dict[str, Any]) -> Dict[str, Any]:
41
+ """Normalize a legacy `memories.jsonl` record to the MCP entry shape.
42
+
43
+ Legacy CLI schema: {id, text, tags, created, source}
44
+ MCP schema: {id, content, tags, context, created_at, hot_load}
45
+
46
+ Maps text->content and created->created_at without dropping the
47
+ original keys, and synthesizes a context from `source` when absent so
48
+ downstream readers behave uniformly. Mirrors the CLI's readMemories
49
+ normalization (npm-delimit/bin/delimit-cli.js) for cross-tool parity.
50
+ """
51
+ entry = dict(raw)
52
+ if entry.get("text") and not entry.get("content"):
53
+ entry["content"] = entry["text"]
54
+ if entry.get("content") and not entry.get("text"):
55
+ entry["text"] = entry["content"]
56
+ if entry.get("created") and not entry.get("created_at"):
57
+ entry["created_at"] = entry["created"]
58
+ if entry.get("created_at") and not entry.get("created"):
59
+ entry["created"] = entry["created_at"]
60
+ if not entry.get("context") and entry.get("source"):
61
+ entry["context"] = entry["source"]
62
+ return entry
63
+
64
+
65
+ def _read_legacy_jsonl() -> List[Dict[str, Any]]:
66
+ """Read and normalize legacy `memories.jsonl` entries, if present.
67
+
68
+ Defensive by contract: a missing or malformed file yields an empty
69
+ list and never raises. Malformed individual lines are skipped so one
70
+ bad line does not lose the rest of the file.
71
+ """
72
+ path = MEMORY_DIR / LEGACY_JSONL_NAME
73
+ entries: List[Dict[str, Any]] = []
74
+ try:
75
+ if not path.exists():
76
+ return entries
77
+ text = path.read_text()
78
+ except OSError:
79
+ return entries
80
+ for line in text.splitlines():
81
+ line = line.strip()
82
+ if not line:
83
+ continue
84
+ try:
85
+ raw = json.loads(line)
86
+ except (json.JSONDecodeError, ValueError):
87
+ continue
88
+ if isinstance(raw, dict):
89
+ entries.append(_normalize_legacy_entry(raw))
90
+ return entries
91
+
92
+
93
+ def _load_all_entries() -> List[Dict[str, Any]]:
94
+ """Load every memory entry from both stores, deduped by id.
95
+
96
+ Reads the per-entry `mem-*.json` files (MCP, primary) and the legacy
97
+ `memories.jsonl` (CLI, backwards-compat). On an id collision the
98
+ `mem-*.json` entry wins — it is the authoritative MCP store and may
99
+ carry fields (e.g. hot_load) the legacy record lacks. Entries are
100
+ returned newest-first by created_at so callers that slice keep the
101
+ most recent. Fully defensive: unreadable files are skipped.
102
+
103
+ FIX C: the legacy `memories.jsonl` is read-only here — never deleted
104
+ or rewritten — preserving a customer's existing CLI-authored memories.
105
+ """
106
+ by_id: Dict[str, Dict[str, Any]] = {}
107
+ order: List[str] = []
108
+
109
+ def _add(entry: Dict[str, Any], key: str, *, overwrite: bool) -> None:
110
+ if key not in by_id:
111
+ by_id[key] = entry
112
+ order.append(key)
113
+ elif overwrite:
114
+ by_id[key] = entry
115
+
116
+ # Primary store: mem-*.json (authoritative, wins on conflict).
117
+ for f in MEMORY_DIR.glob("*.json"):
118
+ try:
119
+ entry = json.loads(f.read_text())
120
+ except (OSError, json.JSONDecodeError, ValueError):
121
+ continue
122
+ if not isinstance(entry, dict):
123
+ continue
124
+ entry.setdefault("id", f.stem)
125
+ _add(entry, entry.get("id") or f.stem, overwrite=True)
126
+
127
+ # Legacy jsonl: only fills ids the primary store does not already have.
128
+ for entry in _read_legacy_jsonl():
129
+ key = entry.get("id")
130
+ if not key:
131
+ # No id to dedupe on — keep it, it cannot collide.
132
+ order.append(id(entry)) # unique sentinel key
133
+ by_id[id(entry)] = entry
134
+ continue
135
+ _add(entry, key, overwrite=False)
136
+
137
+ entries = [by_id[k] for k in order]
138
+ entries.sort(key=lambda e: e.get("created_at") or e.get("created") or "", reverse=True)
139
+ return entries
140
+
141
+
22
142
  def store(
23
143
  content: str,
24
144
  tags: Optional[list] = None,
@@ -68,56 +188,97 @@ def store(
68
188
 
69
189
 
70
190
  def search(query: str, limit: int = 10) -> Dict[str, Any]:
71
- """Search memories by keyword matching."""
191
+ """Search memories by keyword matching.
192
+
193
+ FIX A: the query is tokenized on whitespace and matched with OR
194
+ semantics — an entry is a hit if it contains at least one token in its
195
+ content, tags, or context. Previously the entire query had to appear as
196
+ one contiguous substring, so any multi-word query returned zero hits.
197
+
198
+ Results are ranked by the number of distinct query tokens matched
199
+ (descending), tie-broken by recency (created_at descending). The
200
+ `relevance` field is preserved in the return schema and now carries the
201
+ matched-token count, the primary ranking signal.
202
+
203
+ An empty (or whitespace-only) query preserves the previous behavior of
204
+ returning no results.
205
+
206
+ FIX C: reads both the per-entry `mem-*.json` MCP store and the legacy
207
+ `memories.jsonl` CLI store (deduped, MCP wins on id conflict).
208
+ """
72
209
  _ensure_dir()
73
- query_lower = query.lower()
210
+ tokens = _tokenize(query)
74
211
  results = []
75
212
 
76
- for f in sorted(MEMORY_DIR.glob("*.json"), reverse=True):
77
- try:
78
- entry = json.loads(f.read_text())
79
- content = entry.get("content", "").lower()
80
- tags = " ".join(entry.get("tags", [])).lower()
81
- context = entry.get("context", "").lower()
82
-
83
- # Simple keyword matching
84
- if query_lower in content or query_lower in tags or query_lower in context:
85
- results.append({
86
- "id": entry.get("id", f.stem),
87
- "content": entry.get("content", "")[:500],
88
- "tags": entry.get("tags", []),
89
- "created_at": entry.get("created_at", ""),
90
- "relevance": content.count(query_lower),
91
- })
92
-
93
- if len(results) >= limit:
94
- break
95
- except Exception:
96
- pass
97
-
98
- results.sort(key=lambda r: r.get("relevance", 0), reverse=True)
213
+ # Empty / whitespace-only query: preserve prior behavior (no hits).
214
+ if not tokens:
215
+ return {"query": query, "results": results, "count": 0}
216
+
217
+ for entry in _load_all_entries():
218
+ content = (entry.get("content") or "").lower()
219
+ tags = " ".join(entry.get("tags") or []).lower()
220
+ context = (entry.get("context") or "").lower()
221
+ haystacks = (content, tags, context)
222
+
223
+ matched_tokens = 0
224
+ total_occurrences = 0
225
+ for tok in tokens:
226
+ hit = False
227
+ for hay in haystacks:
228
+ c = hay.count(tok)
229
+ if c:
230
+ hit = True
231
+ total_occurrences += c
232
+ if hit:
233
+ matched_tokens += 1
234
+
235
+ if matched_tokens >= 1:
236
+ results.append({
237
+ "id": entry.get("id", ""),
238
+ "content": (entry.get("content") or "")[:500],
239
+ "tags": entry.get("tags") or [],
240
+ "created_at": entry.get("created_at") or entry.get("created") or "",
241
+ # `relevance` preserved in schema; now = matched-token count
242
+ # (primary ranking signal). _occurrences is an internal
243
+ # tie-break aid, dropped before return.
244
+ "relevance": matched_tokens,
245
+ "_occurrences": total_occurrences,
246
+ })
247
+
248
+ # Rank: most tokens matched first, then most occurrences, then recency.
249
+ results.sort(
250
+ key=lambda r: (r["relevance"], r["_occurrences"], r.get("created_at") or ""),
251
+ reverse=True,
252
+ )
253
+ for r in results:
254
+ r.pop("_occurrences", None)
255
+
256
+ results = results[:limit]
99
257
  return {"query": query, "results": results, "count": len(results)}
100
258
 
101
259
 
102
260
  def get_recent(limit: int = 5) -> Dict[str, Any]:
103
- """Get recent memory entries."""
261
+ """Get recent memory entries.
262
+
263
+ FIX C: reads both the per-entry `mem-*.json` MCP store and the legacy
264
+ `memories.jsonl` CLI store. Entries are deduped by id (MCP wins) and
265
+ ordered newest-first by created_at (legacy `created` is normalized to
266
+ `created_at`). Legacy entries surface `hot_load=False` since the field
267
+ pre-dates that schema.
268
+ """
104
269
  _ensure_dir()
105
270
  entries = []
106
271
 
107
- for f in sorted(MEMORY_DIR.glob("*.json"), key=lambda p: p.stat().st_mtime, reverse=True):
272
+ for entry in _load_all_entries():
108
273
  if len(entries) >= limit:
109
274
  break
110
- try:
111
- entry = json.loads(f.read_text())
112
- entries.append({
113
- "id": entry.get("id", f.stem),
114
- "content": entry.get("content", "")[:500],
115
- "tags": entry.get("tags", []),
116
- "created_at": entry.get("created_at", ""),
117
- "hot_load": bool(entry.get("hot_load", False)),
118
- })
119
- except Exception:
120
- pass
275
+ entries.append({
276
+ "id": entry.get("id", ""),
277
+ "content": (entry.get("content") or "")[:500],
278
+ "tags": entry.get("tags") or [],
279
+ "created_at": entry.get("created_at") or entry.get("created") or "",
280
+ "hot_load": bool(entry.get("hot_load", False)),
281
+ })
121
282
 
122
283
  return {"results": entries, "count": len(entries)}
123
284
 
@@ -143,23 +304,19 @@ def list_hot(limit: int = 200) -> Dict[str, Any]:
143
304
  _ensure_dir()
144
305
  entries = []
145
306
 
146
- for f in sorted(MEMORY_DIR.glob("*.json"), key=lambda p: p.stat().st_mtime, reverse=True):
307
+ for entry in _load_all_entries():
147
308
  if len(entries) >= limit:
148
309
  break
149
- try:
150
- entry = json.loads(f.read_text())
151
- if not entry.get("hot_load"):
152
- continue
153
- entries.append({
154
- "id": entry.get("id", f.stem),
155
- "content": entry.get("content", ""),
156
- "tags": entry.get("tags", []),
157
- "context": entry.get("context", ""),
158
- "created_at": entry.get("created_at", ""),
159
- "hot_load": True,
160
- })
161
- except Exception:
162
- pass
310
+ if not entry.get("hot_load"):
311
+ continue
312
+ entries.append({
313
+ "id": entry.get("id", ""),
314
+ "content": entry.get("content") or "",
315
+ "tags": entry.get("tags") or [],
316
+ "context": entry.get("context") or "",
317
+ "created_at": entry.get("created_at") or entry.get("created") or "",
318
+ "hot_load": True,
319
+ })
163
320
 
164
321
  return {"results": entries, "count": len(entries)}
165
322
 
@@ -318,3 +318,25 @@ def security_audit(target: str = ".", options: Optional[Dict] = None) -> Dict[st
318
318
  return _fallback_security_result(target=target, tool_label="security.audit")
319
319
  return _call("securitygate", "create_securitygate_server", "_tool_audit",
320
320
  {"target": target, "authorization_token": _INTERNAL_TOKEN, **(options or {})}, "security.audit")
321
+
322
+
323
+ def seal_verify(receipt_path: str, options: Optional[Dict] = None) -> Dict[str, Any]:
324
+ """Verify a Delimit Seal receipt (Free, open-core).
325
+
326
+ Delegates to ai.seal.verifier.verify_receipt against the bundled,
327
+ content-hashed Layer-0 constitution + published Ed25519 public key.
328
+ The `cryptography` dependency is optional and lazy-imported inside the
329
+ verifier; a missing wheel returns verification_unavailable, never raises.
330
+ """
331
+ try:
332
+ from ai.seal.verifier import verify_receipt
333
+ except Exception as e: # import guard — never break the caller
334
+ return {"valid": False, "seal_valid": False,
335
+ "error": f"seal verifier unavailable: {e}"}
336
+ opts = options or {}
337
+ return verify_receipt(
338
+ receipt_path,
339
+ constitution_path=opts.get("constitution_path"),
340
+ pubkey_path=opts.get("pubkey_path"),
341
+ verbose=bool(opts.get("verbose", False)),
342
+ )