@agent-plan/core 0.2.22-next.1 → 0.2.22-next.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.
@@ -15,7 +15,7 @@
15
15
  * These are NEVER persisted: they are computed on demand from children's
16
16
  * canonical workflow statuses. The canonical workflow model
17
17
  * (`planned | in-progress | waiting | blocked | deferred | done |
18
- * canceled | rejected`) includes paused leaf work without implying active execution.
18
+ * canceled | rejected`) represents paused leaf work as a startable status plus a durable checkpoint.
19
19
  */
20
20
  import type { TaskStatus, PhaseStatus } from "./schema.js";
21
21
  /**
@@ -15,7 +15,7 @@
15
15
  * These are NEVER persisted: they are computed on demand from children's
16
16
  * canonical workflow statuses. The canonical workflow model
17
17
  * (`planned | in-progress | waiting | blocked | deferred | done |
18
- * canceled | rejected`) includes paused leaf work without implying active execution.
18
+ * canceled | rejected`) represents paused leaf work as a startable status plus a durable checkpoint.
19
19
  */
20
20
  const ACTIVE = new Set(["in-progress"]);
21
21
  const OPEN = new Set(["planned", "waiting", "blocked", "deferred"]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-plan/core",
3
- "version": "0.2.22-next.1",
3
+ "version": "0.2.22-next.2",
4
4
  "private": false,
5
5
  "description": "Harness-agnostic core for Agent Plan: schemas, persistence, ordering, status rollups, and markdown rendering.",
6
6
  "license": "MIT",