config

config is a skill for Claude Code from godshiba/genesis. It costs 148 tokens per session (1,928 once invoked), scanned B, original, MIT.

An interactive configuration tool for GENESIS checks that run during coding work. It changes settings such as session, commit, TODO, configuration, resume, and GitHub-mirroring checks.

In plain words
What is it for?
It helps review current settings and turn supported GENESIS gates on, set them to warnings, or turn them off.
Why use it?
It lets developers choose whether each check blocks, warns, or stays silent without editing JSON files or memorising environment variables.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: reads .claude/ paths; names the AskUserQuestion tool.

Part of the genesis plugin — 10 skills, 3 agents shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/godshiba/genesis/config
Any agent
npx skills add godshiba/genesis --skill config
Clone the repo
git clone --depth 1 https://github.com/godshiba/genesis

Made for: Claude Code.

Or install genesis, the plugin that ships this one along with the rest of its 10 skills, 3 agents.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for config

README.md
[![agentmods](https://agentmods.dev/badge/skills/godshiba/genesis/config.svg)](https://agentmods.dev/skills/godshiba/genesis/config)
Your own site
<a href="https://agentmods.dev/skills/godshiba/genesis/config"><img src="https://agentmods.dev/badge/skills/godshiba/genesis/config.svg" alt="Measured on agentmods" height="20"></a>
Per session 148 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,928 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00148 $0.01928
Opus 5 $0.00074 $0.00964
Sonnet 5 $0.00030 $0.00386
Haiku 4.5 $0.00015 $0.00193

Measured 5d ago against content hash 493eb0eaf099, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade B, and why

config scanned grade B with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Reads agent configuration directoriesmediumAgent snooping

.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.

- **Global**: `~/.claude/settings.json` — applies everywhere.
plugins/genesis/skills/config/SKILL.md · 148 lines

How it starts

The opening of the file, as written. The whole thing — 148 lines — stays where its author put it; the contents beside it link to each section on GitHub.

/genesis:config — Configure the gates

GENESIS ships with every gate on. This command changes that without making you hand-edit JSON or memorize an env var: it reads the current state, walks each gate, and writes your choice into settings.json under "env". The hooks re-read the environment when a session starts, so a change lands next session.

The seven gate toggles and their legal values:

Variable Values Gate
GENESIS_G7 on / warn / off G7 session gate — the only one that blocks
GENESIS_G1 on / warn / off G1 unregistered-file nudge
GENESIS_G3 on / warn / off G3 orphan TODO/FIXME nudge
GENESIS_G2_CONFIG on / warn / off G2 quality-config guard
GENESIS_G2 on / off G2 pre-commit validation reminder
GENESIS_PRECOMPACT on / off Pre-compaction snapshot
GENESIS_RESUME on / off Session-resume loader

Every one defaults to on; an unset variable is on. warn keeps the gate's message but never blocks or interrupts (exit 0); off is silent. Only the first four support warn — the bottom three are on/off. The master kill switch GENESIS_OFF=1 silences every hook at once; do not offer it in the walk, but honor it if the user explicitly asks to turn everything off.

Beyond the gates, this command also sets one capability toggle: GENESIS_GITHUB (on/off, default off) — whether /genesis:issue mirrors issues to GitHub. It is not a gate (it gates a side-effecting, opt-in integration), so it is handled on its own in step 3.

1. Read the current state

Two files matter, and a value in the second overrides the first inside that repo:

  • Global: ~/.claude/settings.json — applies everywhere.
  • Per-project: <repo>/.claude/settings.json — overrides the global value in that repo only.

Read both (either may be missing — treat a missing file or key as the default on). For each gate compute the effective value: project override, else global, else default. Print a compact dashboard before asking anything:

Read the full file on GitHub · 148 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 148 lines · 148 tokens per session scan B 493eb0eaf099

Subscribe to this mod's changes

config is a skill published in the GitHub repository godshiba/genesis (2 stars, last pushed 2mo ago), licensed MIT. It adds 148 tokens to every session and 1,928 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it B with 1 finding (reads agent configuration directories). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.