delimit-cli 3.6.11 → 3.7.0
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 +3 -3
- package/bin/delimit-setup.js +28 -25
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
# Delimit
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
One workspace for every AI coding assistant. Switch models, not context.
|
|
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
8
|
|
|
9
|
-
|
|
9
|
+
Your tasks, memory, and governance carry between Claude Code, Codex, and Gemini CLI. Persistent ledger, API breaking change detection, security audit, multi-model deliberation — all shared across assistants.
|
|
10
10
|
|
|
11
11
|
---
|
|
12
12
|
|
package/bin/delimit-setup.js
CHANGED
|
@@ -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
|
-
|
|
388
|
-
|
|
389
|
-
##
|
|
390
|
-
- "
|
|
391
|
-
- "add to ledger: [anything]" --
|
|
392
|
-
- "what's on the ledger?" --
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
-
|
|
397
|
-
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
- /
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
387
|
+
One workspace for every AI coding assistant.
|
|
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.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "3.7.0",
|
|
4
|
+
"description": "One workspace for every AI coding assistant. Tasks, memory, and governance carry between Claude Code, Codex, and Gemini CLI.",
|
|
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/
|
|
21
|
+
"test": "node --test tests/setup-onboarding.test.js"
|
|
22
22
|
},
|
|
23
23
|
"keywords": [
|
|
24
24
|
"openapi",
|