setup

setup is a command for coding agents from q1343135559/ClaudeMeter. It costs 9 tokens per session (1,630 once invoked), scanned A, original, MIT.

A setup command for configuring ClaudeMeter as Claude Code's status line, the small display that shows session information. It installs a launcher and configures the required runtime path.

In plain words
What is it for?
Use it to install and configure ClaudeMeter, provided Node.js 18 or later is available.
Why use it?
It prevents the status line from silently failing when Claude Code cannot find a Node.js installation.

Command

Part of the claudemeter plugin — 2 commands 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/q1343135559/claudemeter/setup
Clone the repo
git clone --depth 1 https://github.com/q1343135559/ClaudeMeter

Or install claudemeter, the plugin that ships this one along with the rest of its 2 commands.

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 setup

README.md
[![agentmods](https://agentmods.dev/badge/commands/q1343135559/claudemeter/setup.svg)](https://agentmods.dev/commands/q1343135559/claudemeter/setup)
Your own site
<a href="https://agentmods.dev/commands/q1343135559/claudemeter/setup"><img src="https://agentmods.dev/badge/commands/q1343135559/claudemeter/setup.svg" alt="Measured on agentmods" height="20"></a>
Per session 9 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,630 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.00009 $0.01630
Opus 5 $0.00005 $0.00815
Sonnet 5 $0.00002 $0.00326
Haiku 4.5 $0.00001 $0.00163

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

Security

Grade A, and why

setup 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 3d 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.

plugin/commands/setup.md · 154 lines

How it starts

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

ClaudeMeter Setup

Install ClaudeMeter as the user's statusline. Follow the steps in order — each one exists for a reason that is stated inline. Talk to the user in whatever language they are using.

1. Locate the runtime and the plugin

node -e "console.log(process.execPath)"

Take the absolute path to Node. Never write a bare node into settings.json: the statusline runs as a child process of Claude Code, whose PATH may not include an nvm- or Homebrew-managed Node. A bare command fails silently on many machines — the statusline simply never appears, with no error anywhere.

If that command fails, Node is not on PATH. Tell the user ClaudeMeter needs Node.js 18 or later, then stop.

The plugin root is ${CLAUDE_PLUGIN_ROOT}; the launcher source is at ${CLAUDE_PLUGIN_ROOT}/bin/launcher.mjs.

2. Install the launcher at a stable path

CONFIG_DIR="${CLAUDE_CONFIG_DIR:-$HOME/.claude}"
mkdir -p "$CONFIG_DIR/claudemeter"
cp "${CLAUDE_PLUGIN_ROOT}/bin/launcher.mjs" "$CONFIG_DIR/claudemeter/launcher.mjs"
echo "installed: $CONFIG_DIR/claudemeter/launcher.mjs"

Why the extra indirection: ${CLAUDE_PLUGIN_ROOT} is not expanded inside the statusLine command in settings.json, and the plugin cache path contains a version number (plugins/cache/<marketplace>/claudemeter/<version>/), so it changes on every upgrade. The launcher resolves the highest installed version at runtime, which means plugin upgrades take effect without re-running setup.

3. Check for and back up an existing statusline

CONFIG_DIR="${CLAUDE_CONFIG_DIR:-$HOME/.claude}"
node -e "
const fs=require('fs'), p=process.argv[1];
try { const s=JSON.parse(fs.readFileSync(p,'utf8'));
  console.log(JSON.stringify(s.statusLine ?? null, null, 2)); }
catch (e) { console.log('null'); }
" "$CONFIG_DIR/settings.json"
  • Output is null → nothing configured, go straight to step 4.
  • Output mentions claudemeter → this plugin installed it before, overwrite without asking.
  • Anything else → the user already runs a different statusline. Show them the current value, then use AskUserQuestion to confirm the replacement. If they decline, stop and change nothing.

Read the full file on GitHub · 154 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. 3d ago First seen · 154 lines · 9 tokens per session scan A 2b98b58fe521

Subscribe to this mod's changes

setup is a command published in the GitHub repository q1343135559/ClaudeMeter (1 stars, last pushed 12d ago), licensed MIT. It adds 9 tokens to every session and 1,630 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.