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 +9 -9
- package/bin/delimit-setup.js +7 -4
- package/lib/cross-model-hooks.js +2 -2
- package/package.json +1 -1
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
|
[](https://www.npmjs.com/package/delimit-cli)
|
|
6
|
-
[](https://github.com/marketplace/actions/delimit-api-governance)
|
|
7
7
|
[](https://opensource.org/licenses/MIT)
|
|
8
|
+
[](https://glama.ai/mcp/servers/delimit-ai/delimit)
|
|
8
9
|
[](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
|
|
53
|
+
## What's New in v4.0
|
|
53
54
|
|
|
54
|
-
- **
|
|
55
|
-
- **
|
|
56
|
-
- **
|
|
57
|
-
- **
|
|
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
|
-
- **
|
|
61
|
-
- **
|
|
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
|
|
package/bin/delimit-setup.js
CHANGED
|
@@ -1104,13 +1104,16 @@ exit 127
|
|
|
1104
1104
|
log('');
|
|
1105
1105
|
|
|
1106
1106
|
// Suggested next action based on findings
|
|
1107
|
-
log(` ${bold('
|
|
1107
|
+
log(` ${bold("What's next:")}`);
|
|
1108
1108
|
if (specFound) {
|
|
1109
|
-
log(` ${green('delimit-cli lint')}
|
|
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')}
|
|
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')}
|
|
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')}`);
|
package/lib/cross-model-hooks.js
CHANGED
|
@@ -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
|
|
331
|
-
const existingSecurity = findClaudeHookGroup(config.hooks.PreToolUse,
|
|
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.
|
|
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": [
|