delimit-cli 3.6.11 → 3.6.12

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
@@ -1,12 +1,12 @@
1
1
  # Delimit
2
2
 
3
- Catch breaking API changes before they reach production.
3
+ Governance toolkit for AI coding assistants — API checks, persistent memory, consensus, security.
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.4.0-blue)](https://github.com/marketplace/actions/delimit-api-governance)
6
+ [![GitHub Action](https://img.shields.io/badge/GitHub%20Action-v1.5.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
8
 
9
- Delimit diffs your OpenAPI spec on every pull request. Breaking changes get flagged, semver gets classified, and your team gets a migration guide automatically.
9
+ Delimit gives your AI coding assistant governance tools API breaking change detection, persistent task ledger, security audit, test verification, and multi-model deliberation. Works with Claude Code, Codex, Cursor, and Gemini CLI.
10
10
 
11
11
  ---
12
12
 
@@ -319,7 +319,7 @@ Run full governance compliance checks. Verify security, policy compliance, evide
319
319
  } else {
320
320
  // Check if existing CLAUDE.md is an older Delimit version that should be upgraded
321
321
  const existing = fs.readFileSync(claudeMd, 'utf-8');
322
- if (existing.includes('# Delimit AI Guardrails') || existing.includes('delimit_init') || existing.includes('delimit_lint')) {
322
+ if (existing.includes('# Delimit AI Guardrails') || existing.includes('delimit_init') || existing.includes('delimit_lint') || existing.includes('persistent memory, verified execution')) {
323
323
  fs.writeFileSync(claudeMd, getClaudeMdContent());
324
324
  log(` ${green('✓')} Updated ${claudeMd} with improved onboarding`);
325
325
  } else {
@@ -384,30 +384,33 @@ Run full governance compliance checks. Verify security, policy compliance, evide
384
384
  function getClaudeMdContent() {
385
385
  return `# Delimit
386
386
 
387
- Your AI has persistent memory, verified execution, and governance.
388
-
389
- ## First time? Say one of these:
390
- - "check this project's health" -- see what Delimit finds
391
- - "add to ledger: [anything]" -- start tracking tasks
392
- - "what's on the ledger?" -- see what's pending
393
-
394
- ## Returning? Your AI remembers:
395
- - Ledger items persist across sessions
396
- - Governance rules stay configured
397
- - Memory carries forward
398
-
399
- ## On first session, your AI will automatically:
400
- 1. Diagnose the environment to verify everything is connected
401
- 2. Check the ledger for any pending items from previous sessions
402
- 3. If no governance exists yet, suggest initializing it
403
-
404
- ## Available Agents
405
- - /lint -- check API specs for breaking changes
406
- - /engineering -- build, test, refactor with governance checks
407
- - /governance -- full compliance audit
408
-
409
- ## Need help?
410
- Say "delimit help" for docs on any capability.
387
+ Governance toolkit for AI coding assistants.
388
+
389
+ ## Try these:
390
+ - "lint my API spec" -- catch breaking changes in your OpenAPI spec
391
+ - "add to ledger: [anything]" -- track tasks across sessions
392
+ - "what's on the ledger?" -- pick up where you left off
393
+ - "check this project's health" -- run governance diagnostics
394
+
395
+ ## What Delimit does:
396
+ - **API governance** -- lint, diff, semver classification, migration guides
397
+ - **Persistent ledger** -- tasks survive across sessions
398
+ - **Security audit** -- dependency scanning, secret detection
399
+ - **Test verification** -- confirm tests actually ran, measure coverage
400
+ - **Multi-model deliberation** -- say "deliberate [question]" to get consensus from multiple AI models
401
+
402
+ ## GitHub Action
403
+ Add breaking change detection to any repo:
404
+ \`\`\`yaml
405
+ - uses: delimit-ai/delimit-action@v1
406
+ with:
407
+ spec: api/openapi.yaml
408
+ \`\`\`
409
+
410
+ ## Links
411
+ - Docs: https://delimit.ai/docs
412
+ - GitHub: https://github.com/delimit-ai/delimit
413
+ - Action: https://github.com/marketplace/actions/delimit-api-governance
411
414
  `;
412
415
  }
413
416
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "delimit-cli",
3
- "version": "3.6.11",
4
- "description": "Catch breaking API changes before they ship. GitHub Action + CLI for OpenAPI specs.",
3
+ "version": "3.6.12",
4
+ "description": "Governance toolkit for AI coding assistants API checks, persistent memory, consensus, security.",
5
5
  "main": "index.js",
6
6
  "files": [
7
7
  "bin/",
@@ -18,7 +18,7 @@
18
18
  },
19
19
  "scripts": {
20
20
  "postinstall": "echo '\\nRun: npx delimit-cli setup\\n'",
21
- "test": "node --test tests/cli.test.js"
21
+ "test": "node --test tests/setup-onboarding.test.js"
22
22
  },
23
23
  "keywords": [
24
24
  "openapi",