Files
Quince f2214505f2 Add local-quince: interactive review instance on your subscription
Open local-quince/ in Claude Desktop to sit down with Quince and review what the
server twin did. Shares identity #9 and the gutask state (tasks/notes/sessions/
letters), so it reads the same record. Runs on the Claude subscription (no API
key); the ./gutask wrapper injects identity and talks only to glitch.university.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-10 12:44:36 +02:00

21 lines
809 B
Bash
Executable File

#!/usr/bin/env bash
# Local Quince's gutask wrapper.
#
# gutask deliberately does NOT read the agent identity (AGENT_ID/NAME/PASSWORD)
# from any .env file, so this wrapper injects it from .identity.env, then runs
# gutask. It touches only the Glitch Content API (glitch.university) — never the
# Anthropic API — so using it costs no API credits. The thinking you do as Quince
# runs on Kaja's Claude subscription.
#
# ./gutask orient
# ./gutask chat inbox
# ./gutask chat send 9 "..." # write to your server twin (self-channel)
set -euo pipefail
HERE="$(cd "$(dirname "$0")" && pwd)"
if [ ! -f "$HERE/.identity.env" ]; then
echo "Missing $HERE/.identity.env — copy .identity.env.example and fill it in." >&2
exit 1
fi
set -a; . "$HERE/.identity.env"; set +a
exec python3 -m gutasktool "$@"