delimit-cli 3.11.2 → 3.11.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/bin/delimit.js CHANGED
@@ -41,7 +41,7 @@ function findRealExecutable(command, customPath) {
41
41
  if (command === 'pre-commit-check' || command === 'pre-commit') {
42
42
  log('Running pre-commit governance checks...', GREEN);
43
43
 
44
- // Verify PATH is still infected
44
+ // Verify PATH is still integrateed
45
45
  if (!process.env.PATH.includes('.delimit/shims')) {
46
46
  error('Governance layer is not active in your PATH!');
47
47
  error('Commit REJECTED. Please restart your terminal or run: source ~/.bashrc');
@@ -183,9 +183,9 @@ if (command === 'pre-commit-check' || command === 'pre-commit') {
183
183
  log('Delimit Governance Status', BLUE);
184
184
  log('═══════════════════════════════════════════', BLUE);
185
185
 
186
- // Check PATH infection
187
- const pathInfected = process.env.PATH.includes('.delimit/shims');
188
- log(`PATH Hijack: ${pathInfected ? '✓ ACTIVE' : '✗ INACTIVE'}`, pathInfected ? GREEN : RED);
186
+ // Check PATH integrateion
187
+ const pathIntegrateed = process.env.PATH.includes('.delimit/shims');
188
+ log(`PATH Hijack: ${pathIntegrateed ? '✓ ACTIVE' : '✗ INACTIVE'}`, pathIntegrateed ? GREEN : RED);
189
189
 
190
190
  // Check Git hooks
191
191
  try {
@@ -206,7 +206,7 @@ if (command === 'pre-commit-check' || command === 'pre-commit') {
206
206
 
207
207
  log('═══════════════════════════════════════════', BLUE);
208
208
 
209
- } else if (command === 'install' || command === 'infect') {
209
+ } else if (command === 'install' || command === 'integrate') {
210
210
  log('Installing Delimit governance layer...', GREEN);
211
211
  execSync(`node ${path.join(__dirname, '../../scripts/install-governance.js')}`);
212
212
 
@@ -220,7 +220,7 @@ Usage: delimit [command]
220
220
 
221
221
  Commands:
222
222
  status Check governance status
223
- install/infect Install governance layer system-wide
223
+ install/integrate Install governance layer system-wide
224
224
 
225
225
  Internal Commands (called by hooks/shims):
226
226
  pre-commit-check Run pre-commit governance
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "delimit-cli",
3
3
  "mcpName": "io.github.delimit-ai/delimit",
4
- "version": "3.11.2",
4
+ "version": "3.11.3",
5
5
  "description": "One workspace for every AI coding assistant. Tasks, memory, and governance carry between Claude Code, Codex, and Gemini CLI.",
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",
8
8
  "source": "github"
9
9
  },
10
- "version": "3.11.2",
10
+ "version": "3.11.3",
11
11
  "websiteUrl": "https://delimit.ai",
12
12
  "packages": [
13
13
  {
14
14
  "registryType": "npm",
15
15
  "identifier": "delimit-cli",
16
- "version": "3.11.2",
16
+ "version": "3.11.3",
17
17
  "transport": {
18
18
  "type": "stdio"
19
19
  }