--- description: Sync your Scribe stored Processes into auto-surfacing local skills allowed-tools: Bash(bash:*), Bash(ls:*) --- Regenerate the local skill stubs for your Scribe **Processes** so they auto-surface this session. Each Process becomes a `~/.claude/skills/scribe-proc-/SKILL.md` whose body calls `get_process()` for the live procedure. This normally runs automatically at session start; use it after adding or editing a Process when you want it available immediately (Claude Code live-detects the new skill files within this session — no restart needed). Run the bundled sync script, then list what was synced: ``` bash "${CLAUDE_PLUGIN_ROOT}/hooks/scribe_sync_processes.sh" && ls ~/.claude/skills 2>/dev/null | grep '^scribe-proc-' || echo "no Scribe process skills (no Processes, or Scribe unreachable)" ``` Report which `scribe-proc-*` skills are now present.