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/cbepx/talos-mcp-server/agents-mdgit clone --depth 1 https://github.com/CBEPX/talos-mcp-serverWrote 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/instructions/cbepx/talos-mcp-server/agents-md)<a href="https://agentmods.dev/instructions/cbepx/talos-mcp-server/agents-md"><img src="https://agentmods.dev/badge/instructions/cbepx/talos-mcp-server/agents-md.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.01126 | $0.01126 |
| Opus 5 | $0.00563 | $0.00563 |
| Sonnet 5 | $0.00225 | $0.00225 |
| Haiku 4.5 | $0.00113 | $0.00113 |
Grade A, and why
talos-mcp-server 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 3d 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 — 80 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Agent Guidelines & Rules
This document defines the coding standards, architectural patterns, and best practices for the Talos MCP Server project. All usage of AI agents should strictly adhere to these guidelines.
🐍 Python Development
- Type Hinting: All functions and methods must have type hints. Use
typingmodule (includeList,Dict,Optional,Any, etc. or standard collections in Python 3.9+).- Example:
def get_node_version(ip: str) -> Dict[str, Any]:
- Example:
- Docstrings: Use Google-style docstrings for all modules, classes, and public functions.
- Pydantic: Use Pydantic models for data validation and schema definition, especially for MCP tools.
- AsyncIO: Use
async/awaitfor all I/O bound operations. Useanyiofor compatibility where appropriate. - Error Handling: Use
try/exceptblocks judiciously. Create custom exception classes for domain-specific errors. - Loguru: Use
loguru(imported aslogger) for all logging. Do NOT use Python's standardloggingmodule. - Read-Only Safety:
- All mutating tools (e.g., reboot, upgrade) MUST explicitly set
is_mutation = Truein their class definition. - The
TalosClientandserver.pyenforce strict read-only mode validation based on this flag.
- All mutating tools (e.g., reboot, upgrade) MUST explicitly set
- Black & Ruff: Ensure code is formatted with Black and linted with Ruff.
☸️ Helm & Kubernetes
- Chart Structure: Follow standard Helm chart structure (
Chart.yaml,values.yaml,templates/). - Values: Use camelCase for values in
values.yaml. Document all values with comments. - Templates:
- Use
{{ .Values.key | default "default" }}pattern. - Avoid hardcoding namespaces or resource names; use helper templates (e.g.,
_helpers.tpl) for naming.
- Use
- Resources: Define
resources(requests/limits) for all containers. - Labels: Ensure standard Kubernetes labels (
app.kubernetes.io/name, etc.) are applied to all resources.
🔌 API Design (MCP)
- Tools Definition:
- Tools must have clear, descriptive names (e.g.,
talos_cluster_healthnothealth). - Descriptions must be detailed enough for an LLM to understand when and how to use the tool.
- Input schemas must be strict and validated.
- Tools must have clear, descriptive names (e.g.,
- Resources:
- Use URI schemes consistent with the domain (e.g.,
talos://<node>/<resource>). - Implement
read_resourcewith proper error handling for invalid URIs.
- Use URI schemes consistent with the domain (e.g.,
- Prompts:
- Prompt arguments should be self-explanatory.
- Prompt templates should be flexible but guide the LLM towards a specific goal.
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.
- 3d ago First seen · 80 lines · 1,126 tokens per session scan A 26e020ddd9ad
talos-mcp-server AGENTS.md is an instructions file published in the GitHub repository CBEPX/talos-mcp-server (0 stars, last pushed 6mo ago), licensed MIT. It adds 1,126 tokens to every session, about $0.0056 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.
Other instructions, from other repositories
appwrite AGENTS.md
AGENTS.md instructions for appwrite/appwrite, covering appwrite, commands, stack, layout and libraries.
timoni AGENTS.md
AGENTS.md instructions for stefanprodan/timoni, covering agents.md, what timoni is, common commands, architecture and cmd/timoni/ — cli (cobra).
rust-on-nails AGENTS.md
AGENTS.md instructions for purton-tech/rust-on-nails, covering rust on nails agents guide, documentation agent (crates/static-website), dev environment agent (nails-devcontainer), platform agent (crates/stack-cli) and cross-cutting expectations.
openlakeforge AGENTS.md
Instructions for malon64/openlakeforge, covering agent and contributor guide, what this project is, orientation — read in this order, repository map and architectural rules.
docker-zoneminder CLAUDE.md
Instructions for jantman/docker-zoneminder, covering claude.md, project overview, build and test, ci/cd and architecture.
mitos CLAUDE.md
Instructions for mitos-run/mitos, covering claude.md, project overview, operating principles, commands and architecture.