dotmd-cli 0.16.0 → 0.16.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/README.md +2 -2
- package/dotmd.config.example.mjs +1 -1
- package/package.json +1 -1
- package/src/config.mjs +3 -3
package/README.md
CHANGED
|
@@ -117,12 +117,12 @@ The default plan vocabulary is shaped around the **unstuck-action test**: every
|
|
|
117
117
|
| `planned` | Wait for trigger | Queued; not yet ready to execute. |
|
|
118
118
|
| `blocked` | **Monitor** | External arrival on its own schedule (hardware, vendor, third-party rollout). You can't speed it up. |
|
|
119
119
|
| `partial` | **Spawn successors** | Shipped most of the plan; tail deferred. Body should reference successor plans tracking the tail. Visible but quiet (no nagging). |
|
|
120
|
-
| `paused` | **Re-evaluate** |
|
|
120
|
+
| `paused` | **Re-evaluate** | Started but stopped mid-work; needs near-term review. NOT quiet — short (3-day) stale threshold so resume-decisions don't decay. |
|
|
121
121
|
| `awaiting` | **Ask** | Needs a human decision or input. NOT quiet — pings get forgotten, so this status generates stale pressure to chase the answer. |
|
|
122
122
|
| `queued-after` | **Check predecessor** | Sequenced behind another plan; can start once that one ships. Quiet. |
|
|
123
123
|
| `archived` | — | No longer relevant; auto-moved to the archive directory on transition. |
|
|
124
124
|
|
|
125
|
-
Each *quiet* status (`partial`, `
|
|
125
|
+
Each *quiet* status (`partial`, `queued-after`, `archived`) is exempt from stale-warning pressure but still appears in active scope and metrics — quietness is a presentation flag, not a closure flag. `awaiting` and `paused` deliberately stay loud so unanswered questions and stalled mid-flight work don't decay into invisible backlog.
|
|
126
126
|
|
|
127
127
|
> **Heads-up:** versions before 0.15 included a `done` plan status in the defaults. It saw effectively zero real-world use (plans went `in-session`/`active` → `archived` directly), so it was dropped from the built-in vocabulary. To finish a plan, run `dotmd archive <plan-file>` — or, if you preferred the previous behavior, add `done` back via the `types.plan.statuses` key in your config.
|
|
128
128
|
|
package/dotmd.config.example.mjs
CHANGED
|
@@ -50,7 +50,7 @@ export const excludeDirs = ['evidence'];
|
|
|
50
50
|
// 'planned': { context: 'listed', staleDays: 30, requiresModule: true },
|
|
51
51
|
// 'blocked': { context: 'listed', staleDays: 30, requiresModule: true },
|
|
52
52
|
// 'partial': { context: 'expanded', requiresModule: true, quiet: true }, // shipped + deferred tail; visible, no nagging
|
|
53
|
-
// 'paused': { context: 'listed',
|
|
53
|
+
// 'paused': { context: 'listed', staleDays: 3, requiresModule: true }, // stopped mid-work, near-term review — loud (short stale threshold)
|
|
54
54
|
// 'awaiting': { context: 'listed', staleDays: 14, requiresModule: true }, // human input/decision wait — NOT quiet (pings get forgotten)
|
|
55
55
|
// 'queued-after': { context: 'counted', requiresModule: true, quiet: true }, // sequenced behind another plan
|
|
56
56
|
// 'archived': { context: 'counted', archive: true, terminal: true, quiet: true },
|
package/package.json
CHANGED
package/src/config.mjs
CHANGED
|
@@ -28,7 +28,7 @@ const DEFAULTS = {
|
|
|
28
28
|
listed: ['planned', 'blocked', 'paused', 'awaiting'],
|
|
29
29
|
counted: ['queued-after', 'archived'],
|
|
30
30
|
},
|
|
31
|
-
staleDays: { 'in-session': 1, active: 14, planned: 30, blocked: 30, awaiting: 14 },
|
|
31
|
+
staleDays: { 'in-session': 1, active: 14, planned: 30, blocked: 30, paused: 3, awaiting: 14 },
|
|
32
32
|
},
|
|
33
33
|
doc: {
|
|
34
34
|
statuses: ['draft', 'active', 'review', 'reference', 'deprecated', 'archived'],
|
|
@@ -55,8 +55,8 @@ const DEFAULTS = {
|
|
|
55
55
|
|
|
56
56
|
lifecycle: {
|
|
57
57
|
archiveStatuses: ['archived'],
|
|
58
|
-
skipStaleFor: ['archived', 'reference', 'partial', '
|
|
59
|
-
skipWarningsFor: ['archived', 'partial', '
|
|
58
|
+
skipStaleFor: ['archived', 'reference', 'partial', 'queued-after'],
|
|
59
|
+
skipWarningsFor: ['archived', 'partial', 'queued-after'],
|
|
60
60
|
terminalStatuses: ['archived', 'deprecated', 'reference'],
|
|
61
61
|
},
|
|
62
62
|
|