-
Notifications
You must be signed in to change notification settings - Fork 2
feat(domain-driven-design): extract plugin; move domain-modeling to ubiquitous-language #279
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
7704091
feat(domain-driven-design): extract plugin; move domain-modeling to u…
kyle-sexton 6981e9c
feat(domain-driven-design): bump companion plugins with retargeted re…
kyle-sexton 6cdec94
Merge remote-tracking branch 'origin/main' into feat/domain-driven-de…
kyle-sexton File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| { | ||
| "$schema": "https://json.schemastore.org/claude-code-plugin-manifest.json", | ||
| "name": "domain-driven-design", | ||
| "version": "0.1.0", | ||
| "description": "Domain-driven-design practice skills. Today: actively maintains a consuming project's ubiquitous-language glossary — resolves ambiguous or overloaded terms, records canonical language and rejected synonyms, sharpens what-it-IS definitions, and routes entries to already-known bounded contexts without discovering boundaries.", | ||
| "author": { | ||
| "name": "Melodic Software", | ||
| "email": "info@melodicsoftware.com" | ||
| }, | ||
| "license": "MIT", | ||
| "keywords": [ | ||
| "ddd", | ||
| "domain-driven-design", | ||
| "ubiquitous-language", | ||
| "glossary", | ||
| "domain-modeling", | ||
| "vocabulary", | ||
| "bounded-contexts", | ||
| "skill" | ||
| ] | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| # Changelog | ||
|
|
||
| All notable changes to the `domain-driven-design` plugin are documented here. Format follows | ||
| [Keep a Changelog](https://keepachangelog.com/en/1.1.0/); this plugin uses semantic versioning. | ||
|
|
||
| ## [0.1.0] | ||
|
|
||
| ### Added | ||
|
|
||
| - **Initial release.** `/domain-driven-design:ubiquitous-language` — moved from the | ||
| `planning` plugin, where it lived as `/planning:domain-modeling`. The skill maintains | ||
| the consuming project's active ubiquitous-language glossary (canonical terms, rejected | ||
| synonyms, what-it-IS definitions, routing among already-known bounded contexts) and | ||
| explicitly refuses bounded-context discovery — the old name over-promised modeling; the | ||
| concern is DDD language stewardship. `planning` now declares a dependency on this | ||
| plugin, so its pipeline keeps invoking the skill cross-plugin. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,37 @@ | ||
| # domain-driven-design | ||
|
|
||
| A Claude Code plugin owning **DDD practice skills** — the stewardship disciplines of | ||
| domain-driven design, independent of any one planning or workshop workflow. | ||
|
|
||
| | Skill | What it does | | ||
| |---|---| | ||
| | `/domain-driven-design:ubiquitous-language` | Actively maintains the consuming project's ubiquitous-language glossary: resolves ambiguous or overloaded terms, records canonical language and rejected synonyms, and routes entries to already-known bounded contexts — never discovering boundaries itself. | | ||
|
|
||
| Deferred: `context-mapping` and `aggregate-design` join this plugin when those | ||
| practices materialize as skills. | ||
|
|
||
| Bounded-context **discovery** is out of scope here — workshop-driven discovery lives in | ||
| the standalone `event-storming` plugin, which `ubiquitous-language` soft-routes to when | ||
| boundaries are missing. | ||
|
|
||
| ## Works in any repo | ||
|
|
||
| - **Reads your conventions, assumes none.** Glossary filename, location, shape, and | ||
| context map come from the consuming project; where none exist, creation is lazy and | ||
| discovery-first — never a prescribed universal filename. | ||
| - **No `userConfig`, no persistent state, no network.** | ||
|
|
||
| ## Install | ||
|
|
||
| ```shell | ||
| /plugin marketplace add melodic-software/claude-code-plugins | ||
| /plugin install domain-driven-design@melodic-software | ||
| ``` | ||
|
|
||
| The `planning` plugin declares a dependency on this plugin, so installing `planning` | ||
| installs it automatically. | ||
|
|
||
| ## License | ||
|
|
||
| MIT (SPDX-License-Identifier: MIT). See the `LICENSE` file at the root of the | ||
| melodic-software/claude-code-plugins repository. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.