Agent-Guidance-Python AGENTS.md

Workspace instructions for using an agent-guidance tool that reduces the amount of text read from project files and records usage. They define the preferred workflow and rules for selecting that tool.

In plain words
What is it for?
They are for reading project context, searching files, getting task guidance, and checking token-usage statistics through the specified agent-guidance commands.
Why use it?
They help save tokens and keep file, documentation, and task reads within set limits while preserving the information needed by the agent.

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/junmystery/agent-guidance-python/agents-md
Clone the repo
git clone --depth 1 https://github.com/JunMystery/Agent-Guidance-Python

Made for: Codex, OpenCode.

Per session 1,661 This file is loaded in full into every session.
When invoked 1,661 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.01661 $0.01661
Opus 5 $0.00830 $0.00830
Sonnet 5 $0.00332 $0.00332
Haiku 4.5 $0.00166 $0.00166

Measured yesterday against content hash 44ce41aada1c, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

Agent-Guidance-Python 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 yesterday.

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 · 80 lines

How it starts

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

AGENTS.md

Token Saving — Built-in Optimization

agent-guidance-mcp saves tokens through 4 automatic mechanisms:

  1. Bounded readsagent-guidance-mcp_project_context(operation="read") caps at 300 lines; search caps snippets at 300 chars and limit at 20 results. Replaces expensive raw file reads.
  2. Content compression — Language-aware comment/whitespace removal, dedup, badge-stripping. Applies to every read/search response automatically.
  3. Per-type token budgets — Source files 3K, docs 2K, skills 3K, task_pipeline 12K tokens max per call.
  4. Tracking & reporting — Every optimized call records original vs. optimized tokens to SQLite. View with agent-guidance-mcp_token_stats (session) or agent-guidance-mcp_usage_report(scope="all") (lifetime).

Config (already set globally): AGENT_GUIDANCE_FILTER_LEVEL=aggressive, doc/skill caps reduced to 2K/3K — aggressive filtering by default.

How to maximize savings:

  • Always use agent-guidance-mcp_task_pipelineagent-guidance-mcp_project_context/agent-guidance-mcp_guidance instead of raw tools (Rule 3).
  • Call agent-guidance-mcp_token_stats at end of each phase to verify compression ratio.
  • If token usage is still high, set AGENT_GUIDANCE_TOKEN_OPT=0 to disable (not recommended).

Tool naming note: Some MCP hosts prefix tool names with agent-guidance-mcp_ (e.g. agent-guidance-mcp_task_pipeline), while others expose bare names (task_pipeline). The examples below use prefixed names. When calling, always use the exact tool name shown in your available-tools list — never add or drop a prefix.

CRITICAL — Tool Rules (READ FIRST)

For EVERY user interaction — planning, implementation, testing, debugging, reviewing, refactoring, or any other action:

Agent Guidance MCP — Tool Selection Priority

You need to... Use THIS tool first Why
Start any task or phase agent-guidance-mcp_task_pipeline(task="...") Recommendations + tree + code search + UI in ONE call
Check coding standards / skills agent-guidance-mcp_guidance(operation="search", query="...") No other tool provides standards or skill lookup
Read a file agent-guidance-mcp_project_context(operation="read", relative_path="...") Token-capped at 300 lines — prevents context blowout
Search codebase text agent-guidance-mcp_project_context(operation="search", query="...") Ranked, bounded results. Fallback when codegraph unavailable
Understand code structure agent-guidance-mcp_project_context(operation="structure", relative_path="...") Hierarchical view of classes, methods, functions in a file
Extract symbols agent-guidance-mcp_project_context(operation="symbols", relative_path="...") Flat list of classes, functions, methods with signatures
Get structured workflow agent-guidance-mcp_guidance(operation="workflow", identifier="plan")"code""test" Enriched dev workflow with auto-chaining
Pre-code checklist agent-guidance-mcp_guidance(operation="precode", query="...") Coding conventions, security, testing, arch, deploy rules
Post-code verification agent-guidance-mcp_guidance(operation="verify", query="...") Auto-detect test/review/security/audit/deploy; suggests next workflow
Skill feedback loop agent-guidance-mcp_guidance(operation="feedback", identifier="...", rating=1-5, query="...") Rate skills to boost future recommendations for similar tasks
Find symbol references agent-guidance-mcp_project_context(operation="references", query="...") Locate all usages of a symbol across the codebase
Get UI/design guidance agent-guidance-mcp_ui_ux(operation="search", query="...") Style, colors, typography, charts, slides
Check workflow stage agent-guidance-mcp_workflow_gate(action="check"/"status"/"set_stage") Verify plan approvals and progress lifecycle
Persist/recover session agent-guidance-mcp_session_continuity(operation="save"/"load"/"clear") State recovery / task checklist continuity
Browse project tree agent-guidance-mcp_project_context(operation="tree") Optimized directory tree view

Read the full file on GitHub · 80 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. yesterday First seen · 80 lines · 1,661 tokens per session scan A 44ce41aada1c

Subscribe to this mod's changes

Agent-Guidance-Python AGENTS.md is an instructions file published in the GitHub repository JunMystery/Agent-Guidance-Python (2 stars, last pushed 1mo ago), licensed MIT. It adds 1,661 tokens to every session, about $0.0083 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