mdkg 0.3.9 → 0.4.0
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 +31 -0
- package/CLI_COMMAND_MATRIX.md +2 -2
- package/README.md +1 -1
- package/dist/command-contract.json +2 -2
- package/dist/init/README.md +3 -3
- package/dist/init/init-manifest.json +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,37 @@ mdkg is pre-v1 public alpha software. Command, graph, cache, bundle, and DAL con
|
|
|
8
8
|
|
|
9
9
|
## Unreleased
|
|
10
10
|
|
|
11
|
+
## 0.4.0 - 2026-06-27
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
|
|
15
|
+
- Added the `0.4.0` public launch-readiness lane for mdkg.dev and
|
|
16
|
+
docs.mdkg.dev with explicit source metadata, changelog, generated-doc,
|
|
17
|
+
npm prepublish, npm postpublish, Vercel production, and Chrome live-validation
|
|
18
|
+
blockers.
|
|
19
|
+
- Added public release-note and docs coverage for the `0.4.0` launch surface,
|
|
20
|
+
including per-release changelog cards, launch-track copy, and source-backed
|
|
21
|
+
currentness requirements.
|
|
22
|
+
- Added Vercel production currentness and Chrome postpublish validation as
|
|
23
|
+
required evidence before mdkg.dev or docs.mdkg.dev can claim the `0.4.0`
|
|
24
|
+
launch is live.
|
|
25
|
+
|
|
26
|
+
### Changed
|
|
27
|
+
|
|
28
|
+
- Updated mdkg.dev and docs.mdkg.dev source copy for the `0.4.0` release target,
|
|
29
|
+
including config overlays, custom skill mirrors, `COLLABORATION.md`,
|
|
30
|
+
MANIFEST/SPEC compatibility, and Plan -> Work -> Evidence launch messaging.
|
|
31
|
+
- Updated public docs and examples to use the current `mdkg pack --profile
|
|
32
|
+
concise` syntax instead of stale `--pack-profile concise` examples.
|
|
33
|
+
- Aligned source-visible package references, generated release-note data, and
|
|
34
|
+
generated CLI docs with the `0.4.0` release target.
|
|
35
|
+
|
|
36
|
+
### Fixed
|
|
37
|
+
|
|
38
|
+
- Fixed mdkg.dev primary CTA gradient rendering by moving the ocean gradient to
|
|
39
|
+
an overscanned clipped layer instead of painting it directly on the rounded
|
|
40
|
+
button surface.
|
|
41
|
+
|
|
11
42
|
## 0.3.9 - 2026-06-27
|
|
12
43
|
|
|
13
44
|
### Added
|
package/CLI_COMMAND_MATRIX.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# CLI Command Matrix
|
|
2
2
|
|
|
3
|
-
as_of: 2026-06-
|
|
4
|
-
package_version_in_source: 0.
|
|
3
|
+
as_of: 2026-06-27
|
|
4
|
+
package_version_in_source: 0.4.0
|
|
5
5
|
source: live help from `src/cli.ts`, runtime command handlers, and `dec-15`..`dec-18`
|
|
6
6
|
status: canonical single-source command and flag reference for mdkg
|
|
7
7
|
|
package/README.md
CHANGED
|
@@ -14,7 +14,7 @@ mdkg stays deliberately boring:
|
|
|
14
14
|
- first-class rebuildable SQLite cache through built-in `node:sqlite`
|
|
15
15
|
- no daemon, hosted index, or vector DB
|
|
16
16
|
|
|
17
|
-
Current package version in source: `0.
|
|
17
|
+
Current package version in source: `0.4.0`
|
|
18
18
|
|
|
19
19
|
mdkg is still pre-v1 public alpha software. The public package is usable, but graph, cache, bundle, and DAL contracts may continue to change quickly while the project converges on a stable v1 surface.
|
|
20
20
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schema_version": 1,
|
|
3
3
|
"tool": "mdkg",
|
|
4
|
-
"package_version": "0.
|
|
4
|
+
"package_version": "0.4.0",
|
|
5
5
|
"source": {
|
|
6
6
|
"help_targets": "scripts/cli_help_targets.js",
|
|
7
7
|
"command_matrix": "CLI_COMMAND_MATRIX.md"
|
|
@@ -9128,5 +9128,5 @@
|
|
|
9128
9128
|
}
|
|
9129
9129
|
}
|
|
9130
9130
|
],
|
|
9131
|
-
"contract_hash": "
|
|
9131
|
+
"contract_hash": "35018c8d8e9827545d061882bc55ea42d3bdbfff1224ab6414aa8e53a443e4a0"
|
|
9132
9132
|
}
|
package/dist/init/README.md
CHANGED
|
@@ -96,9 +96,9 @@ Read `AGENT_START.md` first when this repo includes it.
|
|
|
96
96
|
|
|
97
97
|
## Pack Profiles
|
|
98
98
|
|
|
99
|
-
- `--
|
|
100
|
-
- `--
|
|
101
|
-
- `--
|
|
99
|
+
- `--profile standard`: full body (current default behavior)
|
|
100
|
+
- `--profile concise`: summary body with code stripped by default
|
|
101
|
+
- `--profile headers`: metadata-only body (`none`)
|
|
102
102
|
|
|
103
103
|
`--max-tokens` is a heuristic limit based on `chars / 4`.
|
|
104
104
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schema_version": 1,
|
|
3
3
|
"tool": "mdkg",
|
|
4
|
-
"mdkg_version": "0.
|
|
4
|
+
"mdkg_version": "0.4.0",
|
|
5
5
|
"files": [
|
|
6
6
|
{
|
|
7
7
|
"path": ".mdkg/config.json",
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
{
|
|
67
67
|
"path": ".mdkg/README.md",
|
|
68
68
|
"category": "mdkg_doc",
|
|
69
|
-
"sha256": "
|
|
69
|
+
"sha256": "faaf4bb697eded7c6baf6cb44a2a6c04feabfc250cac3bcb4be6b95e7a3bb02a"
|
|
70
70
|
},
|
|
71
71
|
{
|
|
72
72
|
"path": ".mdkg/skills/author-mdkg-skill/SKILL.md",
|