From Togi
Enable togi friction capture for you alone — this repo or all your repos; teammates unaffected. Use when the user wants to turn on, opt into, or start togi capture.
How this skill is triggered — by the user, by Claude, or both
Slash command
/togi:enableThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
If this skill was invoked with the argument `repo` or `all` (e.g. by `/togi:setup`), skip the next question and apply that scope directly.
If this skill was invoked with the argument repo or all (e.g. by /togi:setup), skip the next question and apply that scope directly.
Otherwise, use AskUserQuestion to ask: "Enable friction capture at which scope?" Options: This repo only / All my repos.
repo)mkdir -p .claude
touch .claude/settings.local.json
jq -s '(.[0] // {}) | .env.TOGI_ENABLED = "1"' .claude/settings.local.json > .claude/settings.local.json.tmp \
&& mv .claude/settings.local.json.tmp .claude/settings.local.json
Then output:
Friction capture is enabled for you in this repo — teammates are unaffected.
This also overrides a global opt-out, for this repo only.
Turn it off any time with /togi:disable.
all)touch ~/.claude/settings.json
jq -s '(.[0] // {}) | .env.TOGI_ENABLED = "1"' ~/.claude/settings.json > ~/.claude/settings.json.tmp \
&& mv ~/.claude/settings.json.tmp ~/.claude/settings.json
Then output:
Friction capture is enabled for you in all repos on this machine — teammates are unaffected.
Exception: repos where you disabled togi individually keep their own setting — run /togi:enable in those repos too.
Turn it off in a single repo by running /togi:disable there, or run /togi:disable and choose `All my repos` to turn it off globally.
npx claudepluginhub gwenneg/togi --plugin togiProvides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.