mdkg 0.5.1 → 0.5.2
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 +22 -0
- package/CLI_COMMAND_MATRIX.md +10 -2
- package/README.md +11 -4
- package/dist/cli.js +54 -2
- package/dist/command-contract.json +2007 -111
- package/dist/commands/git_materialize.js +1100 -0
- package/dist/init/init-manifest.json +1 -1
- package/dist/util/argparse.js +1 -0
- package/package.json +4 -3
package/dist/util/argparse.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mdkg",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.2",
|
|
4
4
|
"description": "Git-native project memory for AI coding agents",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"bin": {
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
"security:verify": "node scripts/verify-security-remediation.js",
|
|
15
15
|
"test:coverage": "npm run build && npm run build:test && node --test --experimental-test-coverage dist/tests/**/*.test.js",
|
|
16
16
|
"smoke:consumer": "npm run build && node scripts/smoke-consumer.js",
|
|
17
|
+
"smoke:git-materialize": "npm run build && node scripts/smoke-git-materialize.js",
|
|
17
18
|
"smoke:loop": "npm run build && node scripts/smoke-loop.js",
|
|
18
19
|
"smoke:matrix": "npm run build && node scripts/smoke-command-matrix.js",
|
|
19
20
|
"smoke:upgrade": "npm run build && node scripts/smoke-upgrade.js",
|
|
@@ -66,9 +67,9 @@
|
|
|
66
67
|
"cli:snapshot": "npm run build && node scripts/cli_help_snapshot.js",
|
|
67
68
|
"cli:check": "npm run build && node scripts/cli_help_snapshot.js --check",
|
|
68
69
|
"cli:contract": "npm run build && node scripts/generate-command-contract.js --check",
|
|
69
|
-
"ci:release": "npm run test && npm run cli:check && npm run cli:contract && npm run docs:check && npm run smoke:loop && npm run security:verify && node scripts/assert-publish-ready.js",
|
|
70
|
+
"ci:release": "npm run test && npm run cli:check && npm run cli:contract && npm run docs:check && npm run smoke:git-materialize && npm run smoke:loop && npm run security:verify && node scripts/assert-publish-ready.js",
|
|
70
71
|
"prepack": "npm run build && npm run security:verify && node scripts/assert-publish-ready.js",
|
|
71
|
-
"prepublishOnly": "npm run test && npm run cli:check && npm run cli:contract && npm run docs:check && node dist/cli.js validate && npm run security:verify && npm run smoke:consumer && npm run smoke:loop && npm run smoke:matrix && npm run smoke:upgrade && npm run smoke:init && npm run smoke:capabilities && npm run smoke:db && npm run smoke:db-queue && npm run smoke:db-queue-cli && npm run smoke:db-events && npm run smoke:db-materializer && npm run smoke:db-snapshot && npm run smoke:archive-work && npm run smoke:work-invocation && npm run smoke:cli-ux-polish && npm run smoke:operator-health && npm run smoke:fix-plan && npm run smoke:branch-conflicts && npm run smoke:id-repair && npm run smoke:command-docs && npm run smoke:spike && npm run smoke:goal-lifecycle && npm run smoke:semantic-refs && npm run smoke:checkpoint-templates && npm run smoke:handoff && npm run smoke:warning-ux && npm run smoke:integration-ux && npm run smoke:mdkg-dev && npm run smoke:mdkg-dev-docs && npm run smoke:mdkg-dev-seo && npm run smoke:mdkg-dev-polish-pass2 && npm run smoke:mdkg-dev-polish-pass3 && npm run smoke:mdkg-dev-polish-pass4 && npm run smoke:mdkg-dev-polish-pass5 && npm run smoke:mdkg-dev-a11y && npm run smoke:mdkg-dev-perf && npm run smoke:demo-graph && npm run smoke:bundle && npm run smoke:graph-clone && npm run smoke:mcp && npm run smoke:subgraph && npm run smoke:visibility && npm run smoke:sqlite && npm run smoke:parallel && npm run smoke:goal && node scripts/assert-publish-ready.js",
|
|
72
|
+
"prepublishOnly": "npm run test && npm run cli:check && npm run cli:contract && npm run docs:check && node dist/cli.js validate && npm run security:verify && npm run smoke:consumer && npm run smoke:git-materialize && npm run smoke:loop && npm run smoke:matrix && npm run smoke:upgrade && npm run smoke:init && npm run smoke:capabilities && npm run smoke:db && npm run smoke:db-queue && npm run smoke:db-queue-cli && npm run smoke:db-events && npm run smoke:db-materializer && npm run smoke:db-snapshot && npm run smoke:archive-work && npm run smoke:work-invocation && npm run smoke:cli-ux-polish && npm run smoke:operator-health && npm run smoke:fix-plan && npm run smoke:branch-conflicts && npm run smoke:id-repair && npm run smoke:command-docs && npm run smoke:spike && npm run smoke:goal-lifecycle && npm run smoke:semantic-refs && npm run smoke:checkpoint-templates && npm run smoke:handoff && npm run smoke:warning-ux && npm run smoke:integration-ux && npm run smoke:mdkg-dev && npm run smoke:mdkg-dev-docs && npm run smoke:mdkg-dev-seo && npm run smoke:mdkg-dev-polish-pass2 && npm run smoke:mdkg-dev-polish-pass3 && npm run smoke:mdkg-dev-polish-pass4 && npm run smoke:mdkg-dev-polish-pass5 && npm run smoke:mdkg-dev-a11y && npm run smoke:mdkg-dev-perf && npm run smoke:demo-graph && npm run smoke:bundle && npm run smoke:graph-clone && npm run smoke:mcp && npm run smoke:subgraph && npm run smoke:visibility && npm run smoke:sqlite && npm run smoke:parallel && npm run smoke:goal && node scripts/assert-publish-ready.js",
|
|
72
73
|
"postinstall": "node scripts/postinstall.js",
|
|
73
74
|
"smoke:subgraph": "npm run build && node scripts/smoke-subgraph.js"
|
|
74
75
|
},
|