← ClaudeAtlas

offlisted

Turn squirrel-mode's formatting off for the rest of the current session only. Only for an explicit /squirrel:off invocation.
thgMatajs/squirrel-mode · ★ 2 · API & Backend · score 70
Install: claude install-skill thgMatajs/squirrel-mode
# squirrel-mode off /squirrel:off suppresses squirrel-mode's base rules for the rest of the current session only. It does not touch any other session, and it does not change the profile. ## Why this cannot flip a flag directly (ADR-0005) A running skill has no way to learn this session's own session id - Claude Code hands that value to hooks on every prompt, never to a skill. So this skill cannot name the one file that would suppress this exact session; it can only leave a note for the hook that runs on the next prompt, and let that hook - which does see the real session id - claim it. ## Find the session off-token and working directory first Your context already contains two lines, injected at the start of this session: - `Session off-token: <token>` - the opaque token this skill embeds in the sentinel filename. Copy that exact string. Do not invent a token, do not shorten it, do not substitute a random suffix of your own: the `UserPromptSubmit` hook recomputes the same value from the session id it receives on stdin, and a token you invent is one it cannot match. - `Session working directory: <value>` - the exact value written into the sentinel's contents (legacy dual-match / cwd path). Never determine this yourself by running a command, inspecting your own state, or any other means: a value you determine yourself can disagree with the one the claiming hook compares against on the legacy path (a symlinked project path, a trailing slash, a different shell context), and