@captain_z/zsk 1.8.6 → 1.8.7

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 (70) hide show
  1. package/dist/bin.js +128 -0
  2. package/dist/bin.js.map +1 -1
  3. package/dist/commands/add-flow.js +7 -1
  4. package/dist/commands/add-flow.js.map +1 -1
  5. package/dist/commands/add.js +22 -5
  6. package/dist/commands/add.js.map +1 -1
  7. package/dist/commands/dispatch.d.ts +4 -0
  8. package/dist/commands/dispatch.js +483 -7
  9. package/dist/commands/dispatch.js.map +1 -1
  10. package/dist/commands/doctor.js +21 -5
  11. package/dist/commands/doctor.js.map +1 -1
  12. package/dist/commands/issue.d.ts +1 -0
  13. package/dist/commands/issue.js +2 -2
  14. package/dist/commands/issue.js.map +1 -1
  15. package/dist/commands/project-init.js +14 -8
  16. package/dist/commands/project-init.js.map +1 -1
  17. package/dist/commands/work.d.ts +34 -0
  18. package/dist/commands/work.js +1769 -0
  19. package/dist/commands/work.js.map +1 -0
  20. package/dist/commands/workflow.d.ts +32 -0
  21. package/dist/commands/workflow.js +270 -0
  22. package/dist/commands/workflow.js.map +1 -0
  23. package/dist/core/config.d.ts +29 -0
  24. package/dist/core/config.js +157 -1
  25. package/dist/core/config.js.map +1 -1
  26. package/dist/core/skill-classification.d.ts +13 -0
  27. package/dist/core/skill-classification.js +50 -0
  28. package/dist/core/skill-classification.js.map +1 -0
  29. package/dist/core/stage-clarity-verification.js +58 -7
  30. package/dist/core/stage-clarity-verification.js.map +1 -1
  31. package/dist/core/template-registry.js +26 -7
  32. package/dist/core/template-registry.js.map +1 -1
  33. package/dist/core/work-ledger.d.ts +44 -0
  34. package/dist/core/work-ledger.js +88 -0
  35. package/dist/core/work-ledger.js.map +1 -0
  36. package/dist/core/work-provider-adapters.d.ts +110 -0
  37. package/dist/core/work-provider-adapters.js +484 -0
  38. package/dist/core/work-provider-adapters.js.map +1 -0
  39. package/dist/core/workflow-graph.d.ts +100 -0
  40. package/dist/core/workflow-graph.js +655 -0
  41. package/dist/core/workflow-graph.js.map +1 -0
  42. package/dist/core/workspace-conformance.js +55 -0
  43. package/dist/core/workspace-conformance.js.map +1 -1
  44. package/dist/core/workspace-layout.d.ts +3 -1
  45. package/dist/core/workspace-layout.js +4 -0
  46. package/dist/core/workspace-layout.js.map +1 -1
  47. package/package.json +2 -2
  48. package/schemas/zsk-config.schema.json +112 -1
  49. package/templates/module/frontend-module/CONTEXT.md +22 -0
  50. package/templates/module/frontend-module/design.md +1 -1
  51. package/templates/module/frontend-module/proposal.md +1 -1
  52. package/templates/module/frontend-module/spec.md +1 -1
  53. package/templates/module/frontend-module/tasks.md +14 -1
  54. package/templates/project-init/.zsk/CONTEXT.md +35 -0
  55. package/templates/project-init/.zsk/README.md +94 -10
  56. package/templates/project-init/.zsk/config.yaml +2 -0
  57. package/templates/project-init/.zsk/docs/CONFIG-SCHEMA.md +13 -1
  58. package/templates/project-init/.zsk/docs/PROJECT-CONFIG.md +25 -7
  59. package/templates/project-init/.zsk/docs/SYSTEM-SPEC.md +1 -0
  60. package/templates/project-init/.zsk/team.yaml +218 -0
  61. package/templates/project-init/.zsk/work.yaml +75 -0
  62. package/templates/project-init/.zsk/evidence/README.md +0 -21
  63. package/templates/project-init/.zsk/evidence/prepare/README.md +0 -22
  64. package/templates/project-init/.zsk/issues/README.md +0 -10
  65. package/templates/project-init/.zsk/templates/module/README.md +0 -13
  66. package/templates/project-init/.zsk/templates/module/design.md +0 -22
  67. package/templates/project-init/.zsk/templates/module/module.yaml +0 -15
  68. package/templates/project-init/.zsk/templates/module/proposal.md +0 -20
  69. package/templates/project-init/.zsk/templates/module/spec.md +0 -22
  70. package/templates/project-init/.zsk/templates/module/tasks.md +0 -16
@@ -1,20 +0,0 @@
1
- # Proposal
2
-
3
- ## Output Quality Check
4
-
5
- status: NEEDS_CLARIFICATION
6
- owner: proposal
7
- source_basis: []
8
- blocking_items:
9
- - Fill the proposal from reviewed sources.
10
- next_action: Record scope, non-goals, success criteria, and open questions.
11
-
12
- ## Problem
13
-
14
- ## Scope
15
-
16
- ## Non-Goals
17
-
18
- ## Success Criteria
19
-
20
- ## Open Questions
@@ -1,22 +0,0 @@
1
- # Spec
2
-
3
- ## Output Quality Check
4
-
5
- status: NEEDS_CLARIFICATION
6
- owner: spec
7
- source_basis: []
8
- blocking_items:
9
- - Fill observable behavior and acceptance criteria from reviewed sources.
10
- next_action: Resolve missing behavior questions before design.
11
-
12
- ## Functional Requirements
13
-
14
- ## Non-Functional Requirements
15
-
16
- ## Acceptance Criteria
17
-
18
- ## Scenarios
19
-
20
- ## Edge Cases
21
-
22
- ## Open Questions
@@ -1,16 +0,0 @@
1
- # Tasks
2
-
3
- ## Output Quality Check
4
-
5
- status: NEEDS_CLARIFICATION
6
- owner: task
7
- source_basis: []
8
- blocking_items:
9
- - Convert design into executable tasks.
10
- next_action: Add ordered tasks with dependencies, owners, and evidence hooks.
11
-
12
- ## Task Queue
13
-
14
- - [ ] Define the first implementation task.
15
-
16
- ## Evidence Hooks