codspeed AGENTS.md

Repository instructions for developing CodSpeed Runner, a Rust command-line program that collects performance data and uploads reports.

In plain words
What is it for?
Use them when working on CodSpeed Runner to build it, run tests, check code, format files, run the linter, or understand its main modules.
Why use it?
They give a coding agent the project's expected build, test, formatting, linting, and run commands, reducing mistakes when changing the repository.

Instructions file for CodexOpenCode

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 instructions/codspeedhq/codspeed/agents-md
Clone the repo
git clone --depth 1 https://github.com/CodSpeedHQ/codspeed

Made for: Codex, OpenCode.

Per session 663 This file is loaded in full into every session.
When invoked 663 The same file — it is already loaded in full.
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.00663 $0.00663
Opus 5 $0.00331 $0.00331
Sonnet 5 $0.00133 $0.00133
Haiku 4.5 $0.00066 $0.00066

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

Security

Grade A, and why

codspeed AGENTS.md 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.

AGENTS.md · 107 lines

How it starts

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

AGENTS.md

This file provides guidance to AI coding agents when working with code in this repository.

Overview

CodSpeed Runner is a Rust CLI application for gathering performance data and uploading reports to CodSpeed. The binary is named codspeed and supports local and CI environments including GitHub Actions, GitLab CI, and Buildkite.

Common Development Commands

Building and Testing

# Build the project
cargo build

# Build in release mode
cargo build --release

# Run tests
cargo test

# Run specific test
cargo test <test_name>

# Run tests with output
cargo test -- -nocapture

Running the Application

# Build and run
cargo run -- <subcommand> <args>

# Examples:
cargo run -- auth login
cargo run -- run "cargo bench"
cargo run -- setup

Code Quality

# Check code without building
cargo check

# Format code
cargo fmt

# Run linter
cargo clippy

Architecture

The application follows a modular structure:

Core Modules

  • main.rs: Entry point with error handling and logging setup
  • app.rs: CLI definition using clap with subcommands (Run, Auth, Setup)
  • api_client.rs: CodSpeed GraphQL API client
  • auth.rs: Authentication management
  • config.rs: Configuration loading and management

Run Module (src/run/)

The core functionality for running benchmarks:

  • run_environment/: CI provider implementations (GitHub Actions, GitLab CI, Buildkite, local)
  • runner/: Execution modes:
    • valgrind/: Instrumentation mode using custom Valgrind
    • wall_time/perf/: Walltime mode with perf integration
  • uploader/: Results upload to CodSpeed

Key Dependencies

  • clap: CLI framework with derive macros
  • tokio: Async runtime (current_thread flavor)
  • reqwest: HTTP client with middleware/retry
  • serde/serde_json: Serialization
  • gql_client: Custom GraphQL client
  • tabled: Table formatting for CLI output (https://docs.rs/tabled/latest/tabled/index.html)
  • Platform-specific: procfs (Linux), linux-perf-data

Read the full file on GitHub · 107 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 · 107 lines · 663 tokens per session scan A 8a477337e654

Subscribe to this mod's changes

codspeed AGENTS.md is an instructions file published in the GitHub repository CodSpeedHQ/codspeed (280 stars, last pushed 4d ago), licensed Apache-2.0. It adds 663 tokens to every session, about $0.0033 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-30.