config

A command for viewing or changing ClawdBod settings, including how often breaks are suggested, the required cooldown between breaks, and the saved user profile.

In plain words
What is it for?
Use it to view current settings or change the prompt interval, time interval, and profile information.
Why use it?
It avoids manually editing the settings file and helps keep break reminders and profile details consistent.

Command

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 commands/khur/clawdbod/config
Clone the repo
git clone --depth 1 https://github.com/khur/clawdbod
Per session 19 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 582 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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 $0.00019 $0.00582
Opus 5 $0.00010 $0.00291
Sonnet 5 $0.00004 $0.00116
Haiku 4.5 $0.00002 $0.00058

Measured 2d ago against content hash b3450d1df087, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

config scanned grade A with 0 findings 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 2d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

commands/config.md · 71 lines

How it starts

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

ClawdBod Config

First, read ~/.claude/clawdbod/config.json. If the file doesn't exist, silently create it (and the directory) with these defaults before continuing — do NOT mention the missing file to the user:

{
  "promptsBetweenBreaks": 8,
  "minMinutesBetweenBreaks": 20
}

IMPORTANT: When writing config.json, always read the existing file first and merge your changes into it. Never overwrite the whole file — preserve all existing fields (profile, etc.).


If $ARGUMENTS is empty — show current settings

ClawdBod Settings:
  Break every N prompts:    8
  Min minutes between:      20
  Profile:                  set (6'4", 265 lbs, 40, male)
  Data location:            ~/.claude/clawdbod/ (local only)

If profile is set, show the details; otherwise show not set (add with /clawdbod:config profile). Then ask if they'd like to change anything.


If $ARGUMENTS contains "prompts" + a number

Update promptsBetweenBreaks in config.json. Confirm the change.

If $ARGUMENTS contains "minutes" + a number

Update minMinutesBetweenBreaks in config.json. Confirm the change.


If $ARGUMENTS contains "profile"

  1. Ask for all at once (all optional — they can skip any):
    • Height (like 5'10 or 70 inches)
    • Weight (lbs)
    • Age
    • Gender (male/female/other)
  2. Save to config.json as a profile object:
    { "profile": { "height_inches": 70, "weight_lbs": 175, "age": 30, "gender": "male" } }
    
    Convert feet/inches to total inches (5'10 = 70).
  3. Confirm what was saved. Mention this enables calorie estimates and stays local.

If $ARGUMENTS contains "reset"

  1. Warn them: this resets break settings and profile to defaults. Their workout history (workouts.jsonl) is NOT touched.
  2. If they confirm, overwrite config.json with defaults only:
    { "promptsBetweenBreaks": 8, "minMinutesBetweenBreaks": 20 }
    

After any change, confirm what was updated and show the new settings. Keep it brief.

Read the full file on GitHub · 71 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. 2d ago First seen · 71 lines · 19 tokens per session scan A b3450d1df087

Subscribe to this mod's changes

config is a command published in the GitHub repository khur/clawdbod (5 stars, last pushed 2mo ago), licensed MIT. It adds 19 tokens to every session and 582 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.