CC Safety Net
CC Safety Net hooks into coding agent CLIs (Claude Code, Codex, Cursor, Gemini CLI, and others)
and blocks destructive commands and secret access before they run. The cc-safety-net CLI
inspects and controls that protection. Run it as npx -y cc-safety-net.
Learn the current CLI
The installed CLI is the authority for command syntax. Do not guess flags.
npx -y cc-safety-net --help
npx -y cc-safety-net help <command>
Run npx -y cc-safety-net rule doc and treat that output as the complete source of truth for
rulebook schema, paths, GitHub sources, matching behavior, and validation.
These commands are read-only and safe to run for discovery: --help, --version, status,
doctor, logs (without --prune-legacy), explain, rule list, rule verify, rule doc,
policy check, help. Every other command mutates configuration or installed integrations; run
those only as part of a workflow below.
Core model
- Built-in guards always apply. Custom rules only add restrictions; nothing in rule config can bypass built-in CC Safety Net protections.
- Config files (
rule.json) list rulebook sources. Rule definitions live inrulebook.json, not directly inrule.json. - Three scopes: user (all projects), project (current project only), and shareable GitHub
rulebooks at
.cc-safety-net/rules/<rulebook-name>/rulebook.jsonin a repository. - Rulebooks are live files. The runtime reads each
rulebook.jsonon every tool call, so a saved edit applies to the next command with no sync step. policy.jsonsets the safety level, per-feature toggles, per-rule overrides, and path lists. It has two scopes: the project file.cc-safety-net/policy.json, committed and shared with the team, layered on the user file that applies to every project.- The session safety level is
standard,strict, orparanoid, set per session with theCC_SAFETY_NET_LEVELenvironment variable.
Choose the workflow
- The user asks why a command was blocked, or shows a
BLOCKED by CC Safety Netmessage: explain a decision. - The user thinks a block was wrong: triage a false positive.
- The user wants to add, edit, disable, or migrate blocking rules: configure rules.
- The user wants to change the safety level, toggle a protection, or adjust path lists: configure the policy.
- The user wants CC Safety Net installed into or removed from an agent CLI: manage integrations.
- A rule does not fire, or the user asks whether protection is working: diagnose.
- The user asks how or why the analyzer behaves a certain way, beyond what
explainandrule docshow: answer from the source.
Explain a decision
- Get the exact blocked command. If the user does not have it, find it with
npx -y cc-safety-net logs(narrow with--project .,--agent <name>, or--since <days>). - Pass the exact command to
npx -y cc-safety-net explainas one literal argument. Prefer an argv-capable tool; when invoking through a shell, shell-escape the whole command as one argument. Never interpolate raw command text into double quotes:$(), backticks, and variables would expand beforeexplainreceives it. Add--cwd <path>when the decision depends on the working directory. Once received,explainanalyzes the string and never executes it. - Read the trace: how the command was split, which rule matched, and the RESULT status and
reason.
explainexits 0 for both allowed and blocked verdicts; read the verdict from the output, not the exit status. - Report the reason in plain language. For a genuine hazard, suggest the safer alternative the
reason names, such as
git stashbeforegit reset --hard.
Triage a false positive
- List recent suspect denials with
npx -y cc-safety-net logs --suspect --since 7, or fetch one entry withnpx -y cc-safety-net logs --id <id>. - Reproduce the decision with
explainand read which rule fired. - If a custom rule fired, fix that rulebook: disable or reword it with an override, or edit the
rule (see configure rules), then re-run
explainto confirm the new verdict. - If a built-in rule fired, no rule edit can relax it. Check the reason for a documented escape
hatch, such as
CC_SAFETY_NET_WORKTREE=1for local git discards in linked worktrees, orrule wrapper addwhen a trusted transparent wrapper hid the real command from the analyzer. Pass the wrapper name as a separate argv value, or shell-escape it as one argument. If the user explicitly wants that built-in rule off, read its id from theruleIdfield ofexplain --jsonand propose a per-rule policy override (see configure the policy). Otherwise explain the risk the rule guards against and suggest reporting the case at https://github.com/kenryu42/cc-safety-net/issues.
Configure rules
Use information already provided in the user's prompt. Ask only when the scope, action, rule intent, merge behavior, or target command is unclear.
- Determine the requested scope from the prompt when possible:
- User: applies to all projects.
- Project: applies only to the current project.
- GitHub: edits or creates a shareable rulebook structure in the current repository.
- Determine whether to add a rule, edit a rule, disable a rule, override a reason, trust a transparent wrapper, migrate legacy rules, or explain custom rules from the prompt when possible.
- Inspect existing configs before modifying installed local rules:
- Run
npx -y cc-safety-net rule verify - Run
npx -y cc-safety-net rule list
- Run
- Inspect relevant project files only when the user asks for rule suggestions or the requested rule depends on project context. Look at manifests, scripts, task runners, CI, infrastructure, database, migration, and deployment files that explain risky commands.
- Convert the request into valid CC Safety Net JSON using
rule doc.- For User or Project scope, add or edit the selected local
rule.jsonand<rulebook-name>/rulebook.json. - For GitHub scope, add or edit
.cc-safety-net/rules/<rulebook-name>/rulebook.jsonin the current repository. - Do not offer to add a GitHub source with
owner/repo; installing rules from a GitHub source is outside this workflow. - If the user explicitly asks to install existing GitHub rulebooks instead of authoring them,
use
npx -y cc-safety-net rule add owner/repo --only <rulebook...>; omit--onlyonly when they want every rulebook, and add--ref <ref>only when they name a non-default ref.rule add --only <rulebook...>with no source selects from the officialcc-safety-net/rulebooksrepository, whose curated rulebooks block destructive Terraform, AWS, gcloud, and Azure CLI operations; prefer installing one of those over authoring when it already covers the request. - For transparent wrappers, prefer
npx -y cc-safety-net rule wrapper addwith the trusted wrapper name passed as a separate argv value, or shell-escaped as one argument, over editingrule.jsonby hand.
- For User or Project scope, add or edit the selected local
- Preserve unrelated existing rulebook sources, overrides, and rulebooks. Preview proposed JSON before writing when creating a new rulebook, merging with existing config, or resolving ambiguity.
- For GitHub rules, ensure the repository layout is
.cc-safety-net/rules/<rulebook-name>/rulebook.json, and ensure the source name, directory name, and rulebooknamematch exactly. - Validate after edits:
- User or Project rules: run
npx -y cc-safety-net rule verifyandnpx -y cc-safety-net rule list. Both commands cover every scope, so neither takes--global. - Shareable GitHub rulebook-only edits: run
npx -y cc-safety-net rule verify. Runlistonly if the rulebook is also installed in localrule.json.
- User or Project rules: run
- If validation fails, show the exact errors and make the smallest fix.
- Confirm the saved paths or GitHub rulebook path and summarize the added or updated rules.
Rule invariants:
- Do not use legacy inline
.safety-net.jsonor~/.cc-safety-net/config.jsonrules. Convert existing legacy files withnpx -y cc-safety-net rule migrate. - Every rule command must be listed in
allowed_commands. Thetestsfixtures are optional;rule verifyevaluatesrulebook_version2 fixtures against the rulebook's own rules, and fixture commands are analyzer input that CC Safety Net never executes. - A blocked fixture, when present, must specify the expected
rule, and that rule must exist in the rulebook. - Local source names are bare names such as
project-rules; do not put filesystem paths inrules. - A saved rulebook is live. There is no pending state and nothing to run afterwards, so verify the edit rather than activating it.
- A missing or invalid rulebook file makes that source inactive, and an unreadable or invalid
rule.jsonmakes every source in its scope inactive: those rules stop applying while other custom rules and built-in protections stay active. Fix the file named in the diagnostic. - A duplicate rulebook name keeps the first claim, user scope before project scope, and ignores the later rulebook.
npx -y cc-safety-net rule add owner/repofetches remote rulebooks, validates them, and vendors each one into<rulebook-name>/rulebook.json;npx -y cc-safety-net rule update [source]re-fetches and overwrites those copies and prints what changed. The runtime never fetches, and a remote source with no vendored file reports thatrule updatehas to vendor it first.rule syncis deprecated: it only migrates lock and cache leftovers from an earlier version. Never run it as a validation or activation step.
Configure the policy
Both policy.json files are protected: you propose the change, the user applies it. Reading them
is allowed, writing them is not.
policy.json fields, all optional except version: 1 (policy check reports every schema
error, so validate against it rather than guessing further fields):
safety.level:standard,strict, orparanoid.safety.overrides: booleans forfail_closed,paranoid_rm, andparanoid_interpretersthat pin one capability apart from the level.workflow.worktree_mode: boolean, allows local git discards in linked worktrees.destructive_command_protectionandsecret_protection: anenabledboolean, and per-ruleoverridesmapping a built-in rule id (git.reset-hard,secret.basename.env) to"on"or"off". Get the id for a blocked command from theruleIdfield ofexplain --json.destructive_command_protection.allow_paths: absolute or~/paths where recursive delete targets are permitted.secret_protection.allow_paths: exact user-managed paths exempted from secret protection, globs rejected.secret_protection.deny_paths: extra paths protected like built-in secrets.audit.retention_days: days of audit history to keep, user scope only.
- Inspect the current state:
npx -y cc-safety-net statusfor the effective policy and the file paths it loaded,npx -y cc-safety-net rule listfor custom rules, plus whatever project context the request depends on. Read an existingpolicy.jsonbefore proposing changes to it. - Write the proposed policy JSON to an unprotected path such as
policy-proposal.json. For project scope, set only the fields the team intends to control; an unset field inherits from the user policy, andapplywrites only the fields the proposal sets. Applying replaces the target file, so the proposal is the complete policy, not a patch. Audit settings are user scope only; a project proposal cannot set them. - Run
npx -y cc-safety-net policy check policy-proposal.jsonand show the user the printed diff. Add--globalto target the user policy instead of the project one. Fix every reported error and re-check until it passes. - Ask the user to run the apply in their own terminal and quote the exact command:
npx -y cc-safety-net policy apply policy-proposal.json(with--globalwhen that is the scope). It confirms interactively, there is no--yesflag, and agent invocations ofpolicy applyare blocked by design, so never run it, wrap it, or write the file yourself. - Once the user confirms they applied it, run
npx -y cc-safety-net statusand report the effective policy, including any project scope deltas it prints.
Manage integrations
- Run
npx -y cc-safety-net doctorfirst. It reports each supported platform as detected, configured, and verified, and names outdated installs with the exact repair command. - Install with an explicit target flag, such as
npx -y cc-safety-net install --claude-code. Runnpx -y cc-safety-net help installfor the full target list. Bareinstallopens an interactive picker; leave that for the user's own terminal. - Run
npx -y cc-safety-net@latest updateto update every installed integration at once. - Uninstall only when the user explicitly asks to remove protection, with the matching target flag.
- After any install, update, or uninstall, run
doctoragain and confirm the affected platform rows read as verified.
Diagnose
npx -y cc-safety-net statusshows what the runtime enforces right now, including a degradedpolicy.jsonthatrule listdoes not report.npx -y cc-safety-net doctorverifies the installation: platform detection and hook config, a synthetic guard self-test, and configuration scopes. Use--jsonwhen parsing the result.- When a custom rule does not fire, run in order:
rule verify,rule list, then re-test the command withexplain.
Answer from the source
For questions the CLI output cannot settle, such as why the analyzer treats a construct a certain way or whether a gap is a known limitation, read the source code of the installed version.
Get
<version>fromnpx -y cc-safety-net --version.Locate the repository. Plugin installs ship the full repository, and this skill file lives at
<repo>/skills/cc-safety-net/SKILL.mdinside it, so the repository root is two directories above the skill file. Use the candidate only if itspackage.jsonhas"name": "cc-safety-net"and version<version>, and asrc/directory exists next to it. If the package version differs, rundoctorto report the outdated integration, then treat the candidate as unavailable and continue to the next step.If no matching local root exists (skill-only installs, a mismatched plugin, or guidance without a file path), resolve the immutable commit recorded with the published package using
npm view "cc-safety-net@<version>" gitHead. Require a 40-character lowercase hexadecimal commit and fetch that exact commit into a fresh owner-only temporary directory:set -euo pipefail git_head=$(npm view "cc-safety-net@<version>" gitHead) [[ $git_head =~ ^[0-9a-f]{40}$ ]] || { echo "Invalid published gitHead" >&2; exit 1; } source_dir=$(mktemp -d "${TMPDIR:-/tmp}/cc-safety-net-v<version>-XXXXXXXX") trap 'rm -rf -- "$source_dir"' EXIT chmod 700 "$source_dir" git -c init.templateDir= init "$source_dir" git -c core.hooksPath=/dev/null -C "$source_dir" fetch --depth 1 https://github.com/kenryu42/cc-safety-net "$git_head" git -c core.hooksPath=/dev/null -C "$source_dir" checkout --detach "$git_head" [[ $(git -C "$source_dir" rev-parse HEAD) == "$git_head" ]] || { echo "Source checkout mismatch" >&2; exit 1; } printf 'Source checkout: %s\n' "$source_dir" trap - EXITNever answer from
main; it can contain unreleased behavior the installed version does not have.Read
docs/first;residual-risk.mdandsecret-protection-known-limitations.mdexist to answer whether something is a known gap. For behavior questions, continue intosrc/analyzer,src/guards, andsrc/rules.State in the answer which version the source came from. Treat the located source as read-only reference; do not edit, build, or run it.
Remove a temporary checkout after the source inspection:
rm -rf -- "<source_dir>".
Safety rules
- Help the user operate CC Safety Net, never evade it. Do not change levels, uninstall, edit config, or propose a policy that weakens protection to get a blocked command through unless the user explicitly asks for that outcome and understands what the block guards against.
- Never run
hook; it is the integration entry point that reads hook JSON from stdin, not a user-facing command. logs --prune-legacypermanently deletes legacy logs. Run it only on an explicit request, and run it with--dry-runfirst.rule remove --delete-sourcedeletes the local source directory. Ask before using it.- Prefer
gui --no-openand give the user the URL instead of opening a browser from a session. - If a command prints an
UPDATE_AVAILABLE:line, ask the user once whether to runnpx -y cc-safety-net@latest update, continue the workflow without waiting either way, and do not raise it again.