ddd-glossary-gen

ddd-glossary-gen is a skill for Claude Code, Codex from serejaris/kimi-skills. It costs 97 tokens per session (1,234 once invoked), scanned A, original, MIT.

A glossary builder for domain-driven design, a software design approach that models a system around the language and concepts of a business domain.

In plain words
What is it for?
Use it to extract terms from a discussion, suggest standard wording, and create a shared-language glossary in Markdown.
Why use it?
It finds ambiguous or duplicate terms and helps teams use consistent names for the same concepts.

Skill for Claude CodeCodex

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

Good fit Use it to extract terms from a discussion, suggest standard wording, and create a shared-language glossary in Markdown.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/serejaris/kimi-skills/ddd-glossary-gen
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.

Any agent
npx skills add serejaris/kimi-skills --skill ddd-glossary-gen
Clone the repo
git clone --depth 1 https://github.com/serejaris/kimi-skills

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 ddd-glossary-gen

README.md
[![agentmods](https://agentmods.dev/badge/skills/serejaris/kimi-skills/ddd-glossary-gen/github.svg)](https://agentmods.dev/skills/serejaris/kimi-skills/ddd-glossary-gen)
Your own site
<a href="https://agentmods.dev/skills/serejaris/kimi-skills/ddd-glossary-gen"><img src="https://agentmods.dev/badge/skills/serejaris/kimi-skills/ddd-glossary-gen/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 ddd-glossary-gen

Your own site · 80×15
<a href="https://agentmods.dev/skills/serejaris/kimi-skills/ddd-glossary-gen"><img src="https://agentmods.dev/badge/skills/serejaris/kimi-skills/ddd-glossary-gen.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 97 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,234 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.00097 $0.01234
Opus 5 $0.00048 $0.00617
Sonnet 5 $0.00019 $0.00247
Haiku 4.5 $0.00010 $0.00123

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

Security

Grade A, and why

ddd-glossary-gen 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 9d 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/ddd-glossary-gen/SKILL.md · 93 lines

How it starts

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

统一语言术语表

从当前对话中提取并规范化领域术语,形成一致的术语表,保存为本地文件。

流程

  1. 扫描对话内容,识别与领域相关的名词、动词和概念
  2. 发现问题
    • 同一个词被用于不同概念(歧义)
    • 不同的词指代同一个概念(同义词冗余)
    • 含义模糊或过度泛化的术语
  3. 提出规范术语表,给出明确的术语选择建议
  4. 写入工作目录下的 UBIQUITOUS_LANGUAGE.md,格式如下
  5. 在对话中输出摘要

输出格式

生成一个 UBIQUITOUS_LANGUAGE.md 文件,结构如下:

# Ubiquitous Language

## Order lifecycle

| Term        | Definition                                              | Aliases to avoid      |
| ----------- | ------------------------------------------------------- | --------------------- |
| **Order**   | A customer's request to purchase one or more items      | Purchase, transaction |
| **Invoice** | A request for payment sent to a customer after delivery | Bill, payment request |

## People

| Term         | Definition                                  | Aliases to avoid       |
| ------------ | ------------------------------------------- | ---------------------- |
| **Customer** | A person or organization that places orders | Client, buyer, account |
| **User**     | An authentication identity in the system    | Login, account         |

## Relationships

- An **Invoice** belongs to exactly one **Customer**
- An **Order** produces one or more **Invoices**

## Example dialogue

> **Dev:** "When a **Customer** places an **Order**, do we create the **Invoice** immediately?"
> **Domain expert:** "No — an **Invoice** is only generated once a **Fulfillment** is confirmed. A single **Order** can produce multiple **Invoices** if items ship in separate **Shipments**."
> **Dev:** "So if a **Shipment** is cancelled before dispatch, no **Invoice** exists for it?"
> **Domain expert:** "Exactly. The **Invoice** lifecycle is tied to the **Fulfillment**, not the **Order**."

## Flagged ambiguities

- "account" was used to mean both **Customer** and **User** — these are distinct concepts: a **Customer** places orders, while a **User** is an authentication identity that may or may not represent a **Customer**.

规则

  • 要有主见。 当同一概念存在多个词汇时,选定一个最佳术语,其余列为"应避免的别名"。
  • 明确标记冲突。 如果某个术语在对话中被模糊使用,在"已标记的歧义"部分指出,并给出明确建议。
  • 只收录领域专家关心的术语。 跳过模块名或类名,除非它们在领域语言中有实际意义。
  • 定义要精炼。 最多一句话。定义它是什么,而不是它做什么。
  • 展示关系。 使用加粗的术语名称,在明显的地方标注基数关系。
  • 只收录领域术语。 跳过通用编程概念(数组、函数、接口等),除非它们在领域中有特殊含义。
  • 将术语分组到多个表格中,当自然的类别出现时(例如按子域、生命周期或角色分组)。每个分组有自己的标题和表格。如果所有术语属于同一个内聚的领域,用一个表格就够了——不要强行分组。
  • 编写示例对话。 一段简短的对话(3-5 轮交流),由开发者和领域专家进行,展示这些术语如何在自然交流中配合使用。对话应澄清相关概念之间的边界,并展示术语的精确用法。

Read the full file on GitHub · 93 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 9d ago First seen · 93 lines · 97 tokens per session scan A 8db80baeef93

Subscribe to this mod's changes

ddd-glossary-gen is a skill published in the GitHub repository serejaris/kimi-skills (6 stars, last pushed 1mo ago), licensed MIT. It adds 97 tokens to every session and 1,234 once invoked, about $0.0005 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-03.

Related

Other skills, from other repositories

offensive-wifi

Wireless / 802.11 attack methodology for red team engagements and wireless security assessments. Covers monitor-mode setup, WPA/WPA2-PSK handshake capture and PMKID attacks, WPA3 SAE downgrade and Dragonblood, WPA-Enterprise (EAP) attacks (MSCHAPv2 cracking, EAP-TLS cert theft, evil-twin RADIUS), Karma / Known Beacons…

SnailSploit/Claude-Red · 183 tokens

syndic

Gère un parc de copropriétés en France avec vue portfolio consolidée. Couvre administration, comptabilité (décret 2005, plan comptable copro, 5 annexes), assemblées générales (convocation, PV, notification), appels de fonds, travaux, fournisseurs, recouvrement d'impayés et transition de syndic. Maîtrise les majorités…

romainsimon/paperasse · 194 tokens

offensive-bluetooth-classic

Bluetooth Classic (BR/EDR) attack methodology — device discovery, service enumeration via SDP, LMP/L2CAP layer attacks, legacy PIN cracking (BlueBorne / KNOB), Bluetooth file-transfer abuse (BlueSnarfing legacy), unauthenticated profile abuse (HSP, HFP, OPP), and modern relevance against older industrial / automotive…

SnailSploit/Claude-Red · 123 tokens

design-md-validator

Validate DESIGN.md files against the official Google specification using the @google/design.md CLI linter. Works with local files. Use when the user wants to lint a DESIGN.md, check spec compliance, find broken token references, verify WCAG contrast ratios, diff two versions, export tokens to Tailwind or DTCG format…

fabricioctelles/skills · 170 tokens

agent-wiki

Incremental LLM-friendly wiki generator for Obsidian note vaults. Use when: (1) Building wiki from notes, (2) Ingesting notes to wiki, (3) Obsidian LLM wiki, (4) Incremental knowledge base management. Triggers: 'build wiki from notes', 'ingest notes to wiki', 'Obsidian LLM wiki', 'incremental knowledge base'.

Dianel555/DSkills · 89 tokens

agent-ready-oauth-protected-resource

Sub-skill de agent-ready-cloudflare: Implement OAuth Protected Resource Metadata.

fabricioctelles/skills · 23 tokens