Combined from three feature branches: - feature/hw-probe-agent-bootstrap: JSON hardware probe (clawdie-hw-probe), remove desktop icon, update START-HERE.txt - chore/0.12.0-model-fix-bump: deepseek-v4-pro model names, version 0.12.0 - feature/mother-mcp-infra: build-colibri.sh MCP tool, colibri-mcp-ssh wrapper
6 lines
318 B
Bash
Executable file
6 lines
318 B
Bash
Executable file
#!/bin/sh
|
|
# Wrapper for SSH forced-command MCP entrypoint.
|
|
# SSH's command="..." restriction replaces the client's command with
|
|
# this script and stores the original in $SSH_ORIGINAL_COMMAND.
|
|
# Pass it through to colibri-mcp so `ssh colibri@mother tools` works.
|
|
exec /usr/local/bin/colibri-mcp ${SSH_ORIGINAL_COMMAND}
|