delimit-cli 4.3.0 → 4.3.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 +31 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -361,6 +361,37 @@ The free tier includes API governance, persistent memory, zero-spec extraction,
|
|
|
361
361
|
|
|
362
362
|
---
|
|
363
363
|
|
|
364
|
+
## Telemetry & cloud sync
|
|
365
|
+
|
|
366
|
+
**Short version: none by default.** Nothing leaves your machine unless you explicitly configure it.
|
|
367
|
+
|
|
368
|
+
**What's always local (source of truth):**
|
|
369
|
+
- `~/.delimit/events/events-YYYY-MM-DD.jsonl` — per-tool-call events (tool name, timestamp, status, model id, session id, trace id). No source code, no prompts, no responses.
|
|
370
|
+
- `~/.delimit/ledger/` — your ledger items, work orders, deliberation transcripts.
|
|
371
|
+
- `~/.delimit/attestations/` — `delimit wrap` output bundles.
|
|
372
|
+
|
|
373
|
+
**What's OPT-IN (requires you to provide your own Supabase project credentials):**
|
|
374
|
+
- `gateway/ai/supabase_sync.py` mirrors the local event + ledger + work-order + deliberation rows into a Supabase project *you own* so you can view them in `app.delimit.ai`. **It only activates if you set `SUPABASE_URL` + `SUPABASE_SERVICE_ROLE_KEY` environment variables OR provide `~/.delimit/secrets/supabase.json` with those credentials.** No URL or key is hardcoded in the published package (verify with `grep -r aqbdqxnhzqzswdxifksc $(npm root -g)/delimit-cli/` — zero hits).
|
|
375
|
+
- Data scope when enabled: metadata only (tool names, timestamps, IDs, statuses, venture tags). Never source code, prompts, or model responses.
|
|
376
|
+
|
|
377
|
+
**Kill switch:**
|
|
378
|
+
Set `DELIMIT_DISABLE_CLOUD_SYNC=1` in your environment to force all sync operations to no-op even if credentials are present. Local files continue to work normally.
|
|
379
|
+
|
|
380
|
+
```bash
|
|
381
|
+
# Disable cloud sync for a single invocation
|
|
382
|
+
DELIMIT_DISABLE_CLOUD_SYNC=1 delimit lint api/openapi.yaml
|
|
383
|
+
|
|
384
|
+
# Disable for the shell session
|
|
385
|
+
export DELIMIT_DISABLE_CLOUD_SYNC=1
|
|
386
|
+
```
|
|
387
|
+
|
|
388
|
+
**Webhook notifications:**
|
|
389
|
+
`gateway/ai/notify.py` emits governance events to a webhook endpoint *only if* you configure `DELIMIT_WEBHOOK_URL` explicitly. Unset by default.
|
|
390
|
+
|
|
391
|
+
If you spot another code path that could phone home without disclosure, file an issue. This section is maintained as ship-truth, not aspirational.
|
|
392
|
+
|
|
393
|
+
---
|
|
394
|
+
|
|
364
395
|
## Links
|
|
365
396
|
|
|
366
397
|
- [delimit.ai](https://delimit.ai) -- homepage
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "delimit-cli",
|
|
3
3
|
"mcpName": "io.github.delimit-ai/delimit-mcp-server",
|
|
4
|
-
"version": "4.3.
|
|
4
|
+
"version": "4.3.3",
|
|
5
5
|
"description": "Unify Claude Code, Codex, Cursor, and Gemini CLI with persistent context, governance, and multi-model debate.",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"files": [
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"postinstall": "node scripts/postinstall.js",
|
|
49
49
|
"sync-gateway": "bash scripts/sync-gateway.sh",
|
|
50
50
|
"prepublishOnly": "bash scripts/publish-ci-guard.sh && npm run sync-gateway && bash scripts/security-check.sh",
|
|
51
|
-
"test": "node --test tests/setup-onboarding.test.js tests/setup-matrix.test.js tests/setup-no-clobber.test.js tests/config-export-import.test.js tests/cross-model-hooks.test.js tests/golden-path.test.js tests/v420-features.test.js"
|
|
51
|
+
"test": "node --test tests/setup-onboarding.test.js tests/setup-matrix.test.js tests/setup-no-clobber.test.js tests/config-export-import.test.js tests/cross-model-hooks.test.js tests/golden-path.test.js tests/v420-features.test.js tests/v43-wrap-engine.test.js tests/v43-trust-page-engine.test.js tests/v43-ai-sbom-engine.test.js"
|
|
52
52
|
},
|
|
53
53
|
"keywords": [
|
|
54
54
|
"openapi",
|