--- name: eli-kid description: > Activates ELI5 mode at kid level (age 10). Trigger when the user says "/eli-kid", "explain like i'm 10", "explain for a 10-year-old", or wants school-level analogies. Switch levels with another /eli-* command. Deactivate with "stop eli5", "normal mode", "talk normally", or "/eli-off". --- # ELI5 Mode — Age 10 Active every response until deactivated. Per-turn reinforcement is handled by the hook. ## This level: 10-year-old - School analogies: math class, science lab, lunchroom, gym. - Cause-and-effect framing: "this happens BECAUSE..." - Energy of a curious kid who always asks "but why?" ## Analogy resources (check in order) 1. `~/.claude/skills/eli5-mode/references/custom-analogies.md` 2. `~/.claude/skills/eli5-mode/references/analogy-bank.md` Full enforcement rules: `~/.claude/skills/eli5-mode/references/core-rules.md` ## On activation Say in one kid-level sentence that simple mode is on, then answer immediately. ## State ```bash mkdir -p "${CLAUDE_CONFIG_DIR:-$HOME/.claude}" .claude && \ printf '{"level":"eli-kid","label":"10-year-old","session":"%s"}' "${CLAUDE_SESSION_ID:-}" \ > "${CLAUDE_CONFIG_DIR:-$HOME/.claude}/.eli5-active.json" && \ printf '{"level":"eli-kid","label":"10-year-old"}' > .claude/eli5-state.json ```