@bonginkan/maria-lite 0.0.0

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 (32) hide show
  1. package/LICENSE +125 -0
  2. package/README.md +35 -0
  3. package/dist/cli.cjs +161094 -0
  4. package/dist/cli.cjs.map +1 -0
  5. package/knowledge-packs/caio-ai-management-pack.yaml +21 -0
  6. package/knowledge-packs/ceo-decision-pack.yaml +22 -0
  7. package/knowledge-packs/cto-engineering-execution-pack.yaml +22 -0
  8. package/knowledge-packs/cxo-kpi-analytics-pack.yaml +23 -0
  9. package/knowledge-packs/dev-environment-operations-pack.yaml +19 -0
  10. package/knowledge-packs/e2e-testing-configuration-pack.yaml +20 -0
  11. package/knowledge-packs/intent-routing-pack.yaml +19 -0
  12. package/knowledge-packs/lint-truth-pack.yaml +19 -0
  13. package/knowledge-packs/maria-os-local-mode-local-llm-pack.yaml +38 -0
  14. package/knowledge-packs/operations-decomposition-super-pack.yaml +23 -0
  15. package/knowledge-packs/parent-maria-pack.yaml +23 -0
  16. package/knowledge-packs/product-storytelling-pack.yaml +23 -0
  17. package/knowledge-packs/team-dev-workflow-pack.yaml +19 -0
  18. package/package.json +47 -0
  19. package/schemas/ceo-clone/1.2/AuditEvent.schema.json +84 -0
  20. package/schemas/ceo-clone/1.2/BoundarySpec.schema.json +104 -0
  21. package/schemas/ceo-clone/1.2/CandidateDecision.schema.json +21 -0
  22. package/schemas/ceo-clone/1.2/D3ExecutionPolicy.schema.json +53 -0
  23. package/schemas/ceo-clone/1.2/D3MatchExplanation.schema.json +53 -0
  24. package/schemas/ceo-clone/1.2/DecisionLog.schema.json +211 -0
  25. package/schemas/ceo-clone/1.2/DecisionRequest.schema.json +55 -0
  26. package/schemas/ceo-clone/1.2/DecisionResponse.schema.json +136 -0
  27. package/schemas/ceo-clone/1.2/DeliveryAndAcceptance.schema.json +73 -0
  28. package/schemas/ceo-clone/1.2/ExecutionEnvelope.schema.json +39 -0
  29. package/schemas/ceo-clone/1.2/ReviewQueue.schema.json +30 -0
  30. package/schemas/ceo-clone/1.2/ReviewSloPolicy.schema.json +40 -0
  31. package/schemas/ceo-clone/1.2/SupportAccessBoundary.schema.json +40 -0
  32. package/schemas/ceo-clone/1.2/index.schema.json +46 -0
@@ -0,0 +1,40 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "$id": "ceo-clone/1.2/SupportAccessBoundary.schema.json",
4
+ "title": "CEO Clone Support Access Boundary v1.2",
5
+ "description": "Defines what vendor remote support can/cannot access under VPN-limited maintenance.",
6
+ "type": "object",
7
+ "additionalProperties": false,
8
+ "required": ["version", "remote_support", "data_access_rules"],
9
+ "properties": {
10
+ "version": { "type": "string", "pattern": "^v\\d+\\.\\d+$" },
11
+ "remote_support": {
12
+ "type": "object",
13
+ "additionalProperties": false,
14
+ "required": ["allowed", "method", "session_logging_required"],
15
+ "properties": {
16
+ "allowed": { "type": "boolean" },
17
+ "method": { "type": "string", "enum": ["vpn_only", "disabled"] },
18
+ "session_logging_required": { "type": "boolean", "const": true }
19
+ }
20
+ },
21
+ "data_access_rules": {
22
+ "type": "object",
23
+ "additionalProperties": false,
24
+ "required": ["can_access", "cannot_access"],
25
+ "properties": {
26
+ "can_access": {
27
+ "type": "array",
28
+ "minItems": 1,
29
+ "items": { "type": "string", "enum": ["system_metrics", "service_health", "log_metadata", "model_runtime_status"] }
30
+ },
31
+ "cannot_access": {
32
+ "type": "array",
33
+ "minItems": 1,
34
+ "items": { "type": "string", "enum": ["customer_data", "decisionlog_body", "evidence_body", "raw_prompts", "raw_outputs"] }
35
+ }
36
+ }
37
+ }
38
+ }
39
+ }
40
+
@@ -0,0 +1,46 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "$id": "ceo-clone/1.2/index.schema.json",
4
+ "title": "CEO Clone Schemas Index v1.2",
5
+ "type": "object",
6
+ "additionalProperties": false,
7
+ "required": ["version", "schemas"],
8
+ "properties": {
9
+ "version": { "type": "string", "const": "1.2" },
10
+ "schemas": {
11
+ "type": "object",
12
+ "additionalProperties": false,
13
+ "required": [
14
+ "DecisionLog",
15
+ "BoundarySpec",
16
+ "DecisionRequest",
17
+ "DecisionResponse",
18
+ "D3MatchExplanation",
19
+ "D3ExecutionPolicy",
20
+ "ExecutionEnvelope",
21
+ "AuditEvent",
22
+ "CandidateDecision",
23
+ "ReviewQueue",
24
+ "SupportAccessBoundary",
25
+ "ReviewSloPolicy",
26
+ "DeliveryAndAcceptance"
27
+ ],
28
+ "properties": {
29
+ "DecisionLog": { "$ref": "DecisionLog.schema.json" },
30
+ "BoundarySpec": { "$ref": "BoundarySpec.schema.json" },
31
+ "DecisionRequest": { "$ref": "DecisionRequest.schema.json" },
32
+ "DecisionResponse": { "$ref": "DecisionResponse.schema.json" },
33
+ "D3MatchExplanation": { "$ref": "D3MatchExplanation.schema.json" },
34
+ "D3ExecutionPolicy": { "$ref": "D3ExecutionPolicy.schema.json" },
35
+ "ExecutionEnvelope": { "$ref": "ExecutionEnvelope.schema.json" },
36
+ "AuditEvent": { "$ref": "AuditEvent.schema.json" },
37
+ "CandidateDecision": { "$ref": "CandidateDecision.schema.json" },
38
+ "ReviewQueue": { "$ref": "ReviewQueue.schema.json" },
39
+ "SupportAccessBoundary": { "$ref": "SupportAccessBoundary.schema.json" },
40
+ "ReviewSloPolicy": { "$ref": "ReviewSloPolicy.schema.json" },
41
+ "DeliveryAndAcceptance": { "$ref": "DeliveryAndAcceptance.schema.json" }
42
+ }
43
+ }
44
+ }
45
+ }
46
+