cobbler-web AGENTS.md

cobbler-web AGENTS.md is an instructions file for Codex, OpenCode from cobbler/cobbler-web. It costs 2,170 tokens per session, scanned A, original, MIT.

Repository instructions for cobbler-web, an Angular web interface for Cobbler, a Linux server-provisioning system. They describe the code layout, development commands, and how the interface connects to Cobbler.

In plain words
What is it for?
Use them when changing the cobbler-web codebase, running it locally, or working with its XML-RPC API integration.
Why use it?
They give an agent the project context needed to make changes safely, including build order and the real server used during local development.

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

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 cobbler-web AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/cobbler/cobbler-web/agents-md.svg)](https://agentmods.dev/instructions/cobbler/cobbler-web/agents-md)
Your own site
<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>
Per session 2,170 This file is loaded in full into every session.
When invoked 2,170 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.02170 $0.02170
Opus 5 $0.01085 $0.01085
Sonnet 5 $0.00434 $0.00434
Haiku 4.5 $0.00217 $0.00217

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

Security

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.

AGENTS.md · 143 lines

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:

  1. typescript-xmlrpc (library, projects/typescript-xmlrpc) — generic XML-RPC client: serializes/deserializes XML-RPC payloads over HttpClient (AngularXmlrpcService). No knowledge of Cobbler.
  2. cobbler-api (library, projects/cobbler-api) — depends on typescript-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, calls client.methodCall(...), and maps the MethodResponse/MethodFault union into a typed result or a thrown Error. 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 in projects/cobbler-api/src/lib/custom-types/ (items.ts, misc.ts, settings.ts, signatures.ts).
  3. cobbler-frontend (application, projects/cobbler-frontend) — the actual Angular app. It imports typescript-xmlrpc and cobbler-api by package name, which TypeScript resolves via tsconfig.json paths to the built output in dist/, not the library source. This means: after changing anything in typescript-xmlrpc or cobbler-api, you must rebuild those libraries before the frontend picks up the change (see Commands below) — editing the source alone will not affect a running ng serve or the frontend's type-checking.

Read the full file on GitHub · 143 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. 3d ago First seen · 143 lines · 2,170 tokens per session scan A 4cef751afbfb

Subscribe to this mod's changes

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.