hmc-mcp AGENTS.md

hmc-mcp AGENTS.md is an instructions file for Codex, OpenCode from randomparity/hmc-mcp. It costs 5,504 tokens per session, scanned A, original, MIT.

Repository instructions for coding agents working on the randomparity/hmc-mcp project. They cover safe shell commands, Git operations, merge conflicts, virtual environments, and existing test failures.

In plain words
What is it for?
Following project-specific rules while running commands, continuing rebases or merges, resolving conflicts, managing worktree environments, and assessing test failures.
Why use it?
They reduce stalled commands, accidental Git problems, and confusion about whether a failing test was introduced by the current work.

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/randomparity/hmc-mcp/agents-md
Clone the repo
git clone --depth 1 https://github.com/randomparity/hmc-mcp

Made for: Codex, OpenCode.

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 hmc-mcp AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/randomparity/hmc-mcp/agents-md.svg)](https://agentmods.dev/instructions/randomparity/hmc-mcp/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/randomparity/hmc-mcp/agents-md"><img src="https://agentmods.dev/badge/instructions/randomparity/hmc-mcp/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 5,504 This file is loaded in full into every session.
When invoked 5,504 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.05504 $0.05504
Opus 5 $0.02752 $0.02752
Sonnet 5 $0.01101 $0.01101
Haiku 4.5 $0.00550 $0.00550

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

Security

Grade A, and why

hmc-mcp 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 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.

AGENTS.md · 391 lines

How it starts

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

AGENTS.md

Non-interactive shell discipline

All shell commands must be non-interactive. A command that opens an editor, a pager, or a prompt will stall the agent with no recovery path.

git

  • Always set GIT_EDITOR=true when a git command may open an editor:
    GIT_EDITOR=true git rebase --continue
    GIT_EDITOR=true git commit --amend
    GIT_EDITOR=true git merge --continue
    
  • Prefer --no-edit on commit --amend and merge when the message is unchanged.
  • Never run git rebase --continue without GIT_EDITOR=true — the continue step opens the editor to confirm the commit message even when there are no remaining conflicts.
  • Suppress the pager: git --no-pager <subcommand> or set GIT_PAGER=cat.
  • Never squash-merge (gh pr merge --squash / git merge --squash) unless the PR is documentation-only. Squash merges collapse commit history and break git bisect. Use --merge (merge commit) for all code, test, config, and script changes.
    • Documentation-only means no changed file's content is asserted by a test or a static gate. Content, specifically: repo-wide scans like just secrets read every tracked file, and counting those would make the exception dead.
    • Decide it by reading, not by a pattern or a grep. Both have been tried here and both are unsound, because the guards reach their files three different ways: by literal path, by basename (tests/test_project_metadata.py opens ROOT / "docs" / "hmc-cli-cheatsheet.md"), and by directory — scripts/gen_tool_reference.py writes _REPO_ROOT / "docs" / "tools" and scripts/check_adr_numbering.py globs docs/adr/*.md, so no search for a path or a filename can see those at all. Work from this floor instead:
      • Content-asserted: docs/tools/ (diffed by just tool-docs-check), every page carrying a generation banner (regenerated and diffed by just doc-freshness), docs/environment-variables.md (checked field by field by just env-vars), docs/hmc-cli-cheatsheet.md and docs/authorization-audit.md (opened by tests/), ADR 0029's inventory block (parsed by tests/unit/test_public_api.py), and CHANGELOG.md, CONTRIBUTING.md, README.md, SECURITY.md.
      • Name-asserted only: just adr-numbering checks an ADR's filename and H1, never its body — so editing an ADR's prose is not caught by that gate. Most ADRs are in this class, which is why a prose-only ADR edit is one of the few real documentation-only changes here.
      • Content-unasserted today: the docs/plan-*, docs/spec-*, docs/scorecard-*, docs/workflow/ and docs/superpowers/ pages. Test modules cite some of those specs in module docstrings, which asserts nothing about the file. just doc-freshness does read every tracked Markdown file's first line, looking for a generation banner — so a page here can still redden it by opening with something banner-shaped, but its body is unchecked.
    • When the answer is not obvious, use --merge. It costs one merge commit. A wrong --squash is not reversible once it is on main.
    • Two shell mechanics, for whatever check you do write over gh pr diff <PR> --name-only: grep -Ev exits 1 when it filters every line out, so a naive … | grep -Ev '…' reports failure on exactly the empty-result case and is fatal under set -e or inside an && chain; and a failed gh pr diff — wrong number, expired auth — prints nothing, which looks identical to a clean pass. Check its exit status before reading its output, and treat an unanswered query as "not documentation-only".
    • The policy is prose, not a gate: nothing in the repo enforces itrg -ni squash over .github/, tests/, scripts/, justfile, and .pre-commit-config.yaml returns nothing. Your own reading before the merge is the only control.
    • A single-parent commit on main is not evidence of a squash. This repo has also landed PRs with --rebase, which replays each commit onto main and preserves the per-commit history the policy protects — PR #455's seven commits landed that way as aec6125^..f528e94. To tell a squash from a rebase, compare the commit's own diff with the PR's: on a squash they are equal, on a rebase the commit carries only its own slice. This paragraph is forensic — how to read history after the fact. It is not a second blessed strategy: the rule above still says --merge, and whether --rebase should join it is open in #530.

Read the full file on GitHub · 391 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. 4d ago First seen · 391 lines · 5,504 tokens per session scan A 2148c109faaf

Subscribe to this mod's changes

hmc-mcp AGENTS.md is an instructions file published in the GitHub repository randomparity/hmc-mcp (1 stars, last pushed yesterday), licensed MIT. It adds 5,504 tokens to every session, about $0.0275 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-31.

Related

Other instructions, from other repositories

vscode buildNext.instructions.md

Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).

microsoft/vscode · 6,785 tokens

spec-kit AGENTS.md

AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.

github/spec-kit · 7,104 tokens

codex AGENTS.md

AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.

openai/codex · 5,182 tokens

langchain AGENTS.md

AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.

langchain-ai/langchain · 4,345 tokens

vscode oss-third-party-notices.instructions.md

Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).

microsoft/vscode · 5,001 tokens

next.js AGENTS.md

Instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.

vercel/next.js · 7,296 tokens