delimit-cli 4.0.2 → 4.0.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 CHANGED
@@ -3,8 +3,9 @@
3
3
  Stop re-explaining your codebase every session. Memory, tasks, and governance that persist across Claude Code, Codex, Cursor, and Gemini CLI.
4
4
 
5
5
  [![npm](https://img.shields.io/npm/v/delimit-cli)](https://www.npmjs.com/package/delimit-cli)
6
- [![GitHub Action](https://img.shields.io/badge/GitHub%20Action-v1.8.0-blue)](https://github.com/marketplace/actions/delimit-api-governance)
6
+ [![GitHub Action](https://img.shields.io/badge/GitHub%20Action-v1.6.0-blue)](https://github.com/marketplace/actions/delimit-api-governance)
7
7
  [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
8
+ [![Glama](https://glama.ai/mcp/servers/delimit-ai/delimit/badge)](https://glama.ai/mcp/servers/delimit-ai/delimit)
8
9
  [![API Governance](https://delimit-ai.github.io/badge/pass.svg)](https://github.com/marketplace/actions/delimit-api-governance)
9
10
 
10
11
  <p align="center">
@@ -49,16 +50,15 @@ npx delimit-cli init # Sets up governance + drift baseline
49
50
 
50
51
  ---
51
52
 
52
- ## What's New in v3.15
53
+ ## What's New in v4.0
53
54
 
54
- - **Agent Swarm** -- 20 AI agents across 4 ventures with namespace isolation and tiered approvals
55
- - **Prompt Playbook** -- versioned, reusable prompts with {{variable}} syntax
56
- - **Multi-model code review** -- consolidated feedback from 3+ AI models
57
- - **PII/secret redaction** -- auto-scan and redact before sending to external LLMs
58
- - **Collision detection** -- prevent two AI models from editing the same file
55
+ - **Toolcard Delta Cache** -- SHA256 schema hashing, delta-only transmission, saves tokens
56
+ - **Session Phoenix** -- cross-model session resurrection with soul capture
57
+ - **Handoff Receipts** -- structured acknowledgment protocol between agents
58
+ - **Cross-Model Audit** -- 3 lenses (security, correctness, governance) with deterministic synthesis
59
59
  - **4-model deliberation** -- Claude + Grok + Gemini + Codex debate until consensus
60
- - **Change management** -- docs freshness check enforced before deploy
61
- - **171 MCP tools** -- governance, context, shipping, observability, orchestration, and swarm
60
+ - **Social target scanner** -- 6-platform engagement discovery
61
+ - **172 MCP tools** -- governance, context, shipping, observability, orchestration, and swarm
62
62
 
63
63
  ---
64
64
 
@@ -1104,13 +1104,16 @@ exit 127
1104
1104
  log('');
1105
1105
 
1106
1106
  // Suggested next action based on findings
1107
- log(` ${bold('Next action:')}`);
1107
+ log(` ${bold("What's next:")}`);
1108
1108
  if (specFound) {
1109
- log(` ${green('delimit-cli lint')} — check your API spec for breaking changes`);
1109
+ log(` ${green('npx delimit-cli lint')} — check your API spec for breaking changes`);
1110
+ log(` ${green('npx delimit-cli doctor')} — verify setup health`);
1110
1111
  } else if (projectFindings > 0) {
1111
- log(` ${green('delimit-cli scan')} — detect API specs and potential issues`);
1112
+ log(` ${green('npx delimit-cli scan')} — detect API specs and potential issues`);
1113
+ log(` ${green('npx delimit-cli doctor')} — verify setup health`);
1112
1114
  } else {
1113
- log(` ${green('delimit-cli demo')} — see governance in action (30 seconds)`);
1115
+ log(` ${green('npx delimit-cli demo')} — see governance in action (30 seconds)`);
1116
+ log(` ${green('npx delimit-cli doctor')} — verify setup health`);
1114
1117
  }
1115
1118
  log('');
1116
1119
  log(` ${dim('Docs: https://delimit.ai/docs')}`);
@@ -327,8 +327,8 @@ function installClaudeHooks(tool, hookConfig) {
327
327
 
328
328
  // 3. PreToolUse: security audit before deploy/publish/release commands
329
329
  if (hookConfig.deploy_audit !== false) {
330
- const securityCmd = 'delimit-cli security-audit';
331
- const existingSecurity = findClaudeHookGroup(config.hooks.PreToolUse, securityCmd);
330
+ const deployGateCmd = 'delimit-cli hook deploy-gate';
331
+ const existingSecurity = findClaudeHookGroup(config.hooks.PreToolUse, deployGateCmd);
332
332
  if (!existingSecurity) {
333
333
  config.hooks.PreToolUse.push({
334
334
  matcher: 'Bash',
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.0.2",
4
+ "version": "4.0.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": [