domain

A read-only reference for precise AgentOps terms and the boundaries between parts of the system.

In plain words
What is it for?
Use it when defining a domain term or checking which part of AgentOps owns a concept or connection.
Why use it?
It prevents ambiguous definitions and stops similar words from accidentally implying responsibilities they do not have.

Skill for Claude CodeCodex

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 skills/boshu2/agentops/domain
Any agent
npx skills add boshu2/agentops --skill domain
Clone the repo
git clone --depth 1 https://github.com/boshu2/agentops

Made for: Claude Code, Codex.

Per session 33 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 504 The whole file, excluding the scripts and references it only reads on demand.
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.00033 $0.00504
Opus 5 $0.00016 $0.00252
Sonnet 5 $0.00007 $0.00101
Haiku 4.5 $0.00003 $0.00050

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

Security

Grade A, and why

domain 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.

images/gemini/skills/domain/SKILL.md · 64 lines

What it actually says

Domain — ubiquitous language

Use this read-only library when an AgentOps term or bounded-context boundary needs precise meaning.

Returning the exact contract definition works because two contexts that read the same source line cannot drift apart on a term; a paraphrase reintroduces the ambiguity the lookup exists to remove.

Named failure mode — synonym smuggling: answering with a near-synonym ("close" for "verdict") that quietly imports lifecycle authority the term does not carry.

Anti-pattern: defining a term from memory because the contract file is one read away. Corrective: always cite the definition and its source path from the live contract, even for terms you are sure about.

Procedure

  1. Read docs/contracts/ubiquitous-language.md for the term.
  2. Read docs/contracts/bounded-contexts.yaml only when ownership or a port boundary matters.
  3. Return the exact definition and source path.
  4. Stop.

Do not invent synonyms that imply lifecycle authority. In particular, Plan, Candidate, manifest, verdict, revision, strategy, and adapter are semantic terms; queue, claim, lease, close, land, release, and delivery belong to caller systems rather than AgentOps core state.

The product-architecture terms — operations layer, federated integration graph, semantic work-and-proof protocol, RPI traversal — and their forbidden conflations live in the same contract. The traversal is RPI; the graph is the topology; the protocol defines interoperability; the operations layer is the product. None of the four is "a loop".

Vocabulary changes are normal source edits to the two contracts above. This skill does not promote terms, mutate a knowledge index, or create continuation.

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 · 64 lines · 33 tokens per session scan A a4be412242f9

Subscribe to this mod's changes

domain is a skill published in the GitHub repository boshu2/agentops (431 stars, last pushed 4d ago), licensed Apache-2.0. It adds 33 tokens to every session and 504 once invoked, about $0.0002 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-30.

Related

Other skills, from other repositories

enhance

Audit and tighten agent/plugin surfaces. Use when the user asks to enhance a plugin config, agent definition, skill, or CLAUDE.md.

OutlineDriven/odin-claude-plugin · 32 tokens

contexts

Use when the user says "get context on X", "how does X work", or wants architectural orientation before coding.

OutlineDriven/odin-claude-plugin · 26 tokens

book-to-skill

Use when turning a book, course, whitepaper, or comparable source document into a reusable agent skill: the user names a source and asks to distill it, encode its method, or build an agent that works the way it prescribes. Classifies the source as procedure or reference, writes a validated SKILL.md, and proves the…

OutlineDriven/odin-claude-plugin · 78 tokens

dedup-skills

Ledger-first dedup of a skills/ or prompt-directory tree. Use when the user asks to dedup skills, find rules repeated across or within skill files, or check whether skills contradict each other.

OutlineDriven/odin-claude-plugin · 45 tokens

ai-collab-protocols

Surface in-task AI collaboration protocols one tactic at a time, replacing ambiguous references with durable, recoverable handles.

OutlineDriven/odin-claude-plugin · 30 tokens

autobahn

Carve the unsafe part out of a task up front, then run the safe remainder at full strength instead of running the whole thing timidly. Use when a task mixes reversible work with something irreversible or out of scope, such as a schema migration, a deletion, or a change to credentials or data at rest, or when the user…

OutlineDriven/odin-claude-plugin · 93 tokens