mdkg 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 CHANGED
@@ -6,7 +6,13 @@ 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
- ## 0.1.5 - Unreleased
9
+ ## 0.1.6 - 2026-06-01
10
+
11
+ ### Fixed
12
+
13
+ - Treat `feat` nodes as task-like for `mdkg task start/update/done`, closing the selected-goal loop when `mdkg goal next` returns a feature as the next scoped work item.
14
+
15
+ ## 0.1.5 - 2026-06-01
10
16
 
11
17
  ### Added
12
18
 
@@ -24,7 +30,7 @@ mdkg is pre-v1 public alpha software. Command, graph, cache, bundle, and DAL con
24
30
  - Goal required checks are report-only guidance in this release. Agents run commands themselves and record evidence back into mdkg.
25
31
  - Skill self-improvement during goal execution is recorded as candidates or proposal work unless the active node is explicit skill-maintenance.
26
32
 
27
- ## 0.1.4 - Unreleased
33
+ ## 0.1.4 - 2026-06-01
28
34
 
29
35
  ### Added
30
36
 
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.1.5`
17
+ Current package version in source: `0.1.6`
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
 
package/dist/cli.js CHANGED
@@ -542,7 +542,7 @@ function printTaskHelp(log, subcommand) {
542
542
  log(" mdkg task update <id-or-qid> [options] [--json]");
543
543
  log(' mdkg task done <id-or-qid> [--checkpoint "<title>"] [options] [--json]');
544
544
  log("\nNotes:");
545
- log(" `mdkg task ...` only supports task, bug, and test nodes in this wave.");
545
+ log(" `mdkg task ...` only supports feat, task, bug, and test nodes.");
546
546
  log(" Feat and epic closeout remain checkpoint-first guidance plus manual parent updates.");
547
547
  printGlobalOptions(log);
548
548
  }
@@ -22,7 +22,7 @@ const atomic_1 = require("../util/atomic");
22
22
  const lock_1 = require("../util/lock");
23
23
  const event_support_1 = require("./event_support");
24
24
  const checkpoint_1 = require("./checkpoint");
25
- const MUTABLE_TASK_TYPES = new Set(["task", "bug", "test"]);
25
+ const MUTABLE_TASK_TYPES = new Set(["feat", "task", "bug", "test"]);
26
26
  const SKILL_SLUG_RE = /^[a-z0-9]+(?:-[a-z0-9]+)*$/;
27
27
  function parseCsvList(raw) {
28
28
  if (!raw) {
@@ -113,7 +113,7 @@ function loadMutableTaskNode(root, idOrQid, wsHint) {
113
113
  throw new errors_1.UsageError(`cannot mutate read-only subgraph node ${node.qid}; update the source workspace for subgraph ${node.source.subgraph_alias}`);
114
114
  }
115
115
  if (!MUTABLE_TASK_TYPES.has(node.type)) {
116
- throw new errors_1.UsageError(`mdkg task only supports task, bug, and test nodes; use markdown editing for ${node.type}:${node.id}`);
116
+ throw new errors_1.UsageError(`mdkg task only supports feat, task, bug, and test nodes; use markdown editing for ${node.type}:${node.id}`);
117
117
  }
118
118
  const filePath = path_1.default.resolve(root, node.path);
119
119
  const content = fs_1.default.readFileSync(filePath, "utf8");
@@ -42,7 +42,7 @@ Agent operating prompt:
42
42
  - Mark archive sidecars public only with explicit `mdkg archive add --visibility public` intent.
43
43
  - Treat sidecar `.md` plus deterministic `.zip` caches as the commit-eligible archive record; validation and `mdkg archive verify` both check ZIP payload integrity.
44
44
  - Before committing repos that track archive caches or `.mdkg/bundles/`, run `mdkg archive compress --all`, `mdkg archive verify --json`, `mdkg bundle create --profile private`, and `mdkg bundle verify .mdkg/bundles/private/all.mdkg.zip`.
45
- - Use `mdkg task start/update/done` for structured task, bug, and test lifecycle fields.
45
+ - Use `mdkg task start/update/done` for structured feature, task, bug, and test lifecycle fields.
46
46
  - Use `mdkg upgrade` to preview scaffold updates; only run `mdkg upgrade --apply` after reviewing the receipt.
47
47
  - Keep nuanced summaries, body text, and manual parent closeout edits in markdown.
48
48
  - Use `mdkg event enable` only if `events.jsonl` is missing and provenance should be restored.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "schema_version": 1,
3
3
  "tool": "mdkg",
4
- "mdkg_version": "0.1.5",
4
+ "mdkg_version": "0.1.6",
5
5
  "files": [
6
6
  {
7
7
  "path": ".mdkg/config.json",
@@ -186,7 +186,7 @@
186
186
  {
187
187
  "path": "AGENT_START.md",
188
188
  "category": "startup_doc",
189
- "sha256": "bb8654d11adb2ed6cb45f3514bbf7fad8fe6cda8a2e0e1676462542563df0df9"
189
+ "sha256": "7676e534b2f161a19764de666d9362b9ee1c6cdec6ec9fdfacab2eb52ce0e80d"
190
190
  },
191
191
  {
192
192
  "path": "AGENTS.md",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mdkg",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "Markdown Knowledge Graph",
5
5
  "license": "MIT",
6
6
  "bin": {