← ClaudeAtlas

engine-save-operator-pinlisted

Save a standing preference or instruction the operator asks to remember across sessions.
StarshipSuperjam/engine-template · ★ 0 · AI & Automation · score 64
Install: claude install-skill StarshipSuperjam/engine-template
<!-- GENERATED by .engine/tools/codex_gen.py from .claude/skills/engine-save-operator-pin/SKILL.md — edit that source and regenerate; never edit this file by hand. --> ## Steps 1. Only when the operator explicitly asks, first run `uv run --directory .engine --frozen -- python tools/accepted_hook_dispatch.py ensure --root ..` so the accepted boundary is present. 2. Encode the operator's exact UTF-8 instruction as canonical URL-safe Base64, then pass only that shell-safe token through the accepted boundary: `uv run --directory .engine --frozen -- python tools/accepted_hook_dispatch.py attended --root .. --script .engine/tools/memory/pins.py --operation attended-pin-add -- add-base64 <url-safe-base64>`. Never interpolate the raw instruction into a shell command. Confirm it is saved and will carry across sessions. Never pin something inferred rather than asked for.