@enterprise-skills/orchestrator 3.2.0 → 3.4.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 (50) hide show
  1. package/compliance/fedramp.yaml +30 -0
  2. package/compliance/gdpr.yaml +33 -0
  3. package/compliance/hipaa.yaml +29 -0
  4. package/compliance/iso27001.yaml +29 -0
  5. package/compliance/pcidss.yaml +24 -0
  6. package/compliance/soc2.yaml +33 -0
  7. package/dist/__tests__/compliance.test.d.ts +2 -0
  8. package/dist/__tests__/compliance.test.d.ts.map +1 -0
  9. package/dist/__tests__/compliance.test.js +148 -0
  10. package/dist/__tests__/compliance.test.js.map +1 -0
  11. package/dist/__tests__/preflight-resolver.test.d.ts +2 -0
  12. package/dist/__tests__/preflight-resolver.test.d.ts.map +1 -0
  13. package/dist/__tests__/preflight-resolver.test.js +182 -0
  14. package/dist/__tests__/preflight-resolver.test.js.map +1 -0
  15. package/dist/__tests__/workflow-library.test.d.ts +2 -0
  16. package/dist/__tests__/workflow-library.test.d.ts.map +1 -0
  17. package/dist/__tests__/workflow-library.test.js +185 -0
  18. package/dist/__tests__/workflow-library.test.js.map +1 -0
  19. package/dist/compliance.d.ts +51 -0
  20. package/dist/compliance.d.ts.map +1 -0
  21. package/dist/compliance.js +160 -0
  22. package/dist/compliance.js.map +1 -0
  23. package/dist/index.d.ts +62 -0
  24. package/dist/index.d.ts.map +1 -1
  25. package/dist/index.js +152 -1
  26. package/dist/index.js.map +1 -1
  27. package/dist/preflight-resolver.d.ts +58 -0
  28. package/dist/preflight-resolver.d.ts.map +1 -0
  29. package/dist/preflight-resolver.js +345 -0
  30. package/dist/preflight-resolver.js.map +1 -0
  31. package/dist/types.d.ts +1 -1
  32. package/dist/types.d.ts.map +1 -1
  33. package/dist/workflow-library.d.ts +14 -0
  34. package/dist/workflow-library.d.ts.map +1 -0
  35. package/dist/workflow-library.js +94 -0
  36. package/dist/workflow-library.js.map +1 -0
  37. package/package.json +4 -2
  38. package/workflows/beginner-launchpad.yaml +33 -0
  39. package/workflows/enterprise-control-plane.yaml +38 -0
  40. package/workflows/growth-engine.yaml +33 -0
  41. package/workflows/health-check.yaml +28 -0
  42. package/workflows/incident-triage.yaml +34 -0
  43. package/workflows/onboard-audit.yaml +28 -0
  44. package/workflows/post-refactor.yaml +27 -0
  45. package/workflows/product-launch.yaml +54 -0
  46. package/workflows/release-confidence.yaml +87 -0
  47. package/workflows/release-readiness.yaml +62 -0
  48. package/workflows/security-assessment.yaml +60 -0
  49. package/workflows/sprint-close.yaml +30 -0
  50. package/workflows/ux-quality-review.yaml +33 -0
@@ -0,0 +1,60 @@
1
+ name: security-assessment
2
+ description: Comprehensive security posture evaluation
3
+ version: "1.0"
4
+
5
+ steps:
6
+ - id: context
7
+ type: sequential
8
+ skill: session-start
9
+
10
+ - id: threat-model
11
+ type: sequential
12
+ skill: threat-modeling-agent
13
+ depends_on: [context]
14
+
15
+ - id: hardening
16
+ type: sequential
17
+ skill: security-hardening-agent
18
+ depends_on: [context]
19
+
20
+ - id: security-scan
21
+ type: sequential
22
+ skill: security-audit
23
+ depends_on: [context]
24
+
25
+ - id: gate-critical
26
+ type: gate
27
+ check:
28
+ source: security-audit
29
+ field: findings
30
+ operator: none_match
31
+ value: { severity: critical }
32
+ pass_action: compliance-check
33
+ fail_action: STOP
34
+ depends_on: [security-scan]
35
+
36
+ - id: compliance-check
37
+ type: parallel
38
+ skills: [compliance-mapper, sox-compliance-agent]
39
+ depends_on: [gate-critical, threat-model, hardening]
40
+
41
+ - id: build-controls
42
+ type: conditional
43
+ condition:
44
+ source: compliance-mapper
45
+ field: metrics.gap_count
46
+ test: greater_than
47
+ value: 0
48
+ if_true: remediate
49
+ if_false: report
50
+ depends_on: [compliance-check]
51
+
52
+ - id: remediate
53
+ type: sequential
54
+ skill: compliance-builder
55
+ depends_on: [build-controls]
56
+
57
+ - id: report
58
+ type: sequential
59
+ skill: project-manager
60
+ depends_on: [build-controls]
@@ -0,0 +1,30 @@
1
+ name: sprint-close
2
+ description: Sprint boundary review and next sprint planning
3
+ version: "1.0"
4
+
5
+ steps:
6
+ - id: tests
7
+ type: sequential
8
+ skill: test-orchestrator
9
+
10
+ - id: review
11
+ type: sequential
12
+ skill: code-review
13
+ config:
14
+ scope: sprint-diff
15
+ depends_on: [tests]
16
+
17
+ - id: changelog
18
+ type: sequential
19
+ skill: changelog-generator
20
+ depends_on: [review]
21
+
22
+ - id: dashboard
23
+ type: sequential
24
+ skill: project-manager
25
+ depends_on: [changelog]
26
+
27
+ - id: checkpoint
28
+ type: sequential
29
+ skill: session-end
30
+ depends_on: [dashboard]
@@ -0,0 +1,33 @@
1
+ name: ux-quality-review
2
+ description: Full UX and visual quality assessment
3
+ version: "1.0"
4
+
5
+ steps:
6
+ - id: context
7
+ type: sequential
8
+ skill: session-start
9
+
10
+ - id: ux-audit
11
+ type: parallel
12
+ skills: [ux-heuristic-evaluator, accessibility-audit]
13
+ depends_on: [context]
14
+
15
+ - id: design-audit
16
+ type: sequential
17
+ skill: design-system-auditor
18
+ depends_on: [context]
19
+
20
+ - id: visual-check
21
+ type: sequential
22
+ skill: visual-regression-agent
23
+ depends_on: [design-audit]
24
+
25
+ - id: advanced-testing
26
+ type: sequential
27
+ skill: advanced-uat-agent
28
+ depends_on: [ux-audit]
29
+
30
+ - id: dashboard
31
+ type: sequential
32
+ skill: project-manager
33
+ depends_on: [ux-audit, design-audit, visual-check, advanced-testing]