delimit-cli 4.1.43 → 4.1.44

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,5 +1,32 @@
1
1
  # Changelog
2
2
 
3
+ ## [4.20.0] - 2026-04-20
4
+
5
+ *The highest state of AI governance.*
6
+
7
+ ### Added
8
+ - `delimit doctor` — 14 prescriptive diagnostics with `--ci` JSON, `--fix` auto-repair, health score
9
+ - `delimit status` — visual terminal dashboard with `--json`, `--watch` live refresh
10
+ - `delimit simulate` — policy dry-run (terraform plan for API governance)
11
+ - `delimit report` — governance report with `--since`, `--format md|html|json`
12
+ - Memory hardening — SHA-256 integrity hash + source_model on every `remember`
13
+ - Tag-based publishing — `scripts/release.sh` + GitHub Actions workflow
14
+ - Gateway sync gate — `prepublishOnly` auto-syncs from gateway (drift impossible)
15
+ - YouTube auto-publish pipeline — `scripts/record-and-upload.sh`
16
+ - VS Code extension v0.2.0 — simulate + report commands
17
+ - 17 new tests for v4.20 features (total: 123)
18
+
19
+ ### Fixed
20
+ - Flaky test timeouts (5s → 15s for hook/deliberate tests)
21
+ - PostToolUse hook test updated for tightened spec patterns
22
+ - Dashboard workspace filter now filters data by project (LED-330)
23
+ - Hardcoded usernames scrubbed from gateway (moved to env var)
24
+
25
+ ### Changed
26
+ - README updated with v4.20 features and new quick-start commands
27
+ - Landing page: tool count 176 → 186, doctor + simulate cards, YouTube embed
28
+ - Demo GIF updated with clean mock data (Acme API)
29
+
3
30
  ## [4.1.0] - 2026-04-03
4
31
 
5
32
  ### Added
package/README.md CHANGED
@@ -16,13 +16,18 @@ The universal command for the Delimit Swarm. When you say **"Think and Build"**,
16
16
  Works across any configuration — from a single model on a budget to an enterprise swarm of 4+ models.
17
17
 
18
18
  [![npm](https://img.shields.io/npm/v/delimit-cli)](https://www.npmjs.com/package/delimit-cli)
19
+ [![Tests](https://img.shields.io/badge/tests-123%20passing-brightgreen)](https://github.com/delimit-ai/delimit-mcp-server)
20
+ [![MCP Tools](https://img.shields.io/badge/MCP%20tools-186-blue)](https://delimit.ai)
19
21
  [![GitHub Action](https://img.shields.io/badge/GitHub%20Action-v1.6.0-blue)](https://github.com/marketplace/actions/delimit-api-governance)
20
22
  [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
21
23
  [![Glama](https://glama.ai/mcp/servers/delimit-ai/delimit/badge)](https://glama.ai/mcp/servers/delimit-ai/delimit)
22
- [![API Governance](https://delimit-ai.github.io/badge/pass.svg)](https://github.com/marketplace/actions/delimit-api-governance)
23
24
 
24
25
  <p align="center">
25
- <img src="docs/demo.gif" alt="Delimit detecting breaking API changes" width="700">
26
+ <img src="docs/demo.gif" alt="Delimit v4.20 doctor, simulate, status, memory" width="700">
27
+ </p>
28
+
29
+ <p align="center">
30
+ <a href="https://youtu.be/8e_6P7rkFxo">Watch the demo</a> · <a href="https://youtu.be/4O1wY4vWmiY">Multi-model deliberation</a> · <a href="https://delimit.ai">Website</a>
26
31
  </p>
27
32
 
28
33
  ---
@@ -30,10 +35,11 @@ Works across any configuration — from a single model on a budget to an enterpr
30
35
  ## Try it in 2 minutes
31
36
 
32
37
  ```bash
38
+ npx delimit-cli doctor # 14 prescriptive checks — tells you exactly what to fix
39
+ npx delimit-cli status # Visual dashboard of your entire governance setup
40
+ npx delimit-cli simulate # Dry-run: see what would be blocked before you commit
33
41
  npx delimit-cli scan # Instant health grade for your API spec
34
42
  npx delimit-cli try owner/repo # Try governance on any GitHub repo
35
- npx delimit-cli pr owner/repo#123 # Review any GitHub PR for breaking changes
36
- npx delimit-cli setup && source ~/.bashrc # Configure AI assistants + activate
37
43
  ```
38
44
 
39
45
  No API keys. No account. No config files.
@@ -64,7 +70,42 @@ npx delimit-cli init # Sets up governance + drift baseline
64
70
 
65
71
  ---
66
72
 
67
- ## What's New in v4.1
73
+ ## What's New in v4.20
74
+
75
+ *The highest state of AI governance.*
76
+
77
+ - **`delimit doctor`** -- 14 prescriptive diagnostics. Every failure prints the exact command to fix it. `--ci` for pipelines, `--fix` for auto-repair.
78
+ - **`delimit simulate`** -- policy dry-run. See what would be blocked before you commit. The `terraform plan` for API governance.
79
+ - **`delimit status`** -- visual terminal dashboard. Policy, specs, hooks, CI, MCP, models, memory, ledger, evidence, git branch. `--watch` for live refresh.
80
+ - **`delimit report`** -- governance report. `--since 7d --format md|html|json`. Audit-friendly output for PRs and compliance.
81
+ - **Memory hardening** -- SHA-256 integrity hash + source model tag on every `remember`. Cross-model trust, verified on every `recall`.
82
+ - **Tag-based publishing** -- automated gateway sync, no more version drift between source and npm bundle.
83
+
84
+ ### Multi-Model Deliberation
85
+
86
+ Run your question through 4 AI models simultaneously. They debate each other until unanimous agreement.
87
+
88
+ ```bash
89
+ delimit deliberate "Should we build rate limiting in-house or use a managed service?"
90
+ ```
91
+
92
+ ```
93
+ Round 1 (independent):
94
+ Claude: Build in-house. Redis sliding window is 50 lines.
95
+ Gemini: Build. You already have Redis.
96
+ Codex: Agree — but add circuit breaker for Redis failures.
97
+ Grok: Build. Managed service costs $200/mo for 50 lines of code.
98
+
99
+ Round 2 (deliberation):
100
+ All models: AGREE
101
+
102
+ UNANIMOUS CONSENSUS (2 rounds, confidence 94/100)
103
+ Build rate limiting in-house with Redis + circuit breaker.
104
+ ```
105
+
106
+ 3 free deliberations, then BYOK for unlimited. Works with Grok, Gemini, Claude, GPT-4o.
107
+
108
+ ### v4.1
68
109
 
69
110
  - **TUI** -- terminal-native Ventures panel, real `delimit think` and `delimit build` commands
70
111
  - **Security hardening** -- notify.py stubbed in npm, axios pinned against supply chain attacks