@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.
- package/dist/bin.js +128 -0
- package/dist/bin.js.map +1 -1
- package/dist/commands/add-flow.js +7 -1
- package/dist/commands/add-flow.js.map +1 -1
- package/dist/commands/add.js +22 -5
- package/dist/commands/add.js.map +1 -1
- package/dist/commands/dispatch.d.ts +4 -0
- package/dist/commands/dispatch.js +483 -7
- package/dist/commands/dispatch.js.map +1 -1
- package/dist/commands/doctor.js +21 -5
- package/dist/commands/doctor.js.map +1 -1
- package/dist/commands/issue.d.ts +1 -0
- package/dist/commands/issue.js +2 -2
- package/dist/commands/issue.js.map +1 -1
- package/dist/commands/project-init.js +14 -8
- package/dist/commands/project-init.js.map +1 -1
- package/dist/commands/work.d.ts +34 -0
- package/dist/commands/work.js +1769 -0
- package/dist/commands/work.js.map +1 -0
- package/dist/commands/workflow.d.ts +32 -0
- package/dist/commands/workflow.js +270 -0
- package/dist/commands/workflow.js.map +1 -0
- package/dist/core/config.d.ts +29 -0
- package/dist/core/config.js +157 -1
- package/dist/core/config.js.map +1 -1
- package/dist/core/skill-classification.d.ts +13 -0
- package/dist/core/skill-classification.js +50 -0
- package/dist/core/skill-classification.js.map +1 -0
- package/dist/core/stage-clarity-verification.js +58 -7
- package/dist/core/stage-clarity-verification.js.map +1 -1
- package/dist/core/template-registry.js +26 -7
- package/dist/core/template-registry.js.map +1 -1
- package/dist/core/work-ledger.d.ts +44 -0
- package/dist/core/work-ledger.js +88 -0
- package/dist/core/work-ledger.js.map +1 -0
- package/dist/core/work-provider-adapters.d.ts +110 -0
- package/dist/core/work-provider-adapters.js +484 -0
- package/dist/core/work-provider-adapters.js.map +1 -0
- package/dist/core/workflow-graph.d.ts +100 -0
- package/dist/core/workflow-graph.js +655 -0
- package/dist/core/workflow-graph.js.map +1 -0
- package/dist/core/workspace-conformance.js +55 -0
- package/dist/core/workspace-conformance.js.map +1 -1
- package/dist/core/workspace-layout.d.ts +3 -1
- package/dist/core/workspace-layout.js +4 -0
- package/dist/core/workspace-layout.js.map +1 -1
- package/package.json +2 -2
- package/schemas/zsk-config.schema.json +112 -1
- package/templates/module/frontend-module/CONTEXT.md +22 -0
- package/templates/module/frontend-module/design.md +1 -1
- package/templates/module/frontend-module/proposal.md +1 -1
- package/templates/module/frontend-module/spec.md +1 -1
- package/templates/module/frontend-module/tasks.md +14 -1
- package/templates/project-init/.zsk/CONTEXT.md +35 -0
- package/templates/project-init/.zsk/README.md +94 -10
- package/templates/project-init/.zsk/config.yaml +2 -0
- package/templates/project-init/.zsk/docs/CONFIG-SCHEMA.md +13 -1
- package/templates/project-init/.zsk/docs/PROJECT-CONFIG.md +25 -7
- package/templates/project-init/.zsk/docs/SYSTEM-SPEC.md +1 -0
- package/templates/project-init/.zsk/team.yaml +218 -0
- package/templates/project-init/.zsk/work.yaml +75 -0
- package/templates/project-init/.zsk/evidence/README.md +0 -21
- package/templates/project-init/.zsk/evidence/prepare/README.md +0 -22
- package/templates/project-init/.zsk/issues/README.md +0 -10
- package/templates/project-init/.zsk/templates/module/README.md +0 -13
- package/templates/project-init/.zsk/templates/module/design.md +0 -22
- package/templates/project-init/.zsk/templates/module/module.yaml +0 -15
- package/templates/project-init/.zsk/templates/module/proposal.md +0 -20
- package/templates/project-init/.zsk/templates/module/spec.md +0 -22
- 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
|