@enterprise-skills/orchestrator 3.3.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@enterprise-skills/orchestrator",
3
- "version": "3.3.0",
3
+ "version": "3.4.0",
4
4
  "description": "Governance orchestration engine — state machine, DAG resolver, signal router, policy enforcer, audit logger",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -0,0 +1,28 @@
1
+ name: onboard-audit
2
+ description: New project setup followed by a full audit baseline
3
+ version: "1.0"
4
+
5
+ steps:
6
+ - id: setup
7
+ type: sequential
8
+ skill: infrastructure-setup
9
+
10
+ - id: context
11
+ type: sequential
12
+ skill: session-start
13
+ depends_on: [setup]
14
+
15
+ - id: baseline
16
+ type: parallel
17
+ skills: [security-audit, dependency-audit, full-stack-audit]
18
+ depends_on: [context]
19
+
20
+ - id: quality
21
+ type: sequential
22
+ skill: code-review
23
+ depends_on: [context]
24
+
25
+ - id: report
26
+ type: sequential
27
+ skill: project-manager
28
+ depends_on: [baseline, quality]
@@ -0,0 +1,87 @@
1
+ name: release-confidence
2
+ description: Enterprise quality & reliability release gate — 10-domain audits normalized into a risk-scored go/no-go report
3
+ version: "1.0"
4
+
5
+ steps:
6
+ - id: context
7
+ type: sequential
8
+ skill: session-start
9
+
10
+ - id: grounding
11
+ type: sequential
12
+ skill: anti-hallucination-agent
13
+ config:
14
+ scope: code
15
+ depends_on: [context]
16
+
17
+ - id: static-analysis
18
+ type: parallel
19
+ skills: [security-audit, dependency-audit]
20
+ depends_on: [context]
21
+
22
+ - id: quality
23
+ type: parallel
24
+ skills: [code-review, api-contract-check]
25
+ depends_on: [context]
26
+
27
+ - id: tests
28
+ type: sequential
29
+ skill: test-orchestrator
30
+ depends_on: [context]
31
+
32
+ - id: ui
33
+ type: parallel
34
+ skills: [accessibility-audit, visual-regression-agent]
35
+ depends_on: [context]
36
+
37
+ - id: performance
38
+ type: parallel
39
+ skills: [performance-audit, load-and-resilience]
40
+ depends_on: [context]
41
+
42
+ - id: data
43
+ type: sequential
44
+ skill: db-migration-agent
45
+ depends_on: [context]
46
+
47
+ - id: mobile
48
+ type: sequential
49
+ skill: mobile-qa
50
+ depends_on: [context]
51
+
52
+ - id: observability
53
+ type: sequential
54
+ skill: observability-qa
55
+ depends_on: [context]
56
+
57
+ - id: gate-security
58
+ type: gate
59
+ check:
60
+ source: security-audit
61
+ field: findings
62
+ operator: none_match
63
+ value: { severity: critical }
64
+ pass_action: deploy-check
65
+ fail_action: STOP
66
+ depends_on: [static-analysis]
67
+
68
+ - id: deploy-check
69
+ type: sequential
70
+ skill: pre-deploy-check
71
+ depends_on: [gate-security, quality, tests, grounding]
72
+
73
+ - id: gate-deploy
74
+ type: gate
75
+ check:
76
+ source: pre-deploy-check
77
+ field: status
78
+ operator: equals
79
+ value: completed
80
+ pass_action: confidence
81
+ fail_action: STOP
82
+ depends_on: [deploy-check]
83
+
84
+ - id: confidence
85
+ type: sequential
86
+ skill: release-confidence
87
+ depends_on: [gate-deploy, ui, performance, data, mobile, observability]