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.
npx agentmods add skills/tygryso/hypotree/seed-readernpx skills add tygryso/hypotree --skill seed-readergit clone --depth 1 https://github.com/tygryso/hypotreeWrote 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.
[](https://agentmods.dev/skills/tygryso/hypotree/seed-reader)<a href="https://agentmods.dev/skills/tygryso/hypotree/seed-reader"><img src="https://agentmods.dev/badge/skills/tygryso/hypotree/seed-reader.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00128 | $0.03646 |
| Opus 5 | $0.00064 | $0.01823 |
| Sonnet 5 | $0.00026 | $0.00729 |
| Haiku 4.5 | $0.00013 | $0.00365 |
Grade A, and why
seed-reader 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.
How it starts
The opening of the file, as written. The whole thing — 329 lines — stays where its author put it; the contents beside it link to each section on GitHub.
seed-reader — Evaluation Report Generation & Metric Interpretation
Render one evaluation run's JSONL logs as a self-contained markdown report, and
understand every metric in it. Also covers the gate-scoring companion
(analyse_gate) that emits the frozen GO / STOP / ITERATE decision.
When to Use
- After an eval run completes and you need to read its results
- When asked "how did the run go?" or "did hypotree win?"
- When debugging why an arm performed a certain way (duplicates, conflicts, recovery, etc.)
- When you need the formal gate decision (GO / STOP / ITERATE)
- When comparing two runs or diagnosing data-quality issues
How to List Available Run-Ids
Every run's logs live in eval/runs/<run-id>/. The directory names are the run-ids.
# List all run-ids (directories that contain episode logs)
ls eval/runs/
# Check which runs have completed (have a gate_decision.json)
ls eval/runs/*/gate_decision.json 2>/dev/null
# Check a specific run's contents
ls eval/runs/<run-id>/
Run-ids are validated: 1–64 chars of [A-Za-z0-9._-]. Typical convention:
YYYY-MM-DD<x> (e.g., 2026-07-28a).
Step 1 — Generate the Report
# Render to stdout
uv run python -m eval.seed_reader --run-id <RUN_ID>
# Write to a file (recommended — the report is long)
uv run python -m eval.seed_reader --run-id <RUN_ID> --output eval/runs/<RUN_ID>/REPORT.md
# Non-default eval directory
uv run python -m eval.seed_reader --run-id <RUN_ID> --eval-dir /path/to/eval/
--run-id is mandatory. Reports are only comparable within a run — mixing
two runs' logs would silently invalidate every aggregate. The tool enforces this
by checking that each log's own run_id field matches the directory.
Step 2 — Score the Gate Decision
# Emits JSON: {"decision": "GO"|"STOP"|"ITERATE", "criteria": {...}, ...}
uv run python -m eval.analyse_gate eval/ --run-id <RUN_ID>
# Save alongside the report
uv run python -m eval.analyse_gate eval/ --run-id <RUN_ID> | tee eval/runs/<RUN_ID>/gate_decision.json
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.
- 4d ago First seen · 329 lines · 128 tokens per session scan A 5b1a17abf3e5
seed-reader is a skill published in the GitHub repository tygryso/hypotree (12 stars, last pushed 14d ago), licensed MIT. It adds 128 tokens to every session and 3,646 once invoked, about $0.0006 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.
Other skills, from other repositories
taskflow
Orchestrate multi-phase subagent workflows with Taskflow. Use whenever a request spans a whole project or many items — deeply exploring / 探索 / auditing / 审计 / analyzing a codebase, reviewing or migrating many files or modules in parallel, cross-checked/adversarial review, codebase-wide research, or any repeatable…
building-threat-hunt-hypothesis-framework
Build a systematic threat hunt hypothesis framework that transforms threat intelligence, attack patterns, and environmental data into testable hunting hypotheses.
zettelforge
ZettelForge v2.0.0 — Production CTI agentic memory system. Hybrid TypeDB (STIX 2.1 ontology) + LanceDB (vector search). Zero external AI dependencies: fastembed for embeddings, llama-cpp-python for LLM. 75% accuracy on CTI queries, 18% on LOCOMO. Use when agents need persistent memory, threat intel retrieval, entity…
matryca-github
Apply Matryca maintainer standards for GitHub issues, pull requests, branches, reviews, merges, milestones, tags, releases, and remote comments. Use before any GitHub-facing action or artifact.
matryca-changelog
Decide whether a completed Matryca change belongs in CHANGELOG.md and add one concise Unreleased entry when required. Use before concluding runtime, security, architecture, integration, performance, operator, or public-contract changes.
matryca-env
Keep Matryca environment-variable code, defaults, UI mappings, .env.example, coverage tests, and changelog synchronized. Use when adding, renaming, deprecating, exposing, or changing any environment variable or default.