delimit-cli 3.14.3 → 3.14.4
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 +25 -0
- package/bin/delimit-cli.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -24,6 +24,30 @@ npx delimit-cli setup # Configure your AI assistants
|
|
|
24
24
|
|
|
25
25
|
No API keys. No account. No config files.
|
|
26
26
|
|
|
27
|
+
### Pick your first win
|
|
28
|
+
|
|
29
|
+
**Protect my API** — catch breaking changes before merge:
|
|
30
|
+
```bash
|
|
31
|
+
npx delimit-cli try
|
|
32
|
+
# Creates a sample API, introduces breaking changes, shows what gets blocked.
|
|
33
|
+
# Saves a governance report to delimit-report.md
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
**Watch for drift** — detect spec changes without review:
|
|
37
|
+
```bash
|
|
38
|
+
npx delimit-cli init # Sets up governance + drift baseline
|
|
39
|
+
# Weekly drift checks run automatically via GitHub Action
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
**Run PR copilot** — governance gates on every pull request:
|
|
43
|
+
```yaml
|
|
44
|
+
# .github/workflows/api-governance.yml
|
|
45
|
+
- uses: delimit-ai/delimit-action@v1
|
|
46
|
+
with:
|
|
47
|
+
spec: api/openapi.yaml
|
|
48
|
+
# Posts gate status, violations, and remediation in PR comments
|
|
49
|
+
```
|
|
50
|
+
|
|
27
51
|
---
|
|
28
52
|
|
|
29
53
|
## What's New in v3.14
|
|
@@ -97,6 +121,7 @@ That's it. Delimit auto-fetches the base branch spec, diffs it, and posts a PR c
|
|
|
97
121
|
## CLI commands
|
|
98
122
|
|
|
99
123
|
```bash
|
|
124
|
+
npx delimit-cli try # Zero-risk demo — saves governance report
|
|
100
125
|
npx delimit-cli demo # Self-contained governance demo
|
|
101
126
|
npx delimit-cli init # Guided wizard with compliance templates
|
|
102
127
|
npx delimit-cli init --preset strict # Initialize with strict policy
|
package/bin/delimit-cli.js
CHANGED
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.14.
|
|
4
|
+
"version": "3.14.4",
|
|
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": [
|