@workflow-cannon/workspace-kit 0.14.0 → 0.16.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.
Files changed (28) hide show
  1. package/README.md +55 -106
  2. package/dist/modules/approvals/review-runtime.js +3 -11
  3. package/dist/modules/improvement/generate-recommendations-runtime.js +3 -11
  4. package/dist/modules/index.d.ts +2 -0
  5. package/dist/modules/index.js +1 -0
  6. package/dist/modules/task-engine/index.d.ts +5 -0
  7. package/dist/modules/task-engine/index.js +327 -17
  8. package/dist/modules/task-engine/migrate-task-persistence-runtime.d.ts +2 -0
  9. package/dist/modules/task-engine/migrate-task-persistence-runtime.js +192 -0
  10. package/dist/modules/task-engine/planning-config.d.ts +10 -0
  11. package/dist/modules/task-engine/planning-config.js +37 -0
  12. package/dist/modules/task-engine/planning-open.d.ts +16 -0
  13. package/dist/modules/task-engine/planning-open.js +34 -0
  14. package/dist/modules/task-engine/sqlite-dual-planning.d.ts +21 -0
  15. package/dist/modules/task-engine/sqlite-dual-planning.js +137 -0
  16. package/dist/modules/task-engine/store.d.ts +12 -3
  17. package/dist/modules/task-engine/store.js +62 -38
  18. package/dist/modules/task-engine/wishlist-store.d.ts +23 -0
  19. package/dist/modules/task-engine/wishlist-store.js +108 -0
  20. package/dist/modules/task-engine/wishlist-types.d.ts +33 -0
  21. package/dist/modules/task-engine/wishlist-types.js +5 -0
  22. package/dist/modules/task-engine/wishlist-validation.d.ts +16 -0
  23. package/dist/modules/task-engine/wishlist-validation.js +96 -0
  24. package/package.json +11 -2
  25. package/src/modules/documentation/README.md +1 -0
  26. package/src/modules/documentation/instructions/document-project.md +1 -0
  27. package/src/modules/documentation/instructions/generate-document.md +1 -0
  28. package/src/modules/documentation/templates/README.md +89 -0
package/README.md CHANGED
@@ -1,136 +1,85 @@
1
1
  AI agents: `./.ai/` is the authoritative source of truth; read all files there before any analysis, planning, or code changes, and follow `./.ai/` over `README.md`, `./docs/`, and conflicting existing code patterns.
2
2
 
3
- # Workflow Cannon
4
-
5
- Workflow Cannon is the canonical home of `@workflow-cannon/workspace-kit` and the operational docs that drive its evolution.
6
-
7
- It is built for developers using VS Code who want safe, reproducible, package-first workflow automation with clear release evidence.
8
-
9
- ## Table of Contents
10
-
11
- - [What This Repository Is](#what-this-repository-is)
12
- - [Big-Picture Vision](#big-picture-vision)
13
- - [Current Status](#current-status)
14
- - [Goals](#goals)
15
- - [Package](#package)
16
- - [Repository Map](#repository-map)
17
- - [Documentation Index](#documentation-index)
18
- - [License](#license)
19
-
20
- ## What This Repository Is
3
+ <div align="center">
4
+ <img src="title_image.png" alt="Workflow Cannon" width="720" />
5
+ </div>
21
6
 
22
- Workflow Cannon is the source of truth for:
23
-
24
- - The `@workflow-cannon/workspace-kit` package
25
- - Maintainer planning and execution artifacts
26
- - Consumer validation and release-readiness evidence
27
-
28
- Guiding characteristics:
7
+ # Workflow Cannon
29
8
 
30
- - Package-first delivery and verification
31
- - Deterministic, auditable workflows
32
- - Safe-by-default operations (validation, traceability, rollback-friendly changes)
9
+ **[`@workflow-cannon/workspace-kit`](https://www.npmjs.com/package/@workflow-cannon/workspace-kit)** CLI, task engine, and workflow contracts for repos that want deterministic, policy-governed automation with clear evidence.
33
10
 
34
- ## Big-Picture Vision
11
+ ## Quick start (clone this repo)
35
12
 
36
- Workflow Cannon is evolving from a package and docs repository into a developer workflow platform that can:
13
+ **Needs:** Node.js **22+** (see CI), **pnpm 10** (see `packageManager` in `package.json`).
37
14
 
38
- - model planning, tasks, policy, and execution as first-class, versioned contracts
39
- - run repeatable workflows with deterministic outcomes and evidence capture
40
- - continuously improve itself based on observed friction and outcome data
15
+ ```bash
16
+ git clone https://github.com/NJLaPrell/workflow-cannon.git
17
+ cd workflow-cannon
18
+ pnpm install
19
+ pnpm run build
20
+ ```
41
21
 
42
- The long-term direction in this repository is to close the loop between:
22
+ Verify the kit sees your workspace:
43
23
 
44
- 1. **What happened** (transcripts, diffs, run artifacts, diagnostics)
45
- 2. **What should change** (recommendations to templates, rules, process, and config)
46
- 3. **What gets adopted** (human-reviewed approvals, policy checks, safe rollout)
24
+ ```bash
25
+ node dist/cli.js doctor
26
+ node dist/cli.js --help
27
+ ```
47
28
 
48
- ### Enhancement Engine (automatic learning and correction)
29
+ Try **read-only** task-engine queries:
49
30
 
50
- The Improvement/Enhancement Engine is intended to detect weak spots in workflows and rules, then generate high-signal fixes with supporting evidence. Instead of hard-coding static process forever, the system should learn from real usage patterns and propose better defaults.
31
+ ```bash
32
+ node dist/cli.js run list-tasks '{}'
33
+ node dist/cli.js run get-next-actions '{}'
34
+ ```
51
35
 
52
- In practice, this means:
36
+ **Developing:** after edits, `pnpm run build` then `pnpm test` (or `pnpm run phase5-gates` before larger changes). If `workspace-kit` is not on your `PATH`, use `node dist/cli.js …` from the repo root (same as above).
53
37
 
54
- - detect recurring failure patterns, manual rework, and template drift
55
- - emit recommendation items with confidence, deduping, and provenance
56
- - route recommendations through an approval queue (`accept`, `decline`, `accept edited`)
57
- - apply approved changes through guarded automation (dry-run, diff, rollback-ready)
58
- - measure post-change outcomes so future recommendations improve over time
38
+ ## Quick start (use the package in another project)
59
39
 
60
- This keeps automation adaptive without sacrificing safety, governance, or developer trust.
40
+ ```bash
41
+ npm install @workflow-cannon/workspace-kit
42
+ npx workspace-kit --help
43
+ ```
61
44
 
62
- ## Current Status
45
+ Or with pnpm: `pnpm add @workflow-cannon/workspace-kit` then `pnpm exec workspace-kit --help`.
63
46
 
64
- **Release and phase truth:** see `docs/maintainers/ROADMAP.md` and `docs/maintainers/data/workspace-kit-status.yaml`. **Task queue:** `.workspace-kit/tasks/state.json` (ids and `status` are authoritative for execution).
47
+ ## What this repo contains
65
48
 
66
- - **Phases 0–7** are complete through **`v0.9.0`** (see roadmap for slice ids).
67
- - **Phase 8** ships maintainer/onboarding hardening (`v0.10.0`): policy denial clarity, runbooks, and doc alignment for CLI vs `run` approval.
68
- - **Phase 9–10** ship agent/onboarding parity (`v0.11.0`): interactive policy opt-in, strict response-template mode, Agent CLI map (`docs/maintainers/AGENT-CLI-MAP.md`), and CLI-first Cursor guidance.
69
- - **Phase 11** ships architectural review follow-up hardening (`v0.12.0`): policy/session denial edge tests, persistence concurrency semantics, release doc-sweep checklist, and runtime path audit note.
70
- - **Phase 12** ships Cursor-native thin-client extension delivery (`v0.13.0`): dashboard/tasks/config UI flows, extension test suite, and operator/security docs.
71
- - **Phase 13** is the active queue: Task Engine lifecycle tightening (`T311+`).
49
+ | Area | What |
50
+ | --- | --- |
51
+ | **CLI** | `workspace-kit` `doctor`, `config`, `run <module-command>` (see `workspace-kit run` with no args for the list). |
52
+ | **Task engine** | Canonical queue in `.workspace-kit/tasks/state.json`; lifecycle via `run-transition`. Wishlist ideation uses ids `W###` (see [`docs/maintainers/runbooks/wishlist-workflow.md`](docs/maintainers/runbooks/wishlist-workflow.md)). |
53
+ | **Docs** | Maintainer process, roadmap, and changelog under `docs/maintainers/`. |
54
+ | **Cursor extension** (optional) | Thin UI in `extensions/cursor-workflow-cannon/` build with `pnpm run ui:prepare`. |
72
55
 
73
- Historical note: this file’s milestone list is not the live queue—always check task state for **`ready`** work.
56
+ There is **no** built-in IDE slash command like `/qt` from this package; editor integrations are **your** config (e.g. `.cursor/commands/`), while **`workspace-kit`** is the supported CLI.
74
57
 
75
- ## Goals
58
+ ## Policy and approvals (read this before mutating state)
76
59
 
77
- - Keep package implementation and release operations centralized here.
78
- - Preserve independent consumer validation and update cadence.
79
- - Grow modular capabilities for planning, tasking, configuration, policy, and improvement.
80
- - Build a human-governed enhancement loop that learns from usage and recommends better workflows/rules.
81
- - Maintain deterministic and auditable behavior as system complexity increases.
60
+ Sensitive `workspace-kit run` commands require JSON **`policyApproval`** in the third CLI argument. Chat approval is not enough. Env-based approval applies to `init` / `upgrade` / `config`, not the `run` path.
82
61
 
83
- ## Package
62
+ - **Human guide:** [`docs/maintainers/POLICY-APPROVAL.md`](docs/maintainers/POLICY-APPROVAL.md)
63
+ - **Copy-paste table:** [`docs/maintainers/AGENT-CLI-MAP.md`](docs/maintainers/AGENT-CLI-MAP.md)
84
64
 
85
- Install:
65
+ ## Project status and roadmap
86
66
 
87
- ```bash
88
- npm install @workflow-cannon/workspace-kit
89
- ```
67
+ Release cadence, phase history, and strategic decisions: [`docs/maintainers/ROADMAP.md`](docs/maintainers/ROADMAP.md). **Live execution queue:** `.workspace-kit/tasks/state.json` (`status` and `id` are authoritative — not this README’s milestone bullets).
90
68
 
91
- ### How to run the CLI (this repo and consumers)
69
+ Snapshot: [`docs/maintainers/data/workspace-kit-status.yaml`](docs/maintainers/data/workspace-kit-status.yaml).
92
70
 
93
- There is **no** IDE slash command like `/qt` defined by this package unless your own editor config adds one. Supported entrypoints:
71
+ ## Where to go next
94
72
 
95
- | Context | Command |
73
+ | Goal | Start here |
96
74
  | --- | --- |
97
- | **Installed package** | `npx @workflow-cannon/workspace-kit --help` or `pnpm exec workspace-kit --help` when the package is a dependency |
98
- | **Developing this repo** | `pnpm run build` then `node dist/cli.js --help` or `pnpm exec workspace-kit --help` if linked |
99
- | **Transcript helpers** | `pnpm run transcript:sync` / `pnpm run transcript:ingest` (see maintainer runbooks) |
100
-
101
- Mutating commands require policy approval: **`docs/maintainers/POLICY-APPROVAL.md`** (JSON **`policyApproval`** for `workspace-kit run`, env for `config`/`init`/`upgrade`).
102
-
103
- ## Repository Map
104
-
105
- - `README.md` - project entry point
106
- - `.ai/PRINCIPLES.md` - project goals and decision principles (canonical AI)
107
- - `docs/maintainers/ROADMAP.md` - roadmap and decision log
108
- - `.workspace-kit/tasks/state.json` - execution tracking
109
- - `docs/maintainers/ARCHITECTURE.md` - architecture direction
110
- - `docs/maintainers/DECISIONS.md` - focused design/decision notes
111
- - `docs/maintainers/RELEASING.md` - release checklist and validation expectations
112
- - `.ai/module-build.md` - canonical AI module build guidance
113
- - `docs/maintainers/` - maintainer process and boundary docs
114
- - `docs/maintainers/module-build-guide.md` - human-readable module build guidance
115
- - `docs/adr/` - ADR templates and records
116
-
117
- ## Documentation Index
118
-
119
- - Project goals and decision principles: `.ai/PRINCIPLES.md`
120
- - Strategy and long-range direction: `docs/maintainers/ROADMAP.md`
121
- - Active execution tasks: `.workspace-kit/tasks/state.json`
122
- - Glossary and agent-guidance terms: `docs/maintainers/TERMS.md`
123
- - Architecture direction: `docs/maintainers/ARCHITECTURE.md`
124
- - Project decisions: `docs/maintainers/DECISIONS.md`
125
- - Governance policy surface: `docs/maintainers/GOVERNANCE.md`
126
- - Release process and gates: `docs/maintainers/RELEASING.md`
127
- - Policy / approval surfaces: `docs/maintainers/POLICY-APPROVAL.md`
128
- - Canonical changelog: `docs/maintainers/CHANGELOG.md` (`CHANGELOG.md` at repo root is pointer-only)
129
- - Canonical AI module build guidance: `.ai/module-build.md`
130
- - Human module build guide: `docs/maintainers/module-build-guide.md`
131
- - Security, support, and governance: `docs/maintainers/SECURITY.md`, `docs/maintainers/SUPPORT.md`, `docs/maintainers/GOVERNANCE.md`
132
- - AI behavior rules and command wrappers: `.cursor/rules/`, `.cursor/commands/`
75
+ | Goals, trade-offs, gates | [`.ai/PRINCIPLES.md`](.ai/PRINCIPLES.md) |
76
+ | Roadmap & versions | [`docs/maintainers/ROADMAP.md`](docs/maintainers/ROADMAP.md) |
77
+ | Changelog | [`docs/maintainers/CHANGELOG.md`](docs/maintainers/CHANGELOG.md) |
78
+ | Release process | [`docs/maintainers/RELEASING.md`](docs/maintainers/RELEASING.md) |
79
+ | Glossary | [`docs/maintainers/TERMS.md`](docs/maintainers/TERMS.md) |
80
+ | Architecture | [`docs/maintainers/ARCHITECTURE.md`](docs/maintainers/ARCHITECTURE.md) |
81
+ | Agent/CLI execution | [`docs/maintainers/AGENTS.md`](docs/maintainers/AGENTS.md) |
133
82
 
134
83
  ## License
135
84
 
136
- Licensed under MIT. See `LICENSE`.
85
+ MIT. See [`LICENSE`](LICENSE).
@@ -1,15 +1,7 @@
1
1
  import { appendLineageEvent } from "../../core/lineage-store.js";
2
- import { TaskStore } from "../task-engine/store.js";
2
+ import { openPlanningStores } from "../task-engine/planning-open.js";
3
3
  import { TransitionService } from "../task-engine/service.js";
4
4
  import { appendDecisionRecord, computeDecisionFingerprint, readDecisionFingerprints } from "./decisions-store.js";
5
- function taskStoreRelativePath(ctx) {
6
- const tasks = ctx.effectiveConfig?.tasks;
7
- if (!tasks || typeof tasks !== "object" || Array.isArray(tasks)) {
8
- return undefined;
9
- }
10
- const p = tasks.storeRelativePath;
11
- return typeof p === "string" && p.trim().length > 0 ? p.trim() : undefined;
12
- }
13
5
  function getEvidenceKey(task) {
14
6
  const m = task.metadata;
15
7
  const k = m && typeof m.evidenceKey === "string" ? m.evidenceKey : "";
@@ -24,8 +16,8 @@ export async function runReviewItem(ctx, args, actor) {
24
16
  if (decision === "accept_edited" && !(typeof args.editedSummary === "string" && args.editedSummary.trim())) {
25
17
  return { ok: false, code: "invalid-args", message: "accept_edited requires non-empty editedSummary" };
26
18
  }
27
- const store = new TaskStore(ctx.workspacePath, taskStoreRelativePath(ctx));
28
- await store.load();
19
+ const planning = await openPlanningStores(ctx);
20
+ const store = planning.taskStore;
29
21
  const task = store.getTask(taskId);
30
22
  if (!task) {
31
23
  return { ok: false, code: "task-not-found", message: `Task '${taskId}' not found` };
@@ -1,17 +1,9 @@
1
1
  import { randomUUID } from "node:crypto";
2
- import { TaskStore } from "../task-engine/store.js";
2
+ import { openPlanningStores } from "../task-engine/planning-open.js";
3
3
  import { appendLineageEvent } from "../../core/lineage-store.js";
4
4
  import { loadImprovementState, saveImprovementState } from "./improvement-state.js";
5
5
  import { ingestAgentTranscripts, ingestConfigMutations, ingestGitDiffBetweenTags, ingestPolicyDenials, ingestTaskTransitionFriction, taskIdForEvidenceKey } from "./ingest.js";
6
6
  import { priorityForTier } from "./confidence.js";
7
- function taskStoreRelativePath(ctx) {
8
- const tasks = ctx.effectiveConfig?.tasks;
9
- if (!tasks || typeof tasks !== "object" || Array.isArray(tasks)) {
10
- return undefined;
11
- }
12
- const p = tasks.storeRelativePath;
13
- return typeof p === "string" && p.trim().length > 0 ? p.trim() : undefined;
14
- }
15
7
  function hasEvidenceKey(tasks, key) {
16
8
  return tasks.some((t) => {
17
9
  const m = t.metadata;
@@ -48,8 +40,8 @@ export function getMaxRecommendationCandidatesPerRun(ctx) {
48
40
  }
49
41
  export async function runGenerateRecommendations(ctx, args) {
50
42
  const runId = randomUUID();
51
- const store = new TaskStore(ctx.workspacePath, taskStoreRelativePath(ctx));
52
- await store.load();
43
+ const planning = await openPlanningStores(ctx);
44
+ const store = planning.taskStore;
53
45
  const state = await loadImprovementState(ctx.workspacePath);
54
46
  const transcriptsRoot = resolveTranscriptArchivePath(ctx, args);
55
47
  const fromTag = typeof args.fromTag === "string" ? args.fromTag.trim() : undefined;
@@ -7,3 +7,5 @@ export { workspaceConfigModule } from "./workspace-config/index.js";
7
7
  export { planningModule } from "./planning/index.js";
8
8
  export { taskEngineModule, TaskStore, TransitionService, TaskEngineError, TransitionValidator, isTransitionAllowed, getTransitionAction, resolveTargetState, getAllowedTransitionsFrom, stateValidityGuard, dependencyCheckGuard, getNextActions } from "./task-engine/index.js";
9
9
  export type { TaskEntity, TaskStatus, TaskPriority, TaskStoreDocument, TransitionEvidence, TransitionGuard, TransitionContext, GuardResult, TaskEngineErrorCode, TaskAdapter, TaskAdapterCapability, NextActionSuggestion, BlockingAnalysisEntry } from "./task-engine/index.js";
10
+ export type { WishlistItem, WishlistStatus, WishlistStoreDocument } from "./task-engine/index.js";
11
+ export { WishlistStore, validateWishlistIntakePayload, validateWishlistUpdatePayload, buildWishlistItemFromIntake, WISHLIST_ID_RE } from "./task-engine/index.js";
@@ -5,3 +5,4 @@ export { computeHeuristicConfidence, HEURISTIC_1_ADMISSION_THRESHOLD, shouldAdmi
5
5
  export { workspaceConfigModule } from "./workspace-config/index.js";
6
6
  export { planningModule } from "./planning/index.js";
7
7
  export { taskEngineModule, TaskStore, TransitionService, TaskEngineError, TransitionValidator, isTransitionAllowed, getTransitionAction, resolveTargetState, getAllowedTransitionsFrom, stateValidityGuard, dependencyCheckGuard, getNextActions } from "./task-engine/index.js";
8
+ export { WishlistStore, validateWishlistIntakePayload, validateWishlistUpdatePayload, buildWishlistItemFromIntake, WISHLIST_ID_RE } from "./task-engine/index.js";
@@ -5,4 +5,9 @@ export { TransitionService } from "./service.js";
5
5
  export { TaskEngineError, TransitionValidator, isTransitionAllowed, getTransitionAction, resolveTargetState, getAllowedTransitionsFrom, stateValidityGuard, dependencyCheckGuard } from "./transitions.js";
6
6
  export { getNextActions } from "./suggestions.js";
7
7
  export { readWorkspaceStatusSnapshot } from "./dashboard-status.js";
8
+ export { WishlistStore } from "./wishlist-store.js";
9
+ export type { WishlistItem, WishlistStatus, WishlistStoreDocument } from "./wishlist-types.js";
10
+ export { validateWishlistIntakePayload, validateWishlistUpdatePayload, buildWishlistItemFromIntake, WISHLIST_ID_RE } from "./wishlist-validation.js";
11
+ export { openPlanningStores } from "./planning-open.js";
12
+ export { getTaskPersistenceBackend, planningSqliteDatabaseRelativePath, planningTaskStoreRelativePath, planningWishlistStoreRelativePath } from "./planning-config.js";
8
13
  export declare const taskEngineModule: WorkflowModule;