brianofrokk3r

Svdo Meter — AI skill for Claude Code

AI community

SVDO Meter is an open-source telemetry and evaluation layer for AI coding agents.

How to install Svdo Meter

This entry records only its repository, not the path inside it, so there is no exact command to give. Open brianofrokk3r/svdo-meter and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What Svdo Meter does

SVDO Meter is an open-source telemetry and evaluation layer for AI coding agents. Measure execution, token usage, cost, sessions, tooling behavior, and repository alignment across Codex, Claude Code, and other coding agents.

Alternatives in AI

  • Codeburn — Free, local tool to track AI coding token usage and cost across 37 tools and agents (Claude Code, Cursor, Code 9.7k ★
  • Ccstatusline — by sirmalloc - A highly customizable status line formatter for Claude Code CLI that displays model info, git b 5.5k ★
  • Manifest — Real-time cost observability for OpenClaw agents — track tokens, costs, messages, and model usage 4.1k ★

README

SVDO Meter

SVDO Meter is an open-source telemetry and evaluation layer for AI coding agents. Measure execution, token usage, cost, sessions, tooling behavior, and repository alignment across Codex, Claude Code, and other coding agents.

It associates a ticket/work identifier with an agent CLI run, invokes or resumes the selected harness, normalizes objective events where possible, and writes durable append-only telemetry locally. It is not an orchestration framework, ticketing system, model router, or remote connector.

Keywords: `ai-agents`, `coding-agents`, `observability`, `llm`, `codex`, `claude-code`, `developer-tools`.

Current Status

The v0.1 baseline centers on:

  • svdo-meter run
  • svdo-meter eval run
  • svdo-meter compare
  • svdo-meter telemetry
  • the codex, claude, and opencode harnesses
  • local per-run JSONL telemetry under .svdo/meter/
  • repository alignment eval definitions under .svdo/evals/
  • comparison reports that combine telemetry with JSON artifacts under .svdo/runs/ and .svdo/evals/
  • optional live stdout NDJSON event streaming from svdo-meter run
  • rebuildable session association from session.discovered events
  • fixture-based tests that do not require live Codex execution

Help

The CLI is built with Clap, so command help is available from the binary:

svdo-meter --help
svdo-meter run --help
svdo-meter eval --help
svdo-meter eval run --help
svdo-meter compare --help
svdo-meter report --help
svdo-meter telemetry --help

If running from source:

cargo run -p svdo-meter -- --help
cargo run -p svdo-meter -- run --help
cargo run -p svdo-meter -- eval --help
cargo run -p svdo-meter -- eval run --help
cargo run -p svdo-meter -- compare --help
cargo run -p svdo-meter -- report --help
cargo run -p svdo-meter -- telemetry --help

Install From GitHub

Install the latest published release binary without cloning the repository:

curl -fsSL https://raw.githubusercontent.com/brianofrokk3r/svd