ubiquitous-language

ubiquitous-language is a skill for Claude Code, Codex from mattmre/EVOKORE-MCP-PUBLIC. It costs 48 tokens per session (2,796 once invoked), scanned A, original, MIT.

A method for creating a shared glossary for one bounded context, meaning one clearly defined part of a software system. It extracts terms from project data and source-code names into a GLOSSARY.md file.

In plain words
What is it for?
Use it when modelling or refactoring a domain, especially after finding inconsistent terminology between callers. It requires the name of a specific bounded context.
Why use it?
It helps prevent different parts of a project from using the same word for different ideas. It also keeps the glossary limited to the selected area instead of mixing unrelated concepts.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is > [`docs/adr/0005-bounded-contexts.md`](../../../../docs/adr/0005-bounded-contexts.md).

Good fit Use it when modelling or refactoring a domain, especially after finding inconsistent terminology between callers. It requires the name of a specific bounded context.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/mattmre/EVOKORE-MCP-PUBLIC
agentmods
npx agentmods add skills/mattmre/evokore-mcp-public/ubiquitous-language

Made for: Claude Code, Codex.

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 ubiquitous-language

README.md
[![agentmods](https://agentmods.dev/badge/skills/mattmre/evokore-mcp-public/ubiquitous-language/github.svg)](https://agentmods.dev/skills/mattmre/evokore-mcp-public/ubiquitous-language)
Your own site
<a href="https://agentmods.dev/skills/mattmre/evokore-mcp-public/ubiquitous-language"><img src="https://agentmods.dev/badge/skills/mattmre/evokore-mcp-public/ubiquitous-language/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for ubiquitous-language

Your own site · 80×15
<a href="https://agentmods.dev/skills/mattmre/evokore-mcp-public/ubiquitous-language"><img src="https://agentmods.dev/badge/skills/mattmre/evokore-mcp-public/ubiquitous-language.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 48 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,796 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00048 $0.02796
Opus 5 $0.00024 $0.01398
Sonnet 5 $0.00010 $0.00559
Haiku 4.5 $0.00005 $0.00280

Measured 12d ago against content hash 27ca1784aad7, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

ubiquitous-language 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 12d 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.

SKILLS/CONTEXT/ubiquitous-language/SKILL.md · 254 lines

How it starts

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

Ubiquitous Language (Per Bounded Context)

When to use this skill

Use this skill when a single named bounded context (from docs/adr/0005-bounded-contexts.md) needs a crisp glossary — typically right after zoom-out reveals two callers using the same word for different concepts, or as part of a domain-modelling pass before refactor. The trigger is "we need a canonical glossary for context X". This skill REFUSES to run without an explicit context name; there is no repo-wide glossary mode.

Bounded Context Required

This skill is hard-coupled to the EVOKORE-MCP context map in docs/adr/0005-bounded-contexts.md. The eight bounded contexts are:

  1. Skill Registry & Discoverysrc/SkillManager.ts, src/RegistryManager.ts, src/ToolCatalogIndex.ts, src/ToolCatalogPagination.ts, src/ProfileResolver.ts, src/rerank/successRerank.ts.
  2. Proxy & Routingsrc/ProxyManager.ts, src/utils/resolveCommandForPlatform.ts, src/httpUtils.ts.
  3. Auth & Securitysrc/auth/OAuthProvider.ts, src/SecurityManager.ts, src/ComplianceChecker.ts, src/ContainerSandbox.ts.
  4. Session & Continuitysrc/SessionIsolation.ts, src/SessionManifest.ts, src/SessionManifest.schema.ts, src/SessionStore.ts, src/stores/MemorySessionStore.ts, src/stores/FileSessionStore.ts, src/stores/RedisSessionStore.ts, src/HttpServer.ts.
  5. Orchestration & Fleetsrc/OrchestrationRuntime.ts, src/FleetManager.ts, src/ClaimsManager.ts, src/WorkerManager.ts, src/WorkerScheduler.ts, src/TrustLedger.ts.
  6. Audit & Webhookssrc/AuditLog.ts, src/AuditExporter.ts, src/WebhookManager.ts, src/PluginManager.ts.
  7. Telemetry & Analyticssrc/TelemetryManager.ts, src/TelemetryExporter.ts, src/TelemetryIndex.ts, src/SessionAnalyticsManager.ts, src/NavigationAnchorManager.ts.
  8. Memory & Knowledgesrc/MemoryManager.ts.

The voice subsystem is NOT a bounded context (per ADR-0005's "Out-of-context" section); this skill rejects --context voice.

Read the full file on GitHub · 254 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. 12d ago First seen · 254 lines · 48 tokens per session scan A 27ca1784aad7

Subscribe to this mod's changes

ubiquitous-language is a skill published in the GitHub repository mattmre/EVOKORE-MCP-PUBLIC (3 stars, last pushed 3mo ago), licensed MIT. It adds 48 tokens to every session and 2,796 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-31.

Related

Other skills, from other repositories

law-of-similarity

Apply the Law of Similarity — shared colour, shape, or size signals that elements belong to one category. Use when signalling relationships across distance. For grouping by position, use law-of-proximity.

Owl-Listener/designer-skills · 47 tokens

law-of-common-region

Apply the Law of Common Region — a shared container, background, or border groups elements regardless of spacing. Use when grouping must survive a tight layout. For grouping by spacing alone, use law-of-proximity.

Owl-Listener/designer-skills · 48 tokens

version-control-strategy

Define version control for design files, components, and libraries — branching, naming, and release. Use when file history is chaotic. For design system contribution rules, use design-system-governance (design-systems).

Owl-Listener/designer-skills · 50 tokens

presentation-deck

Structure a design presentation for a specific audience and decision. Use when presenting internally. For a portfolio narrative use case-study; for the written argument use design-rationale.

Owl-Listener/designer-skills · 39 tokens

accessibility-test-plan

Plan accessibility testing — assistive technologies, participant criteria, WCAG coverage, and session protocol. Use when scheduling testing with real AT users. Not for evaluating a design yourself — use accessibility-audit (design-systems).

Owl-Listener/designer-skills · 52 tokens

diary-study-plan

Design a diary study — prompts, cadence, duration, participant criteria, and analysis frame. Use when behaviour unfolds over days or weeks. For a single-session study, use usability-test-plan.

Owl-Listener/designer-skills · 45 tokens