One unsigned memo, infd-20260921-b01, accepting the Glas Anthropic spend envelope. The approval-create tool now takes an explicit batch, receipt and expected count; defaults keep the 2026-09-14 sitting unchanged. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Assistant: claude-code Assistant-Model: opus Assistant-Process: 272244@bnt-lap001 Assistant-Session: c8962fa7-b290-47df-865f-403ddb6c77e9
8 lines
378 B
Bash
Executable file
8 lines
378 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Silent attended child. Outcome is the receipt file, not stdout.
|
|
set -euo pipefail
|
|
export INFD_APPROVAL_ORIGIN="${INFD_APPROVAL_ORIGIN:-http://127.0.0.1:18281}"
|
|
exec /home/worsch/informed-decision/.venv/bin/python -B \
|
|
/home/worsch/informed-decision/tools/create_sitting_approvals.py \
|
|
--approval-origin "$INFD_APPROVAL_ORIGIN" "$@" \
|
|
>/dev/null 2>&1
|