delimit-cli 3.15.9 → 3.15.10
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 +41 -0
- package/README.md +10 -9
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,46 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [3.15.9] - 2026-03-30
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
- **Agent Swarm**: 20 agents across 4 ventures with namespace isolation, tiered approvals, and central governor
|
|
7
|
+
- **Prompt Playbook**: versioned, reusable prompt templates with {{variable}} syntax
|
|
8
|
+
- **Multi-model code review**: consolidated feedback from Claude, Grok, Gemini, Codex
|
|
9
|
+
- **PII/secret redaction**: scan and redact API keys, emails, SSNs before sending to LLMs
|
|
10
|
+
- **Collision detection**: prevent two AI models from editing the same file
|
|
11
|
+
- **Prompt drift detection**: track when same task behaves differently across models
|
|
12
|
+
- **Cost vs Efficacy dashboard**: which model is best for your codebase
|
|
13
|
+
- **Project config**: committable `delimit.yml` with per-repo AI governance
|
|
14
|
+
- **`delimit resume`**: show what you were working on last session
|
|
15
|
+
- **`delimit quickstart`**: clone demo project and guided walkthrough
|
|
16
|
+
- **`delimit try`**: zero-risk demo that saves a Markdown report
|
|
17
|
+
- **Change management policy**: docs freshness check before deploy
|
|
18
|
+
- **GTM metrics tracking**: tasks, deploys, revenue per venture
|
|
19
|
+
|
|
20
|
+
### Changed
|
|
21
|
+
- Hero messaging: "Stop Re-Explaining Your Codebase" (pain-first)
|
|
22
|
+
- Progressive disclosure: 5 workflows instead of 162 tools
|
|
23
|
+
- Deliberation engine now uses official SDKs (anthropic, openai, google-genai)
|
|
24
|
+
- 4-model deliberation: Claude (CLI) + Grok + Gemini + Codex
|
|
25
|
+
- Setup auto-updates, regenerates shims, fixes config permissions
|
|
26
|
+
- Boot screen shows dynamic version and tool count with gradient colors
|
|
27
|
+
- All confirmation prompts show "Enter = Yes" hint
|
|
28
|
+
- Pricing page updated: Free/Pro/Enterprise tiers
|
|
29
|
+
|
|
30
|
+
### Fixed
|
|
31
|
+
- 37 missing @mcp.tool() decorators restored (125 to 171 tools)
|
|
32
|
+
- Stale .so binaries shadowing updated .py source files
|
|
33
|
+
- Codex config.toml duplicate TOML entries
|
|
34
|
+
- CI green across Python 3.10/3.11/3.12 (7 test files fixed)
|
|
35
|
+
- Setup self-update infinite loop guard
|
|
36
|
+
- Pro module stubs overwriting full source files
|
|
37
|
+
|
|
38
|
+
### Security
|
|
39
|
+
- 7 proprietary modules stubbed in npm bundle
|
|
40
|
+
- Deliberation engine kept private (stub in npm, full on server)
|
|
41
|
+
- PII scrubbed from all public packages
|
|
42
|
+
- Security check runs before every npm publish
|
|
43
|
+
|
|
3
44
|
## [3.13.3] - 2026-03-27
|
|
4
45
|
|
|
5
46
|
### Changed
|
package/README.md
CHANGED
|
@@ -50,15 +50,16 @@ npx delimit-cli init # Sets up governance + drift baseline
|
|
|
50
50
|
|
|
51
51
|
---
|
|
52
52
|
|
|
53
|
-
## What's New in v3.
|
|
54
|
-
|
|
55
|
-
- **
|
|
56
|
-
- **
|
|
57
|
-
- **
|
|
58
|
-
- **
|
|
59
|
-
- **
|
|
60
|
-
- **
|
|
61
|
-
- **
|
|
53
|
+
## What's New in v3.15
|
|
54
|
+
|
|
55
|
+
- **Agent Swarm** -- 20 AI agents across 4 ventures with namespace isolation and tiered approvals
|
|
56
|
+
- **Prompt Playbook** -- versioned, reusable prompts with {{variable}} syntax
|
|
57
|
+
- **Multi-model code review** -- consolidated feedback from 3+ AI models
|
|
58
|
+
- **PII/secret redaction** -- auto-scan and redact before sending to external LLMs
|
|
59
|
+
- **Collision detection** -- prevent two AI models from editing the same file
|
|
60
|
+
- **4-model deliberation** -- Claude + Grok + Gemini + Codex debate until consensus
|
|
61
|
+
- **Change management** -- docs freshness check enforced before deploy
|
|
62
|
+
- **171 MCP tools** -- governance, context, shipping, observability, orchestration, and swarm
|
|
62
63
|
|
|
63
64
|
---
|
|
64
65
|
|
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": "3.15.
|
|
4
|
+
"version": "3.15.10",
|
|
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": [
|