delimit-cli 3.14.35 → 3.14.36
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 +2 -0
- package/package.json +1 -1
package/bin/delimit-setup.js
CHANGED
|
@@ -312,6 +312,8 @@ async function main() {
|
|
|
312
312
|
}
|
|
313
313
|
if (fs.existsSync(CODEX_CONFIG)) {
|
|
314
314
|
try {
|
|
315
|
+
// Fix permissions on existing config
|
|
316
|
+
fs.chmodSync(CODEX_CONFIG, 0o644);
|
|
315
317
|
let toml = fs.readFileSync(CODEX_CONFIG, 'utf-8');
|
|
316
318
|
if (toml.includes('[mcp_servers.delimit]')) {
|
|
317
319
|
await logp(` ${green('✓')} Delimit already in Codex config`);
|
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.36",
|
|
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": [
|