config

config is a command for coding agents from josstei/argus-claude. It costs 6 tokens per session (602 once invoked), scanned A, original, MIT.

A settings command for Argus, a code-review tool. It shows review levels and lets you set the default directory to review and the default output format.

In plain words
What is it for?
Use it to view Argus settings or change its default scope and output format.
Why use it?
It keeps review preferences in one place instead of requiring them on every review command.

Command

Part of the argus plugin — 4 commands, 1 agent 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 commands/josstei/argus-claude/config
Clone the repo
git clone --depth 1 https://github.com/josstei/argus-claude

Or install argus, the plugin that ships this one along with the rest of its 4 commands, 1 agent.

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/commands/josstei/argus-claude/config.svg)](https://agentmods.dev/commands/josstei/argus-claude/config)
Your own site
<a href="https://agentmods.dev/commands/josstei/argus-claude/config"><img src="https://agentmods.dev/badge/commands/josstei/argus-claude/config.svg" alt="Measured on agentmods" height="20"></a>
Per session 6 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 602 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.00006 $0.00602
Opus 5 $0.00003 $0.00301
Sonnet 5 $0.00001 $0.00120
Haiku 4.5 $0.00001 $0.00060

Measured 5d ago against content hash 777f3dcb40a9, 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 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.

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 · 112 lines

How it starts

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

Argus Configuration

View review levels and manage global settings.

Arguments: $ARGUMENTS

Parse the arguments to determine the action:

Command Description
(empty) Show review levels and current settings
set scope <path> Set default scope directory
set output <format> Set default output format

Review Levels

Argus has three built-in review levels:

Level Model Depth Description
Fast Haiku quick Quick scan (~2 min, low tokens)
Balanced Sonnet standard Standard review (~5 min, moderate tokens)
Comprehensive Opus thorough Deep analysis (~8 min, higher tokens)

Implementation

Step 1: Determine Action

Parse $ARGUMENTS:

- Empty → Show current state
- "set scope <path>" → Set scope
- "set output <format>" → Set output

Step 2: Execute Action

Action: (empty) - Show Configuration
  1. Load defaults.json to get review levels
  2. Check for scope/output overrides in ~/.claude/argus.json
  3. Detect current scope if set to "auto"
  4. Display:
Argus Configuration
===================

Review Levels:
  fast          Haiku | ~2 min
  balanced      Sonnet | ~5 min (default)
  comprehensive Opus | ~8 min

Settings:
  scope:  {scope_value} {if auto: (currently: detected_path)}
  output: {output_value}

Change settings:
  /argus:config set scope lib/
  /argus:config set output markdown
Action: set scope <path>
  1. Validate the path is "auto" or exists as a directory
  2. Write to ~/.claude/argus.json:
    { "scope": "lib/" }
    
  3. Display confirmation:
    Set scope = lib/
    

Valid values: auto, or any valid directory path

Action: set output <format>
  1. Validate format is one of: inline, markdown, json
  2. Write to ~/.claude/argus.json:
    { "output": "markdown" }
    
  3. Display confirmation:
    Set output = markdown
    

Read the full file on GitHub · 112 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 · 112 lines · 6 tokens per session scan A 777f3dcb40a9

Subscribe to this mod's changes

config is a command published in the GitHub repository josstei/argus-claude (6 stars, last pushed 6mo ago), licensed MIT. It adds 6 tokens to every session and 602 once invoked, about $0.0000 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.