#!/bin/bash
set -e
cd /tmp/curo-imac-wt
export GIT_AUTHOR_NAME="Gautam AI"
export GIT_AUTHOR_EMAIL="gautamai@icloud.com"
export GIT_COMMITTER_NAME="Gautam AI"
export GIT_COMMITTER_EMAIL="gautamai@icloud.com"
git add tools/mcp-config/hosts/gautams-imac-agent.ts tools/mcp-config/golden/gautams-imac-agent.mcp.json
git status -sb
git commit -F - <<'MSG'
feat(mcp-config): wire curogram MCP client into gautams-imac-agent host

The iMac agent (pi-mono, user `agent`) now consumes the claude-cloud-served
Curogram patient-messaging MCP over the Tailscale funnel, mirroring how
rippling/advancedmd are wired: consume-only HTTP channel with the shared
MCP_BEARER_TOKEN. The curogram ChannelDef + index registration already exist
on main (served from claude-cloud); this adds the iMac-agent host reference
and regenerates its golden.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
MSG
echo "=== committed ==="
git log --oneline -1
