mdkg 0.3.0 → 0.3.1
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 +44 -1
- package/CLI_COMMAND_MATRIX.md +1176 -0
- package/README.md +32 -1
- package/dist/cli.js +121 -5
- package/dist/command-contract.json +7473 -0
- package/dist/commands/doctor.js +370 -86
- package/dist/commands/fix.js +924 -0
- package/dist/commands/format.js +8 -2
- package/dist/commands/skill.js +13 -3
- package/dist/commands/skill_support.js +3 -3
- package/dist/commands/status.js +270 -0
- package/dist/commands/subgraph.js +300 -0
- package/dist/commands/validate.js +1 -1
- package/dist/commands/workspace.js +19 -7
- package/dist/init/CLI_COMMAND_MATRIX.md +13 -0
- package/dist/init/README.md +16 -0
- package/dist/init/init-manifest.json +3 -3
- package/dist/util/argparse.js +1 -0
- package/package.json +10 -3
package/CHANGELOG.md
CHANGED
|
@@ -6,7 +6,50 @@ This project follows a pragmatic changelog style inspired by Keep a Changelog. V
|
|
|
6
6
|
|
|
7
7
|
mdkg is pre-v1 public alpha software. Command, graph, cache, bundle, and DAL contracts may change quickly while the project converges on a stable v1 surface.
|
|
8
8
|
|
|
9
|
-
##
|
|
9
|
+
## Unreleased
|
|
10
|
+
|
|
11
|
+
### Planned
|
|
12
|
+
|
|
13
|
+
- No changes yet.
|
|
14
|
+
|
|
15
|
+
## 0.3.1 - 2026-06-11
|
|
16
|
+
|
|
17
|
+
### Added
|
|
18
|
+
|
|
19
|
+
- Added `mdkg status --json` as a read-only operator health summary covering
|
|
20
|
+
package/release metadata, Git state, graph/index freshness, selected-goal
|
|
21
|
+
state, project DB verification state, and generated cache health.
|
|
22
|
+
- Added strict typed doctor checks with `mdkg doctor --strict --json`,
|
|
23
|
+
including stable check ids, status/severity fields, remediation text, selected
|
|
24
|
+
goal stale/achieved detection, and enabled project DB verification failures.
|
|
25
|
+
- Added dry-run-only `mdkg fix plan --json` with receipt-shaped repair plans for
|
|
26
|
+
generated index/cache state, missing graph references, and duplicate local ids.
|
|
27
|
+
- Added read-only `mdkg subgraph audit` and `mdkg subgraph upgrade-plan`
|
|
28
|
+
receipts for child graph source-path health, root-owned bundle safety,
|
|
29
|
+
materialized-tree safety, dirty child repo refusal, and downstream sync/verify
|
|
30
|
+
planning.
|
|
31
|
+
- Added generated `dist/command-contract.json` metadata and `npm run
|
|
32
|
+
cli:contract` so command docs can be generated from mdkg-native command
|
|
33
|
+
policy metadata before `mdkg.dev` launch.
|
|
34
|
+
|
|
35
|
+
### Changed
|
|
36
|
+
|
|
37
|
+
- Hardened mutating command paths with mutation locks and atomic writes for
|
|
38
|
+
format, skill, and workspace updates.
|
|
39
|
+
- Extended prepublish readiness with operator-health, fix-plan,
|
|
40
|
+
branch-conflict, and command-docs packed smoke coverage.
|
|
41
|
+
- Updated README, `CLI_COMMAND_MATRIX.md`, init assets, help snapshots, and
|
|
42
|
+
publish-readiness assertions for the new operator-health, fix-planning,
|
|
43
|
+
subgraph safety, branch safety, generated command contract, and docs
|
|
44
|
+
readiness surfaces.
|
|
45
|
+
|
|
46
|
+
### Security
|
|
47
|
+
|
|
48
|
+
- Kept repair planning, subgraph upgrade planning, and operator health commands
|
|
49
|
+
read-only by default; apply behavior, child repo mutation, worker execution,
|
|
50
|
+
and public event/reducer/lease/materializer CLI remain deferred.
|
|
51
|
+
|
|
52
|
+
## 0.3.0 - 2026-06-06
|
|
10
53
|
|
|
11
54
|
### Added
|
|
12
55
|
|