@captain_z/zsk 1.7.0 → 1.8.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.
Files changed (93) hide show
  1. package/dist/bin.js +196 -12
  2. package/dist/bin.js.map +1 -1
  3. package/dist/commands/check.js +107 -16
  4. package/dist/commands/check.js.map +1 -1
  5. package/dist/commands/config.d.ts +11 -0
  6. package/dist/commands/config.js +132 -3
  7. package/dist/commands/config.js.map +1 -1
  8. package/dist/commands/demo.js +2 -2
  9. package/dist/commands/demo.js.map +1 -1
  10. package/dist/commands/dispatch.d.ts +11 -0
  11. package/dist/commands/dispatch.js +69 -0
  12. package/dist/commands/dispatch.js.map +1 -0
  13. package/dist/commands/doctor.d.ts +4 -0
  14. package/dist/commands/doctor.js +102 -0
  15. package/dist/commands/doctor.js.map +1 -0
  16. package/dist/commands/gate.d.ts +9 -0
  17. package/dist/commands/gate.js +48 -0
  18. package/dist/commands/gate.js.map +1 -0
  19. package/dist/commands/issue.d.ts +2 -1
  20. package/dist/commands/issue.js +72 -27
  21. package/dist/commands/issue.js.map +1 -1
  22. package/dist/commands/module.js +32 -0
  23. package/dist/commands/module.js.map +1 -1
  24. package/dist/commands/prep.d.ts +2 -4
  25. package/dist/commands/prep.js +1 -37
  26. package/dist/commands/prep.js.map +1 -1
  27. package/dist/commands/prepare.d.ts +17 -0
  28. package/dist/commands/prepare.js +259 -0
  29. package/dist/commands/prepare.js.map +1 -0
  30. package/dist/commands/project-init.d.ts +1 -0
  31. package/dist/commands/project-init.js +28 -24
  32. package/dist/commands/project-init.js.map +1 -1
  33. package/dist/commands/template.d.ts +2 -0
  34. package/dist/commands/template.js +34 -0
  35. package/dist/commands/template.js.map +1 -0
  36. package/dist/core/config.d.ts +86 -1
  37. package/dist/core/config.js +181 -21
  38. package/dist/core/config.js.map +1 -1
  39. package/dist/core/origin-detection.d.ts +10 -0
  40. package/dist/core/origin-detection.js +135 -0
  41. package/dist/core/origin-detection.js.map +1 -0
  42. package/dist/core/prepare-lifecycle.d.ts +54 -0
  43. package/dist/core/prepare-lifecycle.js +302 -0
  44. package/dist/core/prepare-lifecycle.js.map +1 -0
  45. package/dist/core/prepare-sync.d.ts +82 -0
  46. package/dist/core/prepare-sync.js +1499 -0
  47. package/dist/core/prepare-sync.js.map +1 -0
  48. package/dist/core/raw-manifest.d.ts +20 -0
  49. package/dist/core/raw-manifest.js +105 -4
  50. package/dist/core/raw-manifest.js.map +1 -1
  51. package/dist/core/source-draft.d.ts +14 -0
  52. package/dist/core/source-draft.js +251 -0
  53. package/dist/core/source-draft.js.map +1 -0
  54. package/dist/core/staffing-plan.d.ts +206 -0
  55. package/dist/core/staffing-plan.js +1115 -0
  56. package/dist/core/staffing-plan.js.map +1 -0
  57. package/dist/core/stage-quality.d.ts +56 -0
  58. package/dist/core/stage-quality.js +487 -0
  59. package/dist/core/stage-quality.js.map +1 -0
  60. package/dist/core/template-registry.d.ts +29 -0
  61. package/dist/core/template-registry.js +289 -0
  62. package/dist/core/template-registry.js.map +1 -0
  63. package/dist/core/workspace-layout.d.ts +5 -3
  64. package/dist/core/workspace-layout.js +34 -20
  65. package/dist/core/workspace-layout.js.map +1 -1
  66. package/package.json +2 -2
  67. package/schemas/zsk-config.schema.json +257 -111
  68. package/templates/issue/default/issue.md +5 -1
  69. package/templates/module/frontend-module/design.md +93 -0
  70. package/templates/module/frontend-module/proposal.md +43 -1
  71. package/templates/module/frontend-module/spec.md +30 -0
  72. package/templates/module/frontend-module/tasks.md +43 -0
  73. package/templates/project-init/.zsk/config.yaml +8 -94
  74. package/templates/project-init/.zsk/docs/PROJECT-CONFIG.md +34 -11
  75. package/templates/project-init/.zsk/docs/SYSTEM-SPEC.md +37 -5
  76. package/templates/project-init/.zsk/modules/index.md +7 -0
  77. package/templates/project-init/.zsk/raws/index.md +15 -0
  78. package/templates/project-init/.zsk/raws/manifest.json +4 -0
  79. package/templates/project-init/.zsk/raws/prepare/backend/index.md +4 -0
  80. package/templates/project-init/.zsk/raws/prepare/design/index.md +3 -0
  81. package/templates/project-init/.zsk/raws/prepare/index.md +4 -0
  82. package/templates/project-init/.zsk/raws/prepare/product/index.md +4 -0
  83. package/templates/project-init/.zsk/raws/prepare/qa/index.md +4 -0
  84. package/templates/project-init/.zsk/raws/prepare/ux/index.md +3 -0
  85. package/templates/project-init/.zsk/roles.yaml +129 -0
  86. package/templates/project-init/.zsk/evidence/.gitkeep +0 -1
  87. package/templates/project-init/.zsk/issues/README.md +0 -58
  88. package/templates/project-init/.zsk/issues/_taxonomy.md +0 -35
  89. package/templates/project-init/.zsk/issues/index.md +0 -7
  90. package/templates/project-init/.zsk/modules/.gitkeep +0 -1
  91. package/templates/project-init/.zsk/plans/.gitkeep +0 -1
  92. package/templates/project-init/.zsk/playwright/.gitkeep +0 -1
  93. package/templates/project-init/.zsk/resources/.gitkeep +0 -1
@@ -1,35 +0,0 @@
1
- # Issue Taxonomy
2
-
3
- Managed issue records belong under `.zsk/issues/` or the configured `.zsk/config.yaml#paths.issues` root.
4
-
5
- Each module has a module index at `.zsk/issues/{module}/index.md`. The issue root has a global index at `.zsk/issues/index.md` with module totals. `zsk issue create` and `zsk issue update` refresh both indexes.
6
-
7
- | Type | Concrete Issue Directory | Prefix |
8
- | --- | --- | --- |
9
- | Demo Issue | `.zsk/issues/{module}/{prefix}-0001-slug/` | `DEMO` |
10
- | Smoke Issue | `.zsk/issues/{module}/{prefix}-0001-slug/` | `SMOKE` |
11
- | Review Issue | `.zsk/issues/{module}/{prefix}-0001-slug/` | `REV` |
12
- | Defect | `.zsk/issues/{module}/{prefix}-0001-slug/` | `DEFECT` |
13
- | Verify Issue | `.zsk/issues/{module}/{prefix}-0001-slug/` | `VER` |
14
- | Acceptance Issue | `.zsk/issues/{module}/{prefix}-0001-slug/` | `ACC` |
15
-
16
- Stage directories such as `.zsk/issues/{module}/demo/index.md` may exist as stage views or evidence buckets. The authoritative status indexes are `.zsk/issues/{module}/index.md` and `.zsk/issues/index.md`.
17
-
18
- `.zsk/resources/issues/` is reserved for imported external issue feeds or compatibility inputs.
19
-
20
- ## Required Intake
21
-
22
- Every actionable issue should include:
23
-
24
- - reproduction steps or triggering command;
25
- - actual/current behavior;
26
- - expected behavior;
27
- - severity and rationale;
28
- - environment/version/data source;
29
- - evidence links;
30
- - root-cause hypothesis and confidence;
31
- - fix route;
32
- - Documentation Feedback target or no-update rationale;
33
- - regression guard;
34
- - verification evidence and user/product confirmation before closing behavior-changing issues;
35
- - updated module index and global issue index.
@@ -1,7 +0,0 @@
1
- # Issues Index
2
-
3
- Module-level issue totals. `zsk issue create` and `zsk issue update` refresh this file.
4
-
5
- | Module | Total | Open | Closed |
6
- | --- | ---: | ---: | ---: |
7
- | | 0 | 0 | 0 |