git:20260812.0d1d94d to git:20260922.fc1f7a1

2 added, 2 removed. Audit A to A.

---
name: gjc-sdk-author
description: Author trusted-local TypeScript and Python scripts that operate GJC sessions through the broker-bound CLI.
---
# Author broker-bound GJC session scripts
Start from the owned templates in this skill directory:
- `templates/direct-sdk.ts`
- `templates/direct-sdk.py`
## Authoring contract
- Invoke the documented `gjc sdk session` CLI as a child process. It routes live controls through `SessionRouter` and lifecycle mutations through `SessionLifecycleService` and the Broker.
- Require explicit repository and session-ID inputs. Run the CLI with the repository as its working directory; do not infer a session from local state.
- Never scan `.gjc/state/sdk`, parse endpoint records, read endpoint credentials, or open a raw per-session WebSocket.
- - Use only `gjc sdk session raw query <sessionId> --query <query>` for fixed inspection queries and `gjc sdk session raw control <sessionId> --op <operation> --json-input <object> --confirm` for fixed controls.
+ - Use only `gjc sdk session raw query <sessionId> --query <query> --json` for fixed inspection queries and `gjc sdk session raw control <sessionId> --op <operation> --json-input <object> --confirm --json` for fixed controls. Raw leaves do not accept `--repo`; preserve the selected repository as subprocess `cwd` instead.
- Pass CLI arguments as an argv array, never through a shell command string.
- Keep query and control operation names on fixed allowlists. Reject secret-shaped input fields before dispatch.
- Require an immediately preceding, single-use human approval before every mutation.
- Use the template's nonce-bearing operation/session/input-bound standard-input challenge; never replace it with a free boolean or reusable approval.
- Send no CLI request after denial or cancellation.
- Bind durable workflow controls to the expected session ID.
- - Render only parsed, redacted CLI JSON. Discard raw CLI stderr and never render credentials.
+ - Request `--json` explicitly: successful session JSON is unchanged, but default ordinary failures are text on stderr. Parse stdout even on nonzero exit. Preserve the trusted CLI's bounded `gjc.command-error` version 1 envelope, including outcome certainty, exact references, evidence availability and continuation; do not redact an idempotency reference merely because its kind contains “key”. Keep malformed/unstructured responses generic and never render raw CLI stderr or credentials. Inspection may report independent query failures alongside successes; it must not discard structured reconciliation evidence. No failure authorizes blind replay or automatic recovery.
- Keep broader lifecycle orchestration behind `gjc sdk session raw global` with a stable idempotency key or an SDK-core lifecycle facade; the canonical templates do not invent lifecycle routing.
- State that approval is a trusted-local procedural safeguard, not capability isolation; Broker and Router retain attachment authority.
Generated user scripts belong in the user's workspace. Only the two canonical templates are owned by this clean-generated bundle.