samurai CLAUDE.md

Project instructions for Samurai, a Go testing framework that runs test paths with explicit context and supports parallel execution.

In plain words
What is it for?
Use it when adding framework features, changing test behavior, updating commands, or preparing a release of the Go project.
Why use it?
They document the project’s testing, build, release, and code-review rules so agents can make changes safely and consistently.

Instructions file

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/zerosixty/samurai/claude-md
Clone the repo
git clone --depth 1 https://github.com/zerosixty/samurai
Per session 3,483 This file is loaded in full into every session.
When invoked 3,483 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.03483 $0.03483
Opus 5 $0.01741 $0.01741
Sonnet 5 $0.00697 $0.00697
Haiku 4.5 $0.00348 $0.00348

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

Security

Grade A, and why

samurai CLAUDE.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.

CLAUDE.md · 296 lines

How it starts

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

CLAUDE.md

This file contains guidance for Claude Code when working on this project.

Project Overview

Samurai is a scoped testing framework for Go with path isolation, inspired by GoConvey but modernized with:

  • Explicit context passing (no GLS/goroutine-local-storage)
  • Standard context.Context support for cancellation/timeouts
  • Assertion-library agnostic (users bring their own)
  • Zero external dependencies
  • Parallel execution by default — including the top-level TestXxx function, not just samurai-generated sub-tests. Pass samurai.Sequential() to opt out (required for tests that use t.Setenv, bind fixed ports, etc.)
  • No double execution - code runs exactly once per test path
  • Generic RunWith for custom test contexts via embedded *BaseContext (Go 1.25+ generic type aliases)

Git Workflow

  • NEVER push directly to master. Always work through a PR: create a branch, push, gh pr create, gh pr merge.
  • Release via the Release GitHub Actions workflow (workflow_dispatch). Trigger it with gh workflow run release.yml -f version=vX.Y.Z (version must match v*.*.*). The workflow gates the release on go vet + go test -race ./..., then creates the tag and the GitHub Release with --generate-notes. NEVER tag or release manually (git tag, gh release create) — that bypasses the race-test gate. See .github/workflows/release.yml.

Build & Test Commands

go test ./...           # Run all tests
go test -v ./...        # Verbose test output
go test -race ./...     # Run with race detector

Code Style

  • Follow standard Go conventions
  • Keep the API minimal - users control behavior via their assertion library and t.Skip()
  • Prefer composition over inheritance
  • All public types and functions must have doc comments

Architecture

  • samurai.go - Public API: Run, RunWith[V], Context interface, W type alias, options (Parallel, Sequential); internal path tree building (pathNode, buildPathTree, executeTree[V]); identityFactory for the non-generic Run
  • scope.go - TestScope[V] generic struct with Test() and Skip() methods; type Scope = TestScope[W] alias
  • scope_runner.go - Generic path discovery (collectScopedPaths[V], collectPathsFromChildren, probeBuilder) and execution (executeScope[V], executeScopedPath[V])
  • base_context.go - BaseContext struct implementing Context interface; provides Context(), Testing() and Cleanup()
  • runner.go - Shared helpers: panic recovery, cleanup execution

Read the full file on GitHub · 296 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 · 296 lines · 3,483 tokens per session scan A bbc307c47714

Subscribe to this mod's changes

samurai CLAUDE.md is an instructions file published in the GitHub repository zerosixty/samurai (11 stars, last pushed 3mo ago), licensed MIT. It adds 3,483 tokens to every session, about $0.0174 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.