delimit-cli 3.14.23 → 3.14.25
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 +9 -5
- package/package.json +1 -1
package/bin/delimit-setup.js
CHANGED
|
@@ -609,10 +609,9 @@ fi
|
|
|
609
609
|
DELIMIT_HOME="\${DELIMIT_HOME:-$HOME/.delimit}"
|
|
610
610
|
TOOL_COUNT="0"
|
|
611
611
|
if [ -f "$DELIMIT_HOME/server/ai/server.py" ]; then
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
TOOL_COUNT=$((TOTAL - OPS - INTERNAL))
|
|
612
|
+
DECORATED=$(grep -c '@mcp.tool' "$DELIMIT_HOME/server/ai/server.py" 2>/dev/null || echo "0")
|
|
613
|
+
IMPL=$(grep -c 'mcp.tool()(' "$DELIMIT_HOME/server/ai/server.py" 2>/dev/null || echo "0")
|
|
614
|
+
TOOL_COUNT=$((DECORATED + IMPL))
|
|
616
615
|
fi
|
|
617
616
|
echo ""
|
|
618
617
|
printf " \${PURPLE}\${BOLD} ____ ________ ______ _____________\${RESET}\\n"
|
|
@@ -642,7 +641,12 @@ done
|
|
|
642
641
|
REAL=$(PATH=$(echo "$PATH" | tr ':' '\\n' | grep -v '.delimit/shims' | tr '\\n' ':') command -v ${toolName} 2>/dev/null)
|
|
643
642
|
[ -x "$REAL" ] && exec "$REAL" "$@"
|
|
644
643
|
echo "[Delimit] ${toolName} not found in PATH" >&2
|
|
645
|
-
|
|
644
|
+
case "${toolName}" in
|
|
645
|
+
claude) echo " Install: npm install -g @anthropic-ai/claude-code" >&2 ;;
|
|
646
|
+
codex) echo " Install: npm install -g @openai/codex" >&2 ;;
|
|
647
|
+
gemini) echo " Install: npm install -g @anthropic-ai/claude-code && pip install gemini-cli" >&2 ;;
|
|
648
|
+
*) echo " Install ${toolName} first" >&2 ;;
|
|
649
|
+
esac
|
|
646
650
|
exit 127
|
|
647
651
|
`;
|
|
648
652
|
|
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.25",
|
|
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": [
|