Metis_PH: Agent for Claude Code

.claude/agents/biostatistician.md

biostatistician is an agent for Claude Code from SVerITG/Metis_PH. It costs 50 tokens per session (505 once invoked), scanned A, original, AGPL-3.0.

A statistics-focused coding agent for developing R packages and designing or analysing statistical studies. It covers methods such as simulation, power analysis, clinical-trial design, mixed models, and custom estimators.

In plain words
What is it for?
Use it to build R packages, run Monte Carlo simulations or parametric bootstrap studies, calculate sample sizes and statistical power, and implement methods for clinical trials, dose-response studies, tolerance intervals, and mixed models.
Why use it?
It helps with specialised statistical work that requires choosing methods, writing computations, and checking how reliable results are. It also supports preparing R packages for submission to CRAN, the main public repository for R packages.

Agent for Claude Code

Written for Claude Code: installed under .claude/. Also seen: model in frontmatter.

This is SVerITG/Metis_PH's own configuration. It tells Claude Code how to work on Metis_PH itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything Metis_PH configures →

Reuse

Borrowing it

Nothing to install: this file belongs to SVerITG/Metis_PH. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/SVerITG/Metis_PH/main/.claude/agents/biostatistician.md
Clone the repo
git clone --depth 1 https://github.com/SVerITG/Metis_PH

Made for: Claude Code.

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 biostatistician

README.md
[![agentmods](https://agentmods.dev/badge/agents/sveritg/metis_ph/biostatistician/github.svg)](https://agentmods.dev/agents/sveritg/metis_ph/biostatistician)
Your own site
<a href="https://agentmods.dev/agents/sveritg/metis_ph/biostatistician"><img src="https://agentmods.dev/badge/agents/sveritg/metis_ph/biostatistician/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for biostatistician

Your own site · 80×15
<a href="https://agentmods.dev/agents/sveritg/metis_ph/biostatistician"><img src="https://agentmods.dev/badge/agents/sveritg/metis_ph/biostatistician.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 50 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 505 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin unknown 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.1 $0.00050 $0.00505
Opus 5 $0.00025 $0.00253
Sonnet 5 $0.00010 $0.00101
Haiku 4.5 $0.00005 $0.00051

Measured 4d ago against content hash 908c08ff4ffd, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

biostatistician 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 4d 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/agents/biostatistician.md · 50 lines

The source is not reproduced here

Licensed AGPL-3.0

The repository is licensed AGPL-3.0, which this catalogue does not treat as permission to reproduce the file. Read it at the source.

Read it on GitHub

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. 4d ago First seen · 50 lines · 50 tokens per session scan A 908c08ff4ffd

Subscribe to this mod's changes

biostatistician is an agent published in the GitHub repository SVerITG/Metis_PH (1 stars, last pushed today), licensed AGPL-3.0. It adds 50 tokens to every session and 505 once invoked, about $0.0003 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-09-04.

Related

Other agents, from other repositories

go-concurrency-reviewer

Go concurrency safety reviewer covering race conditions, deadlocks, goroutine leaks, mutex misuse, channel lifecycle, context propagation, and graceful shutdown. Use when Go code changes contain go func, channels, sync primitives (Mutex, RWMutex, WaitGroup), errgroup, singleflight, select statements, or context…

johnqtcg/awesome-skills · 85 tokens

go-error-reviewer

Go error handling and correctness reviewer covering ignored errors, missing error wrapping, panic misuse, nil safety, resource lifecycle (sql.Rows, resp.Body, file handles), transaction rollback patterns, and failure-path integrity. Use when Go code changes contain error returns, panic calls, sql.Rows, tx.Begin, HTTP…

johnqtcg/awesome-skills · 97 tokens

go-logic-reviewer

Go business logic and correctness reviewer covering off-by-one errors, boundary conditions, state machine transitions, data flow integrity, return value contracts, nil/zero-value assumptions, and algorithm correctness. Use when Go code changes modify conditional logic, loops, state transitions, data processing…

johnqtcg/awesome-skills · 81 tokens

go-quality-reviewer

Go code quality and style reviewer covering function length, nesting depth, naming conventions, mutable globals, interface design, receiver consistency, modern Go idioms (slog, generics, typed atomics), and golangci-lint integration. Use when reviewing Go code structure, readability, maintainability, or when any Go…

johnqtcg/awesome-skills · 85 tokens

go-security-reviewer

Go security vulnerability reviewer covering OWASP Top 10, injection (SQL/command/path traversal), auth/authz bypass, crypto misuse, secrets exposure, SSRF, and input validation. Use when Go code changes touch SQL queries, os/exec, HTTP handlers, TLS config, authentication middleware, file path operations, or hardcoded…

johnqtcg/awesome-skills · 89 tokens

go-performance-reviewer

Go performance reviewer covering slice/map pre-allocation, string concatenation in loops, N+1 database queries, connection pool tuning, sync.Pool usage, memory alignment, lock scope optimization, buffered I/O, and HTTP transport configuration. Use when Go code changes contain make(), append(), loops with DB/Redis…

johnqtcg/awesome-skills · 99 tokens