delimit-cli 4.7.2 → 4.7.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/CHANGELOG.md +15 -0
- package/README.md +37 -2
- package/package.json +1 -1
- package/server.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
3
|
|
|
4
|
+
## [4.7.3] - 2026-06-04
|
|
5
|
+
|
|
6
|
+
Docs + metadata release. No functional changes to the package.
|
|
7
|
+
|
|
8
|
+
### Changed
|
|
9
|
+
|
|
10
|
+
- npm README now carries the **"Adopt with minimum privilege"** section
|
|
11
|
+
(phase-1 read-only tool allowlist, Action SHA-pinning, BYOK vault guidance)
|
|
12
|
+
that previously only rendered on GitHub.
|
|
13
|
+
- Detection-engine claims corrected to **28 change types (17 breaking,
|
|
14
|
+
11 non-breaking)** — adds `field_requirement_relaxed` (context-aware
|
|
15
|
+
severity) to the documented table.
|
|
16
|
+
- `server.json` (MCP registry metadata) version brought current.
|
|
17
|
+
|
|
18
|
+
|
|
4
19
|
## [4.7.2] - 2026-06-04
|
|
5
20
|
|
|
6
21
|
### Fixed
|
package/README.md
CHANGED
|
@@ -226,6 +226,40 @@ That's it. Delimit auto-fetches the base branch spec, diffs it, and posts a PR c
|
|
|
226
226
|
|
|
227
227
|
---
|
|
228
228
|
|
|
229
|
+
## Adopt with minimum privilege
|
|
230
|
+
|
|
231
|
+
You don't have to trust a large tool surface on day one. The safe on-ramp:
|
|
232
|
+
|
|
233
|
+
**Phase 1 — read-only governance (free, no account).** Start with the tools that
|
|
234
|
+
only read your repo and write reports: `delimit_lint`, `delimit_diff`,
|
|
235
|
+
`delimit_semver`, `delimit_policy`, `delimit_explain`, `delimit_scan`, and
|
|
236
|
+
`delimit_seal_verify`. If your MCP client supports per-tool allowlists, grant
|
|
237
|
+
exactly those. Nothing in this set executes, deploys, or posts anywhere.
|
|
238
|
+
|
|
239
|
+
**Phase 2 — opt into side effects deliberately.** Tools that write evidence
|
|
240
|
+
bundles, open PR comments, or run deploys (`delimit_security_audit`,
|
|
241
|
+
`delimit_deploy_*`, agent orchestration) are tier-gated; enable them once
|
|
242
|
+
phase 1 has earned its keep in your CI.
|
|
243
|
+
|
|
244
|
+
**Pin the Action to a commit SHA.** `@v1` is a floating tag. For
|
|
245
|
+
supply-chain-sensitive pipelines, pin the exact commit and bump on review:
|
|
246
|
+
|
|
247
|
+
```yaml
|
|
248
|
+
- uses: delimit-ai/delimit-action@<commit-sha> # gh api repos/delimit-ai/delimit-action/git/refs/tags/v1
|
|
249
|
+
```
|
|
250
|
+
|
|
251
|
+
**Keep BYOK keys out of plaintext config.** If you bring your own model keys
|
|
252
|
+
for deliberation, store them with `delimit_secret_store` (encrypted vault,
|
|
253
|
+
access-logged via `delimit_secret_access_log`) rather than in dotfiles.
|
|
254
|
+
|
|
255
|
+
Our own releases ship under the same discipline: every release carries a
|
|
256
|
+
signed, replayable Seal receipt (see the latest
|
|
257
|
+
[release assets](https://github.com/delimit-ai/delimit-mcp-server/releases) —
|
|
258
|
+
verify with `npx delimit-cli seal-verify <receipt.json>` or at its
|
|
259
|
+
`delimit.ai/att/<id>` replay URL), plus SLSA provenance on npm.
|
|
260
|
+
|
|
261
|
+
---
|
|
262
|
+
|
|
229
263
|
## CLI commands
|
|
230
264
|
|
|
231
265
|
```bash
|
|
@@ -290,7 +324,7 @@ When installed into your AI coding assistant, Delimit provides tools across two
|
|
|
290
324
|
|
|
291
325
|
## What It Detects
|
|
292
326
|
|
|
293
|
-
|
|
327
|
+
28 change types (17 breaking, 11 non-breaking) -- deterministic rules, not AI inference. Same input always produces the same result.
|
|
294
328
|
|
|
295
329
|
### Breaking Changes
|
|
296
330
|
|
|
@@ -328,6 +362,7 @@ When installed into your AI coding assistant, Delimit provides tools across two
|
|
|
328
362
|
| 25 | `security_added` | API key security scheme added |
|
|
329
363
|
| 26 | `deprecated_added` | `GET /v1/users` marked as deprecated |
|
|
330
364
|
| 27 | `default_changed` | Default value for `page_size` changed from 10 to 20 |
|
|
365
|
+
| 28 | `field_requirement_relaxed` | Required field `nickname` became optional (context-aware severity) |
|
|
331
366
|
|
|
332
367
|
---
|
|
333
368
|
|
|
@@ -367,7 +402,7 @@ rules:
|
|
|
367
402
|
|
|
368
403
|
**How does this compare to Obsidian Mind?**
|
|
369
404
|
|
|
370
|
-
Obsidian Mind is a great Obsidian vault template for Claude Code users who want persistent memory via markdown files. Delimit takes a different approach: it's an MCP server that works across Claude Code, Codex, Gemini CLI, and Cursor. Your memory, ledger, and governance travel with you when you switch models. Delimit also adds API governance (
|
|
405
|
+
Obsidian Mind is a great Obsidian vault template for Claude Code users who want persistent memory via markdown files. Delimit takes a different approach: it's an MCP server that works across Claude Code, Codex, Gemini CLI, and Cursor. Your memory, ledger, and governance travel with you when you switch models. Delimit also adds API governance (28-type breaking change detection), CI gates, git hooks, and policy enforcement that Obsidian Mind doesn't cover. Use Obsidian Mind if you're all-in on Claude + Obsidian. Use Delimit if you switch between models or need governance.
|
|
371
406
|
|
|
372
407
|
**Does this work without Claude Code?**
|
|
373
408
|
|
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.7.
|
|
4
|
+
"version": "4.7.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": [
|
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": "4.
|
|
10
|
+
"version": "4.7.3",
|
|
11
11
|
"websiteUrl": "https://delimit.ai",
|
|
12
12
|
"packages": [
|
|
13
13
|
{
|
|
14
14
|
"registryType": "npm",
|
|
15
15
|
"identifier": "delimit-cli",
|
|
16
|
-
"version": "4.
|
|
16
|
+
"version": "4.7.3",
|
|
17
17
|
"transport": {
|
|
18
18
|
"type": "stdio"
|
|
19
19
|
}
|