@namewta/speculo 1.0.4 → 1.0.6

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 (122) hide show
  1. package/README.md +1 -1
  2. package/dist/src/kernel.d.ts +23 -2
  3. package/dist/src/kernel.js +9 -0
  4. package/dist/src/kernel.js.map +1 -1
  5. package/dist/src/ops-resources.d.ts +3 -0
  6. package/dist/src/ops-resources.js +188 -0
  7. package/dist/src/ops-resources.js.map +1 -0
  8. package/dist/src/refresh.js +20 -2
  9. package/dist/src/refresh.js.map +1 -1
  10. package/dist/src/structured.js +8 -1
  11. package/dist/src/structured.js.map +1 -1
  12. package/dist/src/workflows.js +1 -1
  13. package/dist/src/workflows.js.map +1 -1
  14. package/package.json +1 -1
  15. package/template/.speculo/README.md +3 -3
  16. package/template/.speculo/kernel/README.md +3 -0
  17. package/template/.speculo/kernel/checkpoint.schema.json +138 -4
  18. package/template/commands/archive-and-consolidate.md +5 -1
  19. package/template/commands/status.md +2 -2
  20. package/template/workflows/ops/D-project-deploy/D-project-deploy.md +34 -0
  21. package/template/workflows/ops/H-host-manage/H-host-manage.md +30 -0
  22. package/template/workflows/ops/I-initialize/I-initialize.md +28 -0
  23. package/template/workflows/ops/INDEX.md +15 -17
  24. package/template/workflows/ops/README.md +59 -87
  25. package/template/workflows/ops/_state/status.json +15 -3
  26. package/template/workflows/ops/common/CAPABILITIES.md +23 -0
  27. package/template/workflows/ops/common/USAGE.md +112 -0
  28. package/template/workflows/ops/common/examples/README.md +7 -0
  29. package/template/workflows/ops/common/examples/binding.example.json +12 -0
  30. package/template/workflows/ops/common/examples/compose-app.example.json +56 -0
  31. package/template/workflows/ops/common/examples/credential.example.json +9 -0
  32. package/template/workflows/ops/common/examples/environment-request.example.json +7 -0
  33. package/template/workflows/ops/common/examples/register.example.json +44 -0
  34. package/template/workflows/ops/common/examples/shared-allocation.example.json +37 -0
  35. package/template/workflows/ops/common/rules/activation-and-memory.md +5 -20
  36. package/template/workflows/ops/common/rules/persistence-and-secrets.md +27 -0
  37. package/template/workflows/ops/common/rules/recovery.md +15 -0
  38. package/template/workflows/ops/common/rules/shared-services.md +13 -0
  39. package/template/workflows/ops/common/schemas/allocation.schema.json +92 -0
  40. package/template/workflows/ops/common/schemas/approval.schema.json +41 -21
  41. package/template/workflows/ops/common/schemas/binding.schema.json +73 -0
  42. package/template/workflows/ops/common/schemas/deployment.schema.json +244 -0
  43. package/template/workflows/ops/common/schemas/host.schema.json +88 -0
  44. package/template/workflows/ops/common/schemas/plan.schema.json +1573 -0
  45. package/template/workflows/ops/common/schemas/project.schema.json +55 -11
  46. package/template/workflows/ops/common/schemas/spec.schema.json +1032 -0
  47. package/template/workflows/ops/common/schemas/status.schema.json +758 -17
  48. package/template/workflows/ops/common/service-profiles/custom.md +5 -0
  49. package/template/workflows/ops/common/service-profiles/docker-engine.md +11 -0
  50. package/template/workflows/ops/common/service-profiles/minio.md +7 -0
  51. package/template/workflows/ops/common/service-profiles/mysql.md +7 -0
  52. package/template/workflows/ops/common/service-profiles/redis.md +7 -0
  53. package/template/workflows/ops/common/templates/CONTROLLER-RECORD.md +13 -0
  54. package/template/workflows/ops/common/templates/EXECUTION-PLAN.md +15 -0
  55. package/template/workflows/ops/common/templates/HOST-README.md +11 -0
  56. package/template/workflows/ops/common/templates/PROJECT-README.md +15 -0
  57. package/template/workflows/ops/common/tests/test_ops.py +392 -0
  58. package/template/workflows/ops/common/tools/bootstrap.ps1 +18 -0
  59. package/template/workflows/ops/common/tools/bootstrap.sh +27 -0
  60. package/template/workflows/ops/common/tools/demo-local.py +64 -0
  61. package/template/workflows/ops/common/tools/ops.py +7 -0
  62. package/template/workflows/ops/common/tools/opslib/__init__.py +2 -0
  63. package/template/workflows/ops/common/tools/opslib/__pycache__/__init__.cpython-312.pyc +0 -0
  64. package/template/workflows/ops/common/tools/opslib/__pycache__/core.cpython-312.pyc +0 -0
  65. package/template/workflows/ops/common/tools/opslib/__pycache__/model.cpython-312.pyc +0 -0
  66. package/template/workflows/ops/common/tools/opslib/agent.py +510 -0
  67. package/template/workflows/ops/common/tools/opslib/cli.py +172 -0
  68. package/template/workflows/ops/common/tools/opslib/core.py +199 -0
  69. package/template/workflows/ops/common/tools/opslib/docs.py +199 -0
  70. package/template/workflows/ops/common/tools/opslib/execution.py +248 -0
  71. package/template/workflows/ops/common/tools/opslib/host_recipes.py +67 -0
  72. package/template/workflows/ops/common/tools/opslib/model.py +199 -0
  73. package/template/workflows/ops/common/tools/opslib/native_windows.py +32 -0
  74. package/template/workflows/ops/common/tools/opslib/planner.py +497 -0
  75. package/template/workflows/ops/common/tools/opslib/services.py +47 -0
  76. package/template/workflows/ops/common/tools/opslib/sources.py +27 -0
  77. package/template/workflows/ops/common/tools/opslib/transport.py +55 -0
  78. package/template/workflows/ops/common/tools/validate-ops.mjs +32 -991
  79. package/template/workflows/ops/manifest.json +60 -1
  80. package/template/workflows/ops/runtime-contract.json +1 -6
  81. package/template/workflows/ops/A-archive-and-learn/A-archive-and-learn.md +0 -71
  82. package/template/workflows/ops/A-archive-and-learn/promotion-plan-template.md +0 -41
  83. package/template/workflows/ops/A-archive-and-learn/retrospective-template.md +0 -53
  84. package/template/workflows/ops/E-execute-and-stabilize/E-execute-and-stabilize.md +0 -82
  85. package/template/workflows/ops/E-execute-and-stabilize/attempt-summary-template.md +0 -44
  86. package/template/workflows/ops/E-execute-and-stabilize/diagnosis-template.md +0 -24
  87. package/template/workflows/ops/E-execute-and-stabilize/handoff-template.md +0 -32
  88. package/template/workflows/ops/E-execute-and-stabilize/rollback-template.md +0 -26
  89. package/template/workflows/ops/E-execute-and-stabilize/verification-state-template.json +0 -30
  90. package/template/workflows/ops/E-execute-and-stabilize/verification-template.md +0 -55
  91. package/template/workflows/ops/I-intake-and-assess/I-intake-and-assess.md +0 -73
  92. package/template/workflows/ops/I-intake-and-assess/change-status-template.json +0 -26
  93. package/template/workflows/ops/I-intake-and-assess/collector-catalog.md +0 -28
  94. package/template/workflows/ops/I-intake-and-assess/deployment-dossier-template.md +0 -62
  95. package/template/workflows/ops/I-intake-and-assess/global-change-status-template.json +0 -26
  96. package/template/workflows/ops/I-intake-and-assess/project-detection.md +0 -38
  97. package/template/workflows/ops/I-intake-and-assess/request-template.md +0 -44
  98. package/template/workflows/ops/I-intake-and-assess/system-report-template.md +0 -34
  99. package/template/workflows/ops/I-intake-and-assess/target-profile-template.json +0 -24
  100. package/template/workflows/ops/P-plan-and-approve/P-plan-and-approve.md +0 -72
  101. package/template/workflows/ops/P-plan-and-approve/plan-review-template.md +0 -78
  102. package/template/workflows/ops/_state/archive/.gitkeep +0 -1
  103. package/template/workflows/ops/_state/changes/.gitkeep +0 -1
  104. package/template/workflows/ops/common/rules/artifact-contract.md +0 -37
  105. package/template/workflows/ops/common/rules/closure-and-learning.md +0 -25
  106. package/template/workflows/ops/common/rules/evidence-and-redaction.md +0 -22
  107. package/template/workflows/ops/common/rules/execution-loop.md +0 -27
  108. package/template/workflows/ops/common/rules/path-and-scope-contract.md +0 -21
  109. package/template/workflows/ops/common/rules/plan-and-approval.md +0 -25
  110. package/template/workflows/ops/common/rules/project-and-change-scope.md +0 -20
  111. package/template/workflows/ops/common/rules/target-profile-and-release-gates.md +0 -44
  112. package/template/workflows/ops/common/schemas/attempt.schema.json +0 -42
  113. package/template/workflows/ops/common/schemas/change-status.schema.json +0 -43
  114. package/template/workflows/ops/common/schemas/deployment-model.schema.json +0 -26
  115. package/template/workflows/ops/common/schemas/implementation-plan.schema.json +0 -221
  116. package/template/workflows/ops/common/schemas/inventory-snapshot.schema.json +0 -31
  117. package/template/workflows/ops/common/schemas/journal-event.schema.json +0 -22
  118. package/template/workflows/ops/common/schemas/promotion-approval.schema.json +0 -20
  119. package/template/workflows/ops/common/schemas/promotion-manifest.schema.json +0 -22
  120. package/template/workflows/ops/common/schemas/target-profile.schema.json +0 -32
  121. package/template/workflows/ops/common/schemas/verification-state.schema.json +0 -30
  122. package/template/workflows/ops/common/tools/close-change.mjs +0 -177
@@ -1,19 +1,63 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "urn:speculo:ops:project:v1",
4
- "title": "Ops Project Identity",
5
4
  "type": "object",
6
- "required": ["schema_version", "artifact", "project_id", "display_name", "aliases", "identities", "source_hints", "created_at", "updated_at"],
7
5
  "properties": {
8
- "schema_version": {"const": 1},
9
- "artifact": {"const": "ops-project"},
10
- "project_id": {"type": "string", "pattern": "^[a-z0-9]+(?:-[a-z0-9]+)*$"},
11
- "display_name": {"type": "string", "minLength": 1},
12
- "aliases": {"type": "array", "items": {"type": "string", "minLength": 1}, "uniqueItems": true},
13
- "identities": {"type": "array", "items": {"type": "object", "required": ["kind", "value", "source"], "properties": {"kind": {"enum": ["vcs", "monorepo-component", "workspace", "package", "user-confirmed", "digest"]}, "value": {"type": "string", "minLength": 1}, "source": {"type": "string", "minLength": 1}}, "additionalProperties": false}, "minItems": 1},
14
- "source_hints": {"type": "array", "items": {"type": "string", "minLength": 1}, "uniqueItems": true},
15
- "created_at": {"type": "string", "format": "date-time"},
16
- "updated_at": {"type": "string", "format": "date-time"}
6
+ "project_id": {
7
+ "type": "string",
8
+ "pattern": "^[a-z0-9]+(?:-[a-z0-9]+)*$",
9
+ "maxLength": 80
10
+ },
11
+ "display_name": {
12
+ "type": "string",
13
+ "minLength": 1
14
+ },
15
+ "kind": {
16
+ "enum": [
17
+ "app",
18
+ "shared-service"
19
+ ]
20
+ },
21
+ "service_type": {
22
+ "type": [
23
+ "string",
24
+ "null"
25
+ ]
26
+ },
27
+ "source": {
28
+ "type": "object",
29
+ "properties": {
30
+ "type": {
31
+ "enum": [
32
+ "local",
33
+ "git",
34
+ "image",
35
+ "manual"
36
+ ]
37
+ },
38
+ "location": {
39
+ "type": "string",
40
+ "minLength": 1
41
+ },
42
+ "revision": {
43
+ "type": "string",
44
+ "minLength": 1
45
+ }
46
+ },
47
+ "required": [
48
+ "type",
49
+ "location",
50
+ "revision"
51
+ ],
52
+ "additionalProperties": false
53
+ }
17
54
  },
55
+ "required": [
56
+ "project_id",
57
+ "display_name",
58
+ "kind",
59
+ "service_type",
60
+ "source"
61
+ ],
18
62
  "additionalProperties": false
19
63
  }