@dforge-core/dforge-mcp 0.1.5 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +24 -0
- package/dist/server.js +290 -290
- package/package.json +1 -1
- package/skills/dforge-mcp-author/SKILL.md +2 -2
- package/skills/dforge-mcp-author/references/action-dsl.md +1 -0
- package/skills/dforge-mcp-author/references/column-types.md +20 -0
- package/skills/dforge-mcp-author/references/field-types.md +1 -1
- package/skills/dforge-mcp-author/references/security.md +5 -1
- package/skills/dforge-mcp-author/references/translations.md +25 -2
- package/skills/dforge-mcp-author/references/validation-checklist.md +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,30 @@ All notable changes to `@dforge-core/dforge-mcp`. This project uses semver-ish
|
|
|
4
4
|
`0.1.0-rc.N` pre-release tags; the published version is set at publish time via
|
|
5
5
|
the release workflow, so committed `package.json` versions are placeholders.
|
|
6
6
|
|
|
7
|
+
## 0.1.6
|
|
8
|
+
|
|
9
|
+
### Skill
|
|
10
|
+
- `dforge-mcp-author`: documentation updates to the authoring references (no
|
|
11
|
+
tool/behavior changes).
|
|
12
|
+
- **`entityLink()` action-DSL built-in.** Documented
|
|
13
|
+
`entityLink('entityCd', record, description?)` for populating an
|
|
14
|
+
`entitylink` (jsonb) column from an action's `execute:` block — reads the
|
|
15
|
+
record's PK columns and stores them as **strings** so snowflake/cuid ids
|
|
16
|
+
(> 2^53) stay exact, with an optional display `description`
|
|
17
|
+
(`action-dsl.md`, `field-types.md`).
|
|
18
|
+
- **Referential actions on FK references.** Documented the optional
|
|
19
|
+
`onDelete` / `onUpdate` keys on a `references` entry (`cascade`, `setNull`,
|
|
20
|
+
`restrict`, `noAction`; omitted = `noAction`), including nullable-column
|
|
21
|
+
requirements for `setNull`, the `cuid`-PK no-op note for `onUpdate`, and
|
|
22
|
+
the self-healing drop/recreate-on-change behavior (`column-types.md`).
|
|
23
|
+
- **Role labels are translated and completeness-enforced.** Corrected the
|
|
24
|
+
docs: `security/roles.json` carries `description` + `rights` only (**no
|
|
25
|
+
`label`** — `additionalProperties: false`); the localized role display name
|
|
26
|
+
lives in the translation files as `roles.<code>.label`, module-qualified,
|
|
27
|
+
and is required in **every** locale including the `en-US` base or install
|
|
28
|
+
fails (`security.md`, `translations.md`, `SKILL.md`,
|
|
29
|
+
`validation-checklist.md`).
|
|
30
|
+
|
|
7
31
|
## 0.1.5
|
|
8
32
|
|
|
9
33
|
### Changed
|