@namewta/speculo 0.8.9 → 0.8.10

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 (55) hide show
  1. package/dist/src/structured.js +186 -0
  2. package/dist/src/structured.js.map +1 -1
  3. package/package.json +1 -1
  4. package/template/commands/archive-and-consolidate.md +9 -0
  5. package/template/commands/status.md +3 -3
  6. package/template/workflows/ops/A-archive-and-learn/A-archive-and-learn.md +64 -0
  7. package/template/workflows/ops/A-archive-and-learn/promotion-plan-template.md +41 -0
  8. package/template/workflows/ops/A-archive-and-learn/retrospective-template.md +53 -0
  9. package/template/workflows/ops/E-execute-and-stabilize/E-execute-and-stabilize.md +75 -0
  10. package/template/workflows/ops/E-execute-and-stabilize/attempt-summary-template.md +44 -0
  11. package/template/workflows/ops/E-execute-and-stabilize/diagnosis-template.md +24 -0
  12. package/template/workflows/ops/E-execute-and-stabilize/handoff-template.md +32 -0
  13. package/template/workflows/ops/E-execute-and-stabilize/rollback-template.md +26 -0
  14. package/template/workflows/ops/E-execute-and-stabilize/verification-state-template.json +30 -0
  15. package/template/workflows/ops/E-execute-and-stabilize/verification-template.md +55 -0
  16. package/template/workflows/ops/I-intake-and-assess/I-intake-and-assess.md +66 -0
  17. package/template/workflows/ops/I-intake-and-assess/change-status-template.json +26 -0
  18. package/template/workflows/ops/I-intake-and-assess/collector-catalog.md +28 -0
  19. package/template/workflows/ops/I-intake-and-assess/deployment-dossier-template.md +62 -0
  20. package/template/workflows/ops/I-intake-and-assess/global-change-status-template.json +26 -0
  21. package/template/workflows/ops/I-intake-and-assess/project-detection.md +38 -0
  22. package/template/workflows/ops/I-intake-and-assess/request-template.md +44 -0
  23. package/template/workflows/ops/I-intake-and-assess/system-report-template.md +34 -0
  24. package/template/workflows/ops/I-intake-and-assess/target-profile-template.json +24 -0
  25. package/template/workflows/ops/INDEX.md +30 -0
  26. package/template/workflows/ops/P-plan-and-approve/P-plan-and-approve.md +65 -0
  27. package/template/workflows/ops/P-plan-and-approve/plan-review-template.md +78 -0
  28. package/template/workflows/ops/README.md +120 -0
  29. package/template/workflows/ops/_state/archive/.gitkeep +1 -0
  30. package/template/workflows/ops/_state/changes/.gitkeep +1 -0
  31. package/template/workflows/ops/_state/status.json +6 -0
  32. package/template/workflows/ops/common/rules/artifact-contract.md +37 -0
  33. package/template/workflows/ops/common/rules/closure-and-learning.md +25 -0
  34. package/template/workflows/ops/common/rules/evidence-and-redaction.md +22 -0
  35. package/template/workflows/ops/common/rules/execution-loop.md +27 -0
  36. package/template/workflows/ops/common/rules/path-and-scope-contract.md +21 -0
  37. package/template/workflows/ops/common/rules/plan-and-approval.md +25 -0
  38. package/template/workflows/ops/common/rules/project-and-change-scope.md +20 -0
  39. package/template/workflows/ops/common/rules/target-profile-and-release-gates.md +44 -0
  40. package/template/workflows/ops/common/schemas/approval.schema.json +28 -0
  41. package/template/workflows/ops/common/schemas/attempt.schema.json +42 -0
  42. package/template/workflows/ops/common/schemas/change-status.schema.json +43 -0
  43. package/template/workflows/ops/common/schemas/deployment-model.schema.json +26 -0
  44. package/template/workflows/ops/common/schemas/implementation-plan.schema.json +221 -0
  45. package/template/workflows/ops/common/schemas/inventory-snapshot.schema.json +31 -0
  46. package/template/workflows/ops/common/schemas/journal-event.schema.json +22 -0
  47. package/template/workflows/ops/common/schemas/project.schema.json +19 -0
  48. package/template/workflows/ops/common/schemas/promotion-approval.schema.json +20 -0
  49. package/template/workflows/ops/common/schemas/promotion-manifest.schema.json +22 -0
  50. package/template/workflows/ops/common/schemas/status.schema.json +30 -0
  51. package/template/workflows/ops/common/schemas/target-profile.schema.json +32 -0
  52. package/template/workflows/ops/common/schemas/verification-state.schema.json +30 -0
  53. package/template/workflows/ops/common/tools/close-change.mjs +177 -0
  54. package/template/workflows/ops/common/tools/validate-ops.mjs +992 -0
  55. package/template/workflows/ops/runtime-contract.json +14 -0
@@ -0,0 +1,14 @@
1
+ {
2
+ "schema_version": 1,
3
+ "workflow": "ops",
4
+ "config": null,
5
+ "structured_state": [
6
+ ".speculo/ops/status.json",
7
+ ".speculo/ops/changes/*/.status.json",
8
+ ".speculo/ops/archive/*/*/.status.json",
9
+ ".speculo/ops/projects/*/project.json",
10
+ ".speculo/ops/projects/*/changes/*/.status.json",
11
+ ".speculo/ops/projects/*/archive/*/*/.status.json"
12
+ ],
13
+ "opaque_default": "preserve-byte-for-byte"
14
+ }