@dreki-gg/taskman 0.3.1 → 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/dist/cli.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { J as writeTasksJsonl, N as readInitiativesManifest, P as upsertInitiativeEntry, S as initiativeRollup, T as reconcileInitiativeForPlan, V as upsertPlanEntry, W as saveHandoff, X as makePlanRuntime, _ as applyInitiativeReconcile, a as filterPlans, b as collectPlanDrift, d as setTaskStatus, f as nextTaskId, g as resolvePlanByName, i as loadInitiativeListItems, l as sortPlans, m as loadPlanData, n as formatInitiativeList, o as formatPlanList, p as toKebabCase, s as loadPlanListItems, t as filterInitiatives, u as appendDeferredTask, v as applyReconcile, y as collectInitiativeDrift, z as readPlansManifest } from "./initiatives-
|
|
2
|
+
import { J as writeTasksJsonl, N as readInitiativesManifest, P as upsertInitiativeEntry, S as initiativeRollup, T as reconcileInitiativeForPlan, V as upsertPlanEntry, W as saveHandoff, X as makePlanRuntime, _ as applyInitiativeReconcile, a as filterPlans, b as collectPlanDrift, d as setTaskStatus, f as nextTaskId, g as resolvePlanByName, i as loadInitiativeListItems, l as sortPlans, m as loadPlanData, n as formatInitiativeList, o as formatPlanList, p as toKebabCase, s as loadPlanListItems, t as filterInitiatives, u as appendDeferredTask, v as applyReconcile, y as collectInitiativeDrift, z as readPlansManifest } from "./initiatives-AtmFo2DU.mjs";
|
|
3
3
|
import { Effect } from "effect";
|
|
4
4
|
import { readFile } from "node:fs/promises";
|
|
5
5
|
import { readFileSync } from "node:fs";
|
package/dist/index.d.mts
CHANGED
|
@@ -301,12 +301,36 @@ interface FileSystemService {
|
|
|
301
301
|
}
|
|
302
302
|
declare const FileSystem_base: Context.TagClass<FileSystem, "PlanMode/FileSystem", FileSystemService>;
|
|
303
303
|
declare class FileSystem extends FileSystem_base {}
|
|
304
|
+
/**
|
|
305
|
+
* Build a node-backed filesystem service whose relative paths resolve against
|
|
306
|
+
* `root`. All storage programs use relative `.plans/...` paths, so prefixing a
|
|
307
|
+
* root relocates the entire plan registry coherently (manifests, plan dirs,
|
|
308
|
+
* handoffs) to another working directory.
|
|
309
|
+
*
|
|
310
|
+
* `resolve(root, p)` is a no-op for already-absolute paths and reproduces the
|
|
311
|
+
* default `process.cwd()` behaviour exactly when `root === process.cwd()`, so
|
|
312
|
+
* the common (no-target) path is unchanged.
|
|
313
|
+
*/
|
|
314
|
+
declare function makeNodeFileSystemService(root: string): FileSystemService;
|
|
315
|
+
/**
|
|
316
|
+
* Default service: relative paths resolve against the current working directory
|
|
317
|
+
* at call time. `resolve('.', p)` is equivalent to `resolve(process.cwd(), p)`,
|
|
318
|
+
* so this matches the historical behaviour of passing raw relative paths to fs.
|
|
319
|
+
*/
|
|
304
320
|
declare const nodeFileSystemService: FileSystemService;
|
|
305
321
|
//#endregion
|
|
306
322
|
//#region src/effects/runtime.d.ts
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
323
|
+
/**
|
|
324
|
+
* Build the live filesystem layer. Pass `root` to relocate the whole `.plans/`
|
|
325
|
+
* registry under another working directory; omit it for the default (relative
|
|
326
|
+
* paths resolve against the current working directory).
|
|
327
|
+
*/
|
|
328
|
+
declare function makeRuntimeLayer(root?: string): Layer.Layer<FileSystem>;
|
|
329
|
+
/**
|
|
330
|
+
* Build a bridge that runs storage programs against the live filesystem layer.
|
|
331
|
+
* Pass `root` to target an external working directory's `.plans/` registry.
|
|
332
|
+
*/
|
|
333
|
+
declare function makePlanRuntime(root?: string): <A, E>(program: Effect.Effect<A, E, FileSystem>) => Promise<A>;
|
|
310
334
|
type RunPlanIO = ReturnType<typeof makePlanRuntime>;
|
|
311
335
|
//#endregion
|
|
312
336
|
//#region src/storage/task-storage.d.ts
|
|
@@ -679,4 +703,4 @@ declare function toKebabCase(name: string): string;
|
|
|
679
703
|
*/
|
|
680
704
|
declare function nextTaskId(existingIds: readonly string[]): string;
|
|
681
705
|
//#endregion
|
|
682
|
-
export { AddTaskInput, type ExecPendingConfig, ExecPendingConfigSchema, FileSystem, type FileSystemService, InitiativeDriftRow, initiatives_d_exports as InitiativeListing, type InitiativeManifestEntry, InitiativeManifestEntrySchema, InitiativeMemberRow, InitiativeRollup, type InitiativeStatus, InitiativeStatusSchema, type InitiativeUpsert, JsonlParseError, JsonlValidationError, MissingMetaRecord, type PlanData, PlanDriftRow, plans_d_exports as PlanListing, type PlanManifestEntry, PlanManifestEntrySchema, PlanReadError, PlanReadiness, type PlanStatus, PlanStatusSchema, PlanStorageError, type PlanUpsert, PlanWriteError, ResolvedPlanName, type RunPlanIO, type TaskMeta, TaskMetaSchema, TaskNotFound, type TaskOrigin, TaskOriginSchema, type TaskRecord, TaskRecordSchema, type TaskStatus, TaskStatusSchema, TasksFileNotFound, TasksLineSchema, TasksSnapshot, type ThinkingLevel, UpdatedTaskResult, activeTasksResolved, appendDeferredTask, applyInitiativeReconcile, applyInitiativeUpsert, applyPlanUpsert, applyReconcile, causeMessage, collectInitiativeDrift, collectPlanDrift, computePlanReadiness, decodeExecPendingConfig, decodeInitiativeManifestEntry, decodePlanManifestEntry, decodeTaskMeta, decodeTaskRecord, decodeTasksLine, deferredTasks, errorMessage, initiativeRollup, isInitiativeFinalizable, isPlanFinalizable, isTerminalStatus, loadHandoff, loadPlanData, makePlanRuntime, makeRuntimeLayer, membersOf, mutateInitiativesManifest, mutatePlansManifest, nextTaskId, nodeFileSystemService, normalizePlanName, reactivateForExecution, readInitiativesManifest, readPlansManifest, readTasksJsonl, reconcileInitiativeForPlan, reconcileInitiativeStatus, reconcilePlanStatus, resolvePlanByName, saveHandoff, saveInitiative, setTaskStatus, toKebabCase, toNativeError, updateTask, upsertInitiativeEntry, upsertPlanEntry, withFileLock, writeFileAtomic, writeInitiativesManifest, writePlansManifest, writeTasksJsonl };
|
|
706
|
+
export { AddTaskInput, type ExecPendingConfig, ExecPendingConfigSchema, FileSystem, type FileSystemService, InitiativeDriftRow, initiatives_d_exports as InitiativeListing, type InitiativeManifestEntry, InitiativeManifestEntrySchema, InitiativeMemberRow, InitiativeRollup, type InitiativeStatus, InitiativeStatusSchema, type InitiativeUpsert, JsonlParseError, JsonlValidationError, MissingMetaRecord, type PlanData, PlanDriftRow, plans_d_exports as PlanListing, type PlanManifestEntry, PlanManifestEntrySchema, PlanReadError, PlanReadiness, type PlanStatus, PlanStatusSchema, PlanStorageError, type PlanUpsert, PlanWriteError, ResolvedPlanName, type RunPlanIO, type TaskMeta, TaskMetaSchema, TaskNotFound, type TaskOrigin, TaskOriginSchema, type TaskRecord, TaskRecordSchema, type TaskStatus, TaskStatusSchema, TasksFileNotFound, TasksLineSchema, TasksSnapshot, type ThinkingLevel, UpdatedTaskResult, activeTasksResolved, appendDeferredTask, applyInitiativeReconcile, applyInitiativeUpsert, applyPlanUpsert, applyReconcile, causeMessage, collectInitiativeDrift, collectPlanDrift, computePlanReadiness, decodeExecPendingConfig, decodeInitiativeManifestEntry, decodePlanManifestEntry, decodeTaskMeta, decodeTaskRecord, decodeTasksLine, deferredTasks, errorMessage, initiativeRollup, isInitiativeFinalizable, isPlanFinalizable, isTerminalStatus, loadHandoff, loadPlanData, makeNodeFileSystemService, makePlanRuntime, makeRuntimeLayer, membersOf, mutateInitiativesManifest, mutatePlansManifest, nextTaskId, nodeFileSystemService, normalizePlanName, reactivateForExecution, readInitiativesManifest, readPlansManifest, readTasksJsonl, reconcileInitiativeForPlan, reconcileInitiativeStatus, reconcilePlanStatus, resolvePlanByName, saveHandoff, saveInitiative, setTaskStatus, toKebabCase, toNativeError, updateTask, upsertInitiativeEntry, upsertPlanEntry, withFileLock, writeFileAtomic, writeInitiativesManifest, writePlansManifest, writeTasksJsonl };
|
package/dist/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { $ as
|
|
2
|
-
export { ExecPendingConfigSchema, FileSystem, initiatives_exports as InitiativeListing, InitiativeManifestEntrySchema, InitiativeStatusSchema, JsonlParseError, JsonlValidationError, MissingMetaRecord, plans_exports as PlanListing, PlanManifestEntrySchema, PlanReadError, PlanStatusSchema, PlanWriteError, TaskMetaSchema, TaskNotFound, TaskOriginSchema, TaskRecordSchema, TaskStatusSchema, TasksFileNotFound, TasksLineSchema, activeTasksResolved, appendDeferredTask, applyInitiativeReconcile, applyInitiativeUpsert, applyPlanUpsert, applyReconcile, causeMessage, collectInitiativeDrift, collectPlanDrift, computePlanReadiness, decodeExecPendingConfig, decodeInitiativeManifestEntry, decodePlanManifestEntry, decodeTaskMeta, decodeTaskRecord, decodeTasksLine, deferredTasks, errorMessage, initiativeRollup, isInitiativeFinalizable, isPlanFinalizable, isTerminalStatus, loadHandoff, loadPlanData, makePlanRuntime, makeRuntimeLayer, membersOf, mutateInitiativesManifest, mutatePlansManifest, nextTaskId, nodeFileSystemService, normalizePlanName, reactivateForExecution, readInitiativesManifest, readPlansManifest, readTasksJsonl, reconcileInitiativeForPlan, reconcileInitiativeStatus, reconcilePlanStatus, resolvePlanByName, saveHandoff, saveInitiative, setTaskStatus, toKebabCase, toNativeError, updateTask, upsertInitiativeEntry, upsertPlanEntry, withFileLock, writeFileAtomic, writeInitiativesManifest, writePlansManifest, writeTasksJsonl };
|
|
1
|
+
import { $ as makeNodeFileSystemService, A as reactivateForExecution, B as reconcilePlanStatus, C as isInitiativeFinalizable, Ct as TaskNotFound, D as activeTasksResolved, Dt as toNativeError, E as reconcileInitiativeStatus, Et as errorMessage, F as writeInitiativesManifest, G as saveInitiative, H as writePlansManifest, I as applyPlanUpsert, J as writeTasksJsonl, K as readTasksJsonl, L as isTerminalStatus, M as mutateInitiativesManifest, N as readInitiativesManifest, O as deferredTasks, P as upsertInitiativeEntry, Q as FileSystem, R as mutatePlansManifest, S as initiativeRollup, St as PlanWriteError, T as reconcileInitiativeForPlan, Tt as causeMessage, U as loadHandoff, V as upsertPlanEntry, W as saveHandoff, X as makePlanRuntime, Y as withFileLock, Z as makeRuntimeLayer, _ as applyInitiativeReconcile, _t as decodeTasksLine, at as PlanManifestEntrySchema, b as collectPlanDrift, bt as MissingMetaRecord, c as plans_exports, ct as TaskOriginSchema, d as setTaskStatus, dt as TasksLineSchema, et as nodeFileSystemService, f as nextTaskId, ft as decodeExecPendingConfig, g as resolvePlanByName, gt as decodeTaskRecord, h as normalizePlanName, ht as decodeTaskMeta, it as InitiativeStatusSchema, j as applyInitiativeUpsert, k as isPlanFinalizable, lt as TaskRecordSchema, m as loadPlanData, mt as decodePlanManifestEntry, nt as ExecPendingConfigSchema, ot as PlanStatusSchema, p as toKebabCase, pt as decodeInitiativeManifestEntry, q as updateTask, r as initiatives_exports, rt as InitiativeManifestEntrySchema, st as TaskMetaSchema, tt as writeFileAtomic, u as appendDeferredTask, ut as TaskStatusSchema, v as applyReconcile, vt as JsonlParseError, w as membersOf, wt as TasksFileNotFound, x as computePlanReadiness, xt as PlanReadError, y as collectInitiativeDrift, yt as JsonlValidationError, z as readPlansManifest } from "./initiatives-AtmFo2DU.mjs";
|
|
2
|
+
export { ExecPendingConfigSchema, FileSystem, initiatives_exports as InitiativeListing, InitiativeManifestEntrySchema, InitiativeStatusSchema, JsonlParseError, JsonlValidationError, MissingMetaRecord, plans_exports as PlanListing, PlanManifestEntrySchema, PlanReadError, PlanStatusSchema, PlanWriteError, TaskMetaSchema, TaskNotFound, TaskOriginSchema, TaskRecordSchema, TaskStatusSchema, TasksFileNotFound, TasksLineSchema, activeTasksResolved, appendDeferredTask, applyInitiativeReconcile, applyInitiativeUpsert, applyPlanUpsert, applyReconcile, causeMessage, collectInitiativeDrift, collectPlanDrift, computePlanReadiness, decodeExecPendingConfig, decodeInitiativeManifestEntry, decodePlanManifestEntry, decodeTaskMeta, decodeTaskRecord, decodeTasksLine, deferredTasks, errorMessage, initiativeRollup, isInitiativeFinalizable, isPlanFinalizable, isTerminalStatus, loadHandoff, loadPlanData, makeNodeFileSystemService, makePlanRuntime, makeRuntimeLayer, membersOf, mutateInitiativesManifest, mutatePlansManifest, nextTaskId, nodeFileSystemService, normalizePlanName, reactivateForExecution, readInitiativesManifest, readPlansManifest, readTasksJsonl, reconcileInitiativeForPlan, reconcileInitiativeStatus, reconcilePlanStatus, resolvePlanByName, saveHandoff, saveInitiative, setTaskStatus, toKebabCase, toNativeError, updateTask, upsertInitiativeEntry, upsertPlanEntry, withFileLock, writeFileAtomic, writeInitiativesManifest, writePlansManifest, writeTasksJsonl };
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { t as __exportAll } from "./chunk-CfYAbeIz.mjs";
|
|
2
2
|
import { Context, Data, Effect, Either, Layer, Option, Schema } from "effect";
|
|
3
3
|
import { mkdir, open, readFile, readdir, rename, rm, unlink, writeFile } from "node:fs/promises";
|
|
4
|
+
import { dirname, join, resolve } from "node:path";
|
|
4
5
|
import { createWriteStream } from "node:fs";
|
|
5
|
-
import { dirname, join } from "node:path";
|
|
6
6
|
import { randomUUID } from "node:crypto";
|
|
7
7
|
//#region src/errors.ts
|
|
8
8
|
/**
|
|
@@ -220,48 +220,67 @@ async function syncDirectory(dir) {
|
|
|
220
220
|
* all failure modes typed (`PlanReadError` / `PlanWriteError`).
|
|
221
221
|
*/
|
|
222
222
|
var FileSystem = class extends Context.Tag("PlanMode/FileSystem")() {};
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
},
|
|
243
|
-
|
|
244
|
-
path,
|
|
245
|
-
cause
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
223
|
+
/**
|
|
224
|
+
* Build a node-backed filesystem service whose relative paths resolve against
|
|
225
|
+
* `root`. All storage programs use relative `.plans/...` paths, so prefixing a
|
|
226
|
+
* root relocates the entire plan registry coherently (manifests, plan dirs,
|
|
227
|
+
* handoffs) to another working directory.
|
|
228
|
+
*
|
|
229
|
+
* `resolve(root, p)` is a no-op for already-absolute paths and reproduces the
|
|
230
|
+
* default `process.cwd()` behaviour exactly when `root === process.cwd()`, so
|
|
231
|
+
* the common (no-target) path is unchanged.
|
|
232
|
+
*/
|
|
233
|
+
function makeNodeFileSystemService(root) {
|
|
234
|
+
const at = (path) => resolve(root, path);
|
|
235
|
+
return {
|
|
236
|
+
readFileString: (path) => Effect.tryPromise({
|
|
237
|
+
try: () => readFile(at(path), "utf-8"),
|
|
238
|
+
catch: (cause) => new PlanReadError({
|
|
239
|
+
path,
|
|
240
|
+
cause
|
|
241
|
+
})
|
|
242
|
+
}),
|
|
243
|
+
writeFileString: (path, data) => Effect.tryPromise({
|
|
244
|
+
try: () => writeFile(at(path), data, "utf-8"),
|
|
245
|
+
catch: (cause) => new PlanWriteError({
|
|
246
|
+
path,
|
|
247
|
+
cause
|
|
248
|
+
})
|
|
249
|
+
}),
|
|
250
|
+
writeFileAtomic: (path, data) => writeFileAtomic(at(path), data),
|
|
251
|
+
makeDir: (path) => Effect.tryPromise({
|
|
252
|
+
try: async () => {
|
|
253
|
+
await mkdir(at(path), { recursive: true });
|
|
254
|
+
},
|
|
255
|
+
catch: (cause) => new PlanWriteError({
|
|
256
|
+
path,
|
|
257
|
+
cause
|
|
258
|
+
})
|
|
259
|
+
}),
|
|
260
|
+
listDirectories: (path) => Effect.tryPromise({
|
|
261
|
+
try: async () => {
|
|
262
|
+
return (await readdir(at(path), { withFileTypes: true })).filter((entry) => entry.isDirectory()).map((entry) => entry.name);
|
|
263
|
+
},
|
|
264
|
+
catch: (cause) => new PlanReadError({
|
|
265
|
+
path,
|
|
266
|
+
cause
|
|
267
|
+
})
|
|
268
|
+
}),
|
|
269
|
+
removeFile: (path) => Effect.tryPromise({
|
|
270
|
+
try: () => unlink(at(path)),
|
|
271
|
+
catch: (cause) => new PlanWriteError({
|
|
272
|
+
path,
|
|
273
|
+
cause
|
|
274
|
+
})
|
|
262
275
|
})
|
|
263
|
-
}
|
|
264
|
-
}
|
|
276
|
+
};
|
|
277
|
+
}
|
|
278
|
+
/**
|
|
279
|
+
* Default service: relative paths resolve against the current working directory
|
|
280
|
+
* at call time. `resolve('.', p)` is equivalent to `resolve(process.cwd(), p)`,
|
|
281
|
+
* so this matches the historical behaviour of passing raw relative paths to fs.
|
|
282
|
+
*/
|
|
283
|
+
const nodeFileSystemService = makeNodeFileSystemService(".");
|
|
265
284
|
//#endregion
|
|
266
285
|
//#region src/effects/runtime.ts
|
|
267
286
|
/**
|
|
@@ -271,12 +290,21 @@ const nodeFileSystemService = {
|
|
|
271
290
|
* through the `runPlanIO` bridge so the imperative pi event handlers keep their
|
|
272
291
|
* `await fn(...)` shape.
|
|
273
292
|
*/
|
|
274
|
-
|
|
275
|
-
|
|
293
|
+
/**
|
|
294
|
+
* Build the live filesystem layer. Pass `root` to relocate the whole `.plans/`
|
|
295
|
+
* registry under another working directory; omit it for the default (relative
|
|
296
|
+
* paths resolve against the current working directory).
|
|
297
|
+
*/
|
|
298
|
+
function makeRuntimeLayer(root) {
|
|
299
|
+
const service = root === void 0 ? nodeFileSystemService : makeNodeFileSystemService(root);
|
|
300
|
+
return Layer.succeed(FileSystem, service);
|
|
276
301
|
}
|
|
277
|
-
/**
|
|
278
|
-
|
|
279
|
-
|
|
302
|
+
/**
|
|
303
|
+
* Build a bridge that runs storage programs against the live filesystem layer.
|
|
304
|
+
* Pass `root` to target an external working directory's `.plans/` registry.
|
|
305
|
+
*/
|
|
306
|
+
function makePlanRuntime(root) {
|
|
307
|
+
const layer = makeRuntimeLayer(root);
|
|
280
308
|
return function runPlanIO(program) {
|
|
281
309
|
return Effect.runPromise(program.pipe(Effect.provide(layer)));
|
|
282
310
|
};
|
|
@@ -1250,4 +1278,4 @@ function parseInitiativeFilter(raw) {
|
|
|
1250
1278
|
return "all";
|
|
1251
1279
|
}
|
|
1252
1280
|
//#endregion
|
|
1253
|
-
export {
|
|
1281
|
+
export { makeNodeFileSystemService as $, reactivateForExecution as A, reconcilePlanStatus as B, isInitiativeFinalizable as C, TaskNotFound as Ct, activeTasksResolved as D, toNativeError as Dt, reconcileInitiativeStatus as E, errorMessage as Et, writeInitiativesManifest as F, saveInitiative as G, writePlansManifest as H, applyPlanUpsert as I, writeTasksJsonl as J, readTasksJsonl as K, isTerminalStatus$1 as L, mutateInitiativesManifest as M, readInitiativesManifest as N, deferredTasks as O, upsertInitiativeEntry as P, FileSystem as Q, mutatePlansManifest as R, initiativeRollup as S, PlanWriteError as St, reconcileInitiativeForPlan as T, causeMessage as Tt, loadHandoff as U, upsertPlanEntry as V, saveHandoff as W, makePlanRuntime as X, withFileLock as Y, makeRuntimeLayer as Z, applyInitiativeReconcile as _, decodeTasksLine as _t, filterPlans as a, PlanManifestEntrySchema as at, collectPlanDrift as b, MissingMetaRecord as bt, plans_exports as c, TaskOriginSchema as ct, setTaskStatus as d, TasksLineSchema as dt, nodeFileSystemService as et, nextTaskId as f, decodeExecPendingConfig as ft, resolvePlanByName as g, decodeTaskRecord as gt, normalizePlanName as h, decodeTaskMeta as ht, loadInitiativeListItems as i, InitiativeStatusSchema as it, applyInitiativeUpsert as j, isPlanFinalizable as k, sortPlans as l, TaskRecordSchema as lt, loadPlanData as m, decodePlanManifestEntry as mt, formatInitiativeList as n, ExecPendingConfigSchema as nt, formatPlanList as o, PlanStatusSchema as ot, toKebabCase as p, decodeInitiativeManifestEntry as pt, updateTask as q, initiatives_exports as r, InitiativeManifestEntrySchema as rt, loadPlanListItems as s, TaskMetaSchema as st, filterInitiatives as t, writeFileAtomic as tt, appendDeferredTask as u, TaskStatusSchema as ut, applyReconcile as v, JsonlParseError as vt, membersOf as w, TasksFileNotFound as wt, computePlanReadiness as x, PlanReadError as xt, collectInitiativeDrift as y, JsonlValidationError as yt, readPlansManifest as z };
|
package/package.json
CHANGED
|
@@ -9,7 +9,7 @@ description: >
|
|
|
9
9
|
stateless plan resolution, and reconcile.
|
|
10
10
|
type: core
|
|
11
11
|
library: "@dreki-gg/taskman"
|
|
12
|
-
library_version: "0.
|
|
12
|
+
library_version: "0.4.0"
|
|
13
13
|
sources:
|
|
14
14
|
- "dreki-gg/pi-extensions:packages/taskman/README.md"
|
|
15
15
|
- "dreki-gg/pi-extensions:packages/taskman/src/cli.ts"
|