check

check is an agent for Claude Code from Episkey-G/GrokSearch-rs. It costs 35 tokens per session (1,163 once invoked), scanned A, original, MIT.

A code-quality review agent for the Trellis channel runtime, a system for coordinating coding-agent tasks. It examines changes and reports findings without editing files.

In plain words
What is it for?
It helps inspect task documents and source-control diffs, identify problems, and describe recommended fixes for the supervising agent to apply.
Why use it?
It gives a separate review of uncommitted work against the task requirements and project guidance.

Agent for Claude Code

Written for Claude Code: a Claude Code subagent (agents/*.md).

Good fit It helps inspect task documents and source-control diffs, identify problems, and describe…

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/episkey-g/groksearch-rs/check
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.

Clone the repo
git clone --depth 1 https://github.com/Episkey-G/GrokSearch-rs

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 check

README.md
[![agentmods](https://agentmods.dev/badge/agents/episkey-g/groksearch-rs/check.svg)](https://agentmods.dev/agents/episkey-g/groksearch-rs/check)
Your own site
<a href="https://agentmods.dev/agents/episkey-g/groksearch-rs/check"><img src="https://agentmods.dev/badge/agents/episkey-g/groksearch-rs/check.svg" alt="Measured on agentmods" height="20"></a>
Per session 35 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,163 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 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.1 $0.00035 $0.01163
Opus 5 $0.00017 $0.00581
Sonnet 5 $0.00007 $0.00233
Haiku 4.5 $0.00003 $0.00116

Measured 7d ago against content hash 670bd0582057, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

check 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 7d 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.

.trellis/agents/check.md · 90 lines

How it starts

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

Check Agent (channel runtime)

You are the Check Agent spawned by trellis channel spawn --agent check inside the Trellis channel runtime. You receive an Active task: <path> line in your inbox; use it to locate task artifacts on disk.

You review — you do not fix

This role card has no tool allowlist to enforce it, so the constraint is on you: do not edit, create, or delete any file. A reviewer that silently fixes hides what it changed, and when two reviewers run at once they overwrite each other. Describe every fix in your report and let the supervising session decide who applies it.

If you believe a fix is too trivial to report, report it anyway.

Context

Before reviewing, read in this order:

  1. <task-path>/check.jsonl if present — spec manifest curated for this turn; read every listed file
  2. <task-path>/prd.md — requirements
  3. <task-path>/design.md if present — technical design
  4. <task-path>/implement.md if present — execution plan
  5. .trellis/spec/ — project-wide guidelines (load only what is relevant to the diff under review)

Core Responsibilities

  1. Get the diffgit diff / git diff --staged for uncommitted changes
  2. Review against task artifacts — does the diff satisfy prd.md (and design.md / implement.md if present)?
  3. Review against specs — naming, structure, type safety, error handling, conventions in .trellis/spec/
  4. Review against the smell baseline — the list below, which applies even when the repo documents nothing
  5. Run verification — project lint and typecheck on the changed scope, and report the result without fixing it
  6. Report — concrete findings with file:line citations, each marked hard violation or judgement call

Smell baseline

Two rules bind it: the repo overrides — a documented project standard always wins, and where it endorses something the baseline would flag, suppress the smell. And every smell is a labelled heuristic ("possible Feature Envy"), never a hard violation. Skip anything tooling already enforces (formatter, linter, type checker).

Read the full file on GitHub · 90 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. 7d ago First seen · 90 lines · 35 tokens per session scan A 670bd0582057

Subscribe to this mod's changes

check is an agent published in the GitHub repository Episkey-G/GrokSearch-rs (441 stars, last pushed 6d ago), licensed MIT. It adds 35 tokens to every session and 1,163 once invoked, about $0.0002 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.

Related

Other agents, from other repositories

cpp-reviewer

Expert C++ code reviewer specializing in memory safety, modern C++ idioms, concurrency, and performance. Use for all C++ code changes. MUST BE USED for C++ projects.

affaan-m/ECC · 41 tokens

reviewer

Read-only reviewer for an SDD implementation — checks that the change satisfies the acceptance criteria it claims (stage 1) and meets quality/convention/edge-case bars (stage 2). Use after a task (or the whole feature) reaches GREEN, before it's considered done. It reads the diff and the upstream artifacts and reports…

genkovich/sdd · 81 tokens

atomic-auditor

Final gate for a finished implementation. Dispatched exactly once after the implement-review loop goes green, never per iteration. Never touches the repo; its one write is the audit report into the task scratchpad. Audits the delivered work as a whole: cumulative spec compliance, cross-iteration coherence…

damusix/atomic-claude · 169 tokens

bt6-pr-auditor

Reviews one pull request in a BT6 codebase for correctness, research integrity, security, verification quality, and merge readiness.

elder-plinius/T3MP3ST · 32 tokens

Reviewer

Mandatory fast reviewer: validates every agent delegation output before acceptance. Checks acceptance criteria, file partitions, regressions, type safety, security basics.

monkilabs/opencastle · 30 tokens

security-auditor

Use this agent when reviewing local code changes or pull requests to identify security vulnerabilities and risks. This agent should be invoked proactively after completing security-sensitive changes or before merging any PR.

NeoLabHQ/context-engineering-kit · 40 tokens