Optimus Permissions
Under Codex, stop without changing files: this skill configures Claude Code only. Recommend configuring Codex's own sandbox and approval policy instead.
Configure permission rules and a path-restriction hook so Claude Code agents can work autonomously inside the project without constant prompts, while destructive operations outside it stay gated.
Security model in brief: the installed hook prompts on writes and blocks deletes outside the project (Claude's memory store and session scratchpad are exempt), asks before editing any precious unversioned file and blocks deleting the unrecoverable ones (a backup or IDE scratch file only asks), and blocks history-modifying git operations on protected branches. Inside the project, operations not on the deny list run without prompts.
Step 1: Detect existing configuration
- If
.claude/settings.jsonexists, read it in full — it will be preserved during the merge. - Note whether
.claude/hooks/restrict-paths.shalready exists (fresh install vs update — report which in Step 4). - If
.mcp.jsonexists at the project root, extract the top-level MCP server names for Step 3.
Step 2: Install the path-restriction hook
If an existing .claude/hooks/restrict-paths.sh differs from the template, list the user's modifications (e.g., a customized PROTECTED_BRANCHES array or extra is_precious() patterns) and use AskUserQuestion: Re-apply (Recommended) — install the fresh template, then re-apply the listed customizations (and only those) on top — or Discard them.
Copy $CLAUDE_PLUGIN_ROOT/skills/permissions/templates/hooks/restrict-paths.sh to .claude/hooks/restrict-paths.sh (creating the directory if needed), overwriting any existing version. Copy the contents exactly — never modify the template during copy.
Step 3: Create or update settings.json
Base configuration: $CLAUDE_PLUGIN_ROOT/skills/permissions/templates/settings.json.
If .claude/settings.json does not exist, create it from the template. If it exists, merge — read, merge, write, never blind-overwrite:
- permissions.allow — add template entries not already present. Never remove existing entries.
- permissions.deny — add template entries not already present. If the existing settings have git deny entries (git as a command, not part of words like
github) beyond the template's set, they may block the feature-branch workflow (commit/push) that skills like /optimus:tdd need — list them and useAskUserQuestion: Replace with template set (Recommended) — remove only the extra git deny entries and use the template's (branch protection is still enforced by the hook); non-git deny entries untouched — or Keep all. - hooks.PreToolUse — add the template's hook entry, appending to any existing array; skip if an entry already references
restrict-paths.sh. - Preserve everything else — existing PostToolUse hooks, custom sections, all unrelated configuration.
In either case, if .mcp.json was found, add mcp__<server-name> entries to permissions.allow for each server. The result must be valid JSON. If the existing file is not valid JSON, do not repair or overwrite it silently — show the parse problem and ask the user how to proceed.
Step 4: Verify and report
Fix any issue before reporting:
.claude/hooks/restrict-paths.shis an exact copy of the template —diffagainst it and runbash -non the installed copy. The only acceptable differences are customizations the user chose to re-apply in Step 2; on any other mismatch, re-copy the template (a mangled hook fails open at runtime)..claude/settings.jsonhas a PreToolUse entry that resolves to the installedrestrict-paths.sh— a merge that drops or misspells it leaves the project unprotected with no other symptom.- Scan for precious unversioned files: derive the patterns from the
is_precious()function in the just-installed hook (the single source of truth — never hardcode the list) and runfind . -maxdepth 4with one-nameclause per pattern, excluding.git/,node_modules/,obj/, andbin/. Report untracked matches as protected, marking any that match onlyis_recoverable_precious_name()(backups, IDE scratch) as edit-prompt only — those stay deliberately deletable. If the scan finds sensitive-looking unversioned files no pattern matches, offer to add custom patterns tois_precious()in the installed hook — a re-run detects and offers to re-apply such edits, but permanent patterns belong in the plugin-source template.
Report: files created or updated (fresh install vs update), allow/deny counts, detected MCP servers, and the one-line security summary from the top of this skill. Point to this skill's README for the trust model, the auto-mode layering, and the not-OS-sandboxing caveat.
If .claude/CLAUDE.md does not exist, recommend /optimus:init next; otherwise /optimus:unit-test to establish coverage or /optimus:tdd to start developing. Suggest a fresh conversation for it.