delimit-cli 3.8.1 → 3.8.2
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-setup.js +5 -0
- package/package.json +1 -1
- package/server.json +3 -3
package/bin/delimit-setup.js
CHANGED
|
@@ -225,6 +225,11 @@ async function main() {
|
|
|
225
225
|
fs.writeFileSync(GEMINI_CONFIG, JSON.stringify(geminiConfig, null, 2));
|
|
226
226
|
log(` ${green('✓')} Added delimit to Gemini CLI (${GEMINI_CONFIG})`);
|
|
227
227
|
}
|
|
228
|
+
// Add governance instructions
|
|
229
|
+
if (!geminiConfig.customInstructions || !geminiConfig.customInstructions.includes('delimit_ledger_context')) {
|
|
230
|
+
geminiConfig.customInstructions = 'Delimit MCP is installed. On every session start, call delimit_ledger_context to check for open tasks. If new project, call delimit_scan. Track all work via the ledger.';
|
|
231
|
+
fs.writeFileSync(GEMINI_CONFIG, JSON.stringify(geminiConfig, null, 2));
|
|
232
|
+
}
|
|
228
233
|
} catch (e) {
|
|
229
234
|
log(` ${yellow('!')} Could not configure Gemini CLI: ${e.message}`);
|
|
230
235
|
}
|
package/package.json
CHANGED
package/server.json
CHANGED
|
@@ -2,18 +2,18 @@
|
|
|
2
2
|
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
3
|
"name": "io.github.delimit-ai/delimit",
|
|
4
4
|
"title": "Delimit",
|
|
5
|
-
"description": "
|
|
5
|
+
"description": "One workspace for every AI coding assistant. Shared tasks, memory, and governance.",
|
|
6
6
|
"repository": {
|
|
7
7
|
"url": "https://github.com/delimit-ai/delimit",
|
|
8
8
|
"source": "github"
|
|
9
9
|
},
|
|
10
|
-
"version": "3.
|
|
10
|
+
"version": "3.8.1",
|
|
11
11
|
"websiteUrl": "https://delimit.ai",
|
|
12
12
|
"packages": [
|
|
13
13
|
{
|
|
14
14
|
"registryType": "npm",
|
|
15
15
|
"identifier": "delimit-cli",
|
|
16
|
-
"version": "3.
|
|
16
|
+
"version": "3.8.1",
|
|
17
17
|
"transport": {
|
|
18
18
|
"type": "stdio"
|
|
19
19
|
}
|