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/cobbler/cobbler-web/agents-mdgit clone --depth 1 https://github.com/cobbler/cobbler-webWrote 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/cobbler/cobbler-web/agents-md)<a href="https://agentmods.dev/instructions/cobbler/cobbler-web/agents-md"><img src="https://agentmods.dev/badge/instructions/cobbler/cobbler-web/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.02170 | $0.02170 |
| Opus 5 | $0.01085 | $0.01085 |
| Sonnet 5 | $0.00434 | $0.00434 |
| Haiku 4.5 | $0.00217 | $0.00217 |
Grade A, and why
cobbler-web 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 — 143 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
What this is
Cobbler-Web is the Angular-based web UI for Cobbler, a Linux provisioning server. The UI talks directly to the Cobbler server's XML-RPC API from the browser — there is no backend-for-frontend; all requests originate client-side.
Workspace layout
This is a single Angular CLI workspace (angular.json) with three projects that must be built in dependency
order:
typescript-xmlrpc(library,projects/typescript-xmlrpc) — generic XML-RPC client: serializes/deserializes XML-RPC payloads overHttpClient(AngularXmlrpcService). No knowledge of Cobbler.cobbler-api(library,projects/cobbler-api) — depends ontypescript-xmlrpc.CobblerApiService(projects/cobbler-api/src/lib/cobbler-api.service.ts) exposes one method per Cobbler XML-RPC call (get/find/save/remove/modify for every item type, background_* task triggers, auth, events...). It's several thousand lines and almost entirely repetitive boilerplate: each method builds params, callsclient.methodCall(...), and maps theMethodResponse/MethodFaultunion into a typed result or a thrownError. When adding a new Cobbler XML-RPC method, copy the shape of a neighboring method of the same kind (getter / finder / background action) rather than inventing a new pattern. Item shapes live inprojects/cobbler-api/src/lib/custom-types/(items.ts,misc.ts,settings.ts,signatures.ts).cobbler-frontend(application,projects/cobbler-frontend) — the actual Angular app. It importstypescript-xmlrpcandcobbler-apiby package name, which TypeScript resolves viatsconfig.jsonpathsto the built output indist/, not the library source. This means: after changing anything intypescript-xmlrpcorcobbler-api, you must rebuild those libraries before the frontend picks up the change (see Commands below) — editing the source alone will not affect a runningng serveor the frontend's type-checking.
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 · 143 lines · 2,170 tokens per session scan A 4cef751afbfb
cobbler-web AGENTS.md is an instructions file published in the GitHub repository cobbler/cobbler-web (16 stars, last pushed yesterday), licensed MIT. It adds 2,170 tokens to every session, about $0.0109 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
awesome-copilot copilot-instructions.md
Copilot instructions for github/awesome-copilot, covering readme updates, prompt file guide, instruction file guide, agent file guide and agent skills guide.
maui uitests.instructions.md
Instructions for dotnet/maui, covering ui testing guidelines for .net maui, ui test structure, two-project requirement, base class and infrastructure and naming conventions.
maui ci-copilot-pipeline-security.instructions.md
Security rules for the Copilot PR-review pipeline. Read before editing.
maui performance-hotpaths.instructions.md
Instructions for dotnet/maui, covering performance-critical path rules, hot paths in maui, allocation avoidance, caching and invalidation and collection iteration.
maui collectionview-windows.instructions.md
Instructions for dotnet/maui, covering collectionview — windows (items/ handler), winui listview/itemsrepeater patterns, data source and change notifications, layout configuration and cross-platform consistency.
fundamental-ngx AGENTS.md
AGENTS.md instructions for SAP/fundamental-ngx, covering angular 22+ development guidelines, persona, quick reference, essential commands and build/lint/test specific library.