delimit-cli 3.11.10 → 3.11.11
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 +48 -0
- package/README.md +9 -3
- package/bin/delimit-setup.js +3 -3
- package/package.json +1 -1
- package/server.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,53 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [3.11.10] - 2026-03-24
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
- Cursor adapter with `.cursor/rules/delimit.md` support (Cursor 0.45+)
|
|
7
|
+
- Codex adapters: `codex-skill.js` (governance) and `codex-security.js`
|
|
8
|
+
- Setup `--dry-run` previews config changes before writing
|
|
9
|
+
- Uninstall `--dry-run` with backups for all 4 AI assistants
|
|
10
|
+
- Post-install config validation (checks all assistant configs)
|
|
11
|
+
- npm publish workflow with provenance and approval gates
|
|
12
|
+
- Setup matrix tests (13 new tests across all AI assistants)
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
- Repo renamed to `delimit-ai/delimit-mcp-server`
|
|
16
|
+
- Description: "Unify Claude Code, Codex, Cursor, and Gemini CLI with persistent context, governance, and multi-model debate."
|
|
17
|
+
- Clear Free vs Pro tier boundaries in README
|
|
18
|
+
|
|
19
|
+
### Security
|
|
20
|
+
- Hardened `.npmignore` (blocks .env, credentials, keys)
|
|
21
|
+
- Supply chain security section in SECURITY.md
|
|
22
|
+
|
|
23
|
+
## [3.11.9] - 2026-03-23
|
|
24
|
+
|
|
25
|
+
### Added
|
|
26
|
+
- Auto-detect API keys and CLIs on `delimit init` and `delimit version`
|
|
27
|
+
- `delimit_quickstart` MCP tool (60-second guided first-run)
|
|
28
|
+
- Deliberation cost tracking (estimate + actual per model)
|
|
29
|
+
- Input sanitization: `_sanitize_path`, `_sanitize_subprocess_arg`
|
|
30
|
+
- GitHub Action smoke test workflow
|
|
31
|
+
|
|
32
|
+
### Fixed
|
|
33
|
+
- Gemini deliberation HTTP 400 (ADC credentials + jamsons project)
|
|
34
|
+
- Deliberation timeout: parallelized round 1 (46% faster)
|
|
35
|
+
- Sensor dedup: titles include repo/issue to prevent duplicates
|
|
36
|
+
- Test-mode guard prevents ledger pollution from tests
|
|
37
|
+
|
|
38
|
+
### Changed
|
|
39
|
+
- Governance default mode: advisory -> guarded (blocks critical actions)
|
|
40
|
+
- Ledger tools now route through governance loop (113/116 tools)
|
|
41
|
+
- Dialogue deliberation capped at 4 rounds (was 6)
|
|
42
|
+
- Per-model API timeout: 120s -> 45s (fail fast)
|
|
43
|
+
|
|
44
|
+
## [3.11.8] - 2026-03-23
|
|
45
|
+
|
|
46
|
+
### Fixed
|
|
47
|
+
- Codex compatibility: 11 type coercion fixes (string->list/dict)
|
|
48
|
+
- CI green: FastMCP fallback, env var injection, mock patterns
|
|
49
|
+
- Dashboard dark/light mode with CSS variables
|
|
50
|
+
|
|
3
51
|
## [2.4.0] - 2026-03-15
|
|
4
52
|
|
|
5
53
|
### Added
|
package/README.md
CHANGED
|
@@ -5,15 +5,21 @@ Unify Claude Code, Codex, Cursor, and Gemini CLI with persistent context, govern
|
|
|
5
5
|
[](https://www.npmjs.com/package/delimit-cli)
|
|
6
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-mcp-server)
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
Persistent ledger, API governance, security orchestration, and multi-model deliberation — all shared across Claude Code, Codex, Cursor, and Gemini CLI.
|
|
11
11
|
|
|
12
12
|
---
|
|
13
13
|
|
|
14
14
|
## GitHub Action
|
|
15
15
|
|
|
16
|
-
|
|
16
|
+
Zero-config — auto-detects your OpenAPI spec:
|
|
17
|
+
|
|
18
|
+
```yaml
|
|
19
|
+
- uses: delimit-ai/delimit-action@v1
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
Or with full configuration:
|
|
17
23
|
|
|
18
24
|
```yaml
|
|
19
25
|
name: API Contract Check
|
package/bin/delimit-setup.js
CHANGED
|
@@ -54,7 +54,7 @@ async function main() {
|
|
|
54
54
|
log(blue(' / / / / __/ / / / // /|_/ // / / / '));
|
|
55
55
|
log(blue(' / /_/ / /___/ /____/ // / / // / / / '));
|
|
56
56
|
log(blue('/_____/_____/_____/___/_/ /_/___/ /_/ '));
|
|
57
|
-
log(dim('
|
|
57
|
+
log(dim(' Unify all AI coding assistants'));
|
|
58
58
|
log('');
|
|
59
59
|
|
|
60
60
|
// Step 1: Check prerequisites
|
|
@@ -707,7 +707,7 @@ function getDelimitSection() {
|
|
|
707
707
|
return `<!-- delimit:start v${version} -->
|
|
708
708
|
# Delimit
|
|
709
709
|
|
|
710
|
-
|
|
710
|
+
Unify all AI coding assistants with persistent context, governance, and multi-model debate.
|
|
711
711
|
|
|
712
712
|
## On every session start:
|
|
713
713
|
1. Call \`delimit_ledger_context\` to check for open tasks
|
|
@@ -756,7 +756,7 @@ Add breaking change detection to any repo:
|
|
|
756
756
|
|
|
757
757
|
## Links
|
|
758
758
|
- Docs: https://delimit.ai/docs
|
|
759
|
-
- GitHub: https://github.com/delimit-ai/delimit
|
|
759
|
+
- GitHub: https://github.com/delimit-ai/delimit-mcp-server
|
|
760
760
|
- Action: https://github.com/marketplace/actions/delimit-api-governance
|
|
761
761
|
<!-- delimit:end -->`;
|
|
762
762
|
}
|
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.11.
|
|
4
|
+
"version": "3.11.11",
|
|
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": [
|
package/server.json
CHANGED
|
@@ -7,13 +7,13 @@
|
|
|
7
7
|
"url": "https://github.com/delimit-ai/delimit-mcp-server",
|
|
8
8
|
"source": "github"
|
|
9
9
|
},
|
|
10
|
-
"version": "3.11.
|
|
10
|
+
"version": "3.11.10",
|
|
11
11
|
"websiteUrl": "https://delimit.ai",
|
|
12
12
|
"packages": [
|
|
13
13
|
{
|
|
14
14
|
"registryType": "npm",
|
|
15
15
|
"identifier": "delimit-cli",
|
|
16
|
-
"version": "3.11.
|
|
16
|
+
"version": "3.11.10",
|
|
17
17
|
"transport": {
|
|
18
18
|
"type": "stdio"
|
|
19
19
|
}
|