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 instructions/netdevops/hier_config/agents-mdgit clone --depth 1 https://github.com/netdevops/hier_configWhat 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.01385 | $0.01385 |
| Opus 5 | $0.00692 | $0.00692 |
| Sonnet 5 | $0.00277 | $0.00277 |
| Haiku 4.5 | $0.00138 | $0.00138 |
Grade A, and why
hier_config 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 today.
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 — 81 lines — stays where its author put it; the contents beside it link to each section on GitHub.
hier_config — Agent & Contributor Guide
This file is the canonical quick reference for AI coding agents (and humans) working in this repository. The deep documentation lives in docs/ and on Read the Docs; this file is the index.
Project Overview
hier_config is a Python library that compares network device configurations (running vs intended) and generates minimal remediation commands. It parses config text into hierarchical trees and computes diffs respecting vendor-specific syntax rules. Runtime dependencies are deliberately minimal (pydantic only).
Build & Test Commands
All commands use poetry (not pip):
# Full lint + test suite (what CI runs)
poetry run ./scripts/build.py lint-and-test
# Lint only (ruff, mypy, pyright, pylint, yamllint, flynt — run in parallel)
poetry run ./scripts/build.py lint
# Tests only (95% coverage required)
poetry run ./scripts/build.py pytest --coverage
# Run a single test
poetry run pytest tests/test_driver_cisco_xr.py::test_name -v
# Run a single test file
poetry run pytest tests/test_driver_cisco_xr.py -v
# Auto-fix formatting
poetry run ruff format hier_config tests scripts
# Validate docs (required if docs/ or mkdocs.yml changed)
poetry run mkdocs build --strict
Architecture in Brief
Three-layer design — full detail in docs/dev/architecture.md:
- Tree (
base.py,root.py,child.py,children.py):HConfigroot andHConfigChildnodes; key operationsconfig_to_get_to(),future(),unified_diff(),dump_simple(). - Driver (
platforms/): each platform subclassesHConfigDriverBaseand overrides_instantiate_rules()returningHConfigDriverRules— typed, frozen Pydantic rule models matched against config lineage viaMatchRuletuples. - Workflow (
workflows.py,reporting.py):WorkflowRemediationexposesremediation_config/rollback_config; constructors live inconstructors.py(get_hconfig(),get_hconfig_fast_load(),get_hconfig_driver()).
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.
- today First seen · 81 lines · 1,385 tokens per session scan A f817226e9c6d
hier_config AGENTS.md is an instructions file published in the GitHub repository netdevops/hier_config (150 stars, last pushed 5d ago), licensed MIT. It adds 1,385 tokens to every session, about $0.0069 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-01.
Other instructions, from other repositories
aghub CLAUDE.md
Instructions for AkaraChen/aghub, covering claude.md, project overview, common commands, build and test.
aghub AGENTS.md
Instructions for AkaraChen/aghub, covering aghub knowledge base, structure, where to look, conventions and rust.
Tutorial_AwesomeModernCPP AGENTS.md
Instructions for Awesome-Embedded-Learning-Studio/Tutorial_AwesomeModernCPP, covering agents.md, 这是什么, 通用 essentials(所有 agent 必读) and 你来做什么?(按场景路由).
grok-keysmith AGENTS.md
Instructions for Jia-Ethan/grok-keysmith, covering repository agent guide, scope, release and external state, change boundaries and documentation rules.
Tutorial_AwesomeModernCPP CLAUDE.md
Instructions for Awesome-Embedded-Learning-Studio/Tutorial_AwesomeModernCPP, covering claude.md, 写作纪律(必须遵守), 规划命令(skills,规划者模式 —— 只规划不执行), 实用命令(skills,执行型) and 记忆系统.
mcp-wireshark CLAUDE.md
Instructions for khuynh22/mcp-wireshark, covering claude.md — mcp-wireshark, purpose, architecture, code conventions and token efficiency rules.