@zonease/aiworker-cli 0.12.2 → 0.13.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/README.md +158 -350
- package/aiworker-bun.js +614 -694
- package/drizzle/worker/0000_polite_stellaris.sql +219 -0
- package/drizzle/worker/0001_red_lady_mastermind.sql +29 -0
- package/drizzle/worker/0002_concerned_slyde.sql +45 -0
- package/drizzle/worker/meta/0000_snapshot.json +1055 -194
- package/drizzle/worker/meta/0001_snapshot.json +1244 -222
- package/drizzle/worker/meta/0002_snapshot.json +1557 -273
- package/drizzle/worker/meta/_journal.json +6 -48
- package/official-apps/aiworker-hr/README.md +16 -0
- package/official-apps/aiworker-hr/capabilities/candidate-screen/prompt.md +3 -0
- package/official-apps/aiworker-hr/capabilities/candidate-screen/review.md +5 -0
- package/official-apps/aiworker-hr/capabilities/person-profile/prompt.md +3 -0
- package/official-apps/aiworker-hr/capabilities/person-profile/review.md +5 -0
- package/official-apps/aiworker-hr/dist/host-mounted.js +15677 -0
- package/official-apps/aiworker-hr/dist/index.js +15411 -0
- package/official-apps/aiworker-hr/dist/standalone.js +15451 -0
- package/official-apps/aiworker-hr/migrations/0001_hr.sql +2 -0
- package/official-apps/aiworker-hr/package.json +31 -0
- package/official-apps/aiworker-hr/packs/hr-recruiting/SOUL.md +7 -0
- package/official-apps/aiworker-hr/review/candidate-screen.md +5 -0
- package/official-apps/aiworker-hr/review/person-profile.md +5 -0
- package/official-apps/aiworker-hr/schemas/candidate-screen.schema.json +50 -0
- package/official-apps/aiworker-hr/schemas/person-profile.schema.json +50 -0
- package/official-apps/aiworker-hr/soul-app.manifest.json +374 -0
- package/official-apps/aiworker-hr/src/api.ts +1 -0
- package/official-apps/aiworker-hr/src/host-mounted.ts +308 -0
- package/official-apps/aiworker-hr/src/index.ts +152 -0
- package/official-apps/aiworker-hr/src/protocol/artifact.ts +2 -0
- package/official-apps/aiworker-hr/src/protocol/connectors.ts +2 -0
- package/official-apps/aiworker-hr/src/protocol/lifecycle.ts +2 -0
- package/official-apps/aiworker-hr/src/protocol/review.ts +2 -0
- package/official-apps/aiworker-hr/src/protocol/runtime.ts +2 -0
- package/official-apps/aiworker-hr/src/protocol/ui.ts +2 -0
- package/official-apps/aiworker-hr/src/standalone.ts +43 -0
- package/official-apps/aiworker-hr/src/ui/candidate-screen-preview.tsx +2 -0
- package/official-apps/aiworker-hr/src/ui/hr-route.tsx +1 -0
- package/official-apps/aiworker-hr/src/ui/people-widget.tsx +1 -0
- package/official-apps/aiworker-hr/src/ui/person-profile-preview.tsx +2 -0
- package/official-apps/aiworker-hr/src/ui/profile-panel.tsx +1 -0
- package/official-apps/aiworker-hr/src/ui/review-panel.tsx +1 -0
- package/official-apps/aiworker-hr/tsconfig.json +20 -0
- package/official-apps/aiworker-qa/README.md +14 -0
- package/official-apps/aiworker-qa/capabilities/regression-matrix/prompt.md +3 -0
- package/official-apps/aiworker-qa/capabilities/regression-matrix/review.md +5 -0
- package/official-apps/aiworker-qa/capabilities/release-gate/prompt.md +3 -0
- package/official-apps/aiworker-qa/capabilities/release-gate/review.md +5 -0
- package/official-apps/aiworker-qa/dist/host-mounted.js +15655 -0
- package/official-apps/aiworker-qa/dist/index.js +15395 -0
- package/official-apps/aiworker-qa/dist/standalone.js +15435 -0
- package/official-apps/aiworker-qa/migrations/0001_qa.sql +2 -0
- package/official-apps/aiworker-qa/package.json +31 -0
- package/official-apps/aiworker-qa/packs/qa-reviewer/SOUL.md +7 -0
- package/official-apps/aiworker-qa/review/regression-matrix.md +5 -0
- package/official-apps/aiworker-qa/review/release-gate.md +5 -0
- package/official-apps/aiworker-qa/schemas/regression-matrix.schema.json +50 -0
- package/official-apps/aiworker-qa/schemas/release-gate.schema.json +50 -0
- package/official-apps/aiworker-qa/soul-app.manifest.json +356 -0
- package/official-apps/aiworker-qa/src/api.ts +1 -0
- package/official-apps/aiworker-qa/src/host-mounted.ts +302 -0
- package/official-apps/aiworker-qa/src/index.ts +152 -0
- package/official-apps/aiworker-qa/src/protocol/artifact.ts +2 -0
- package/official-apps/aiworker-qa/src/protocol/connectors.ts +2 -0
- package/official-apps/aiworker-qa/src/protocol/lifecycle.ts +2 -0
- package/official-apps/aiworker-qa/src/protocol/review.ts +2 -0
- package/official-apps/aiworker-qa/src/protocol/runtime.ts +2 -0
- package/official-apps/aiworker-qa/src/protocol/ui.ts +2 -0
- package/official-apps/aiworker-qa/src/standalone.ts +43 -0
- package/official-apps/aiworker-qa/src/ui/qa-route.tsx +1 -0
- package/official-apps/aiworker-qa/src/ui/regression-matrix-preview.tsx +2 -0
- package/official-apps/aiworker-qa/src/ui/release-gate-preview.tsx +2 -0
- package/official-apps/aiworker-qa/src/ui/release-panel.tsx +1 -0
- package/official-apps/aiworker-qa/src/ui/release-review-panel.tsx +1 -0
- package/official-apps/aiworker-qa/src/ui/release-widget.tsx +1 -0
- package/official-apps/aiworker-qa/src/ui/review-panel.tsx +1 -0
- package/official-apps/aiworker-qa/tsconfig.json +20 -0
- package/package.json +5 -4
- package/web/worker/assets/index-ByOwFiyz.js +18 -0
- package/web/worker/assets/index-K-y56wrL.css +2 -0
- package/web/worker/assets/markdown-preview-DFe-rfff.js +29 -0
- package/web/worker/assets/people-workbench-V1Ajqfzv.js +1 -0
- package/web/worker/engine-icons/claude.svg +1 -0
- package/web/worker/engine-icons/cursor.svg +1 -0
- package/web/worker/engine-icons/gemini.svg +1 -0
- package/web/worker/engine-icons/hermesagent.svg +1 -0
- package/web/worker/engine-icons/openai.svg +1 -0
- package/web/worker/engine-icons/opencode.svg +1 -0
- package/web/worker/engine-icons/qwen.svg +1 -0
- package/web/worker/fonts/inter-latin-wght-normal.woff2 +0 -0
- package/web/worker/fonts/jetbrains-mono-latin-wght-normal.woff2 +0 -0
- package/web/worker/fonts/nunito-latin-wght-normal.woff2 +0 -0
- package/web/worker/index.html +8 -4
- package/web/worker/logo.svg +8 -0
- package/drizzle/fleet/0000_fine_havok.sql +0 -23
- package/drizzle/fleet/meta/0000_snapshot.json +0 -165
- package/drizzle/fleet/meta/_journal.json +0 -13
- package/drizzle/worker/0000_spooky_kat_farrell.sql +0 -112
- package/drizzle/worker/0001_secret_dagger.sql +0 -1
- package/drizzle/worker/0002_jazzy_moondragon.sql +0 -13
- package/drizzle/worker/0003_rare_cloak.sql +0 -7
- package/drizzle/worker/0004_daffy_thing.sql +0 -26
- package/drizzle/worker/0005_worthless_whiplash.sql +0 -20
- package/drizzle/worker/0006_fair_jetstream.sql +0 -34
- package/drizzle/worker/0007_solid_bromley.sql +0 -11
- package/drizzle/worker/0008_peaceful_titanium_man.sql +0 -14
- package/drizzle/worker/meta/0003_snapshot.json +0 -873
- package/drizzle/worker/meta/0004_snapshot.json +0 -1058
- package/drizzle/worker/meta/0005_snapshot.json +0 -1192
- package/drizzle/worker/meta/0006_snapshot.json +0 -1420
- package/drizzle/worker/meta/0007_snapshot.json +0 -1489
- package/drizzle/worker/meta/0008_snapshot.json +0 -1593
- package/web/fleet/assets/index-BTknRPEg.js +0 -1372
- package/web/fleet/assets/index-lu-9OhC0.css +0 -2
- package/web/fleet/favicon.svg +0 -4
- package/web/fleet/index.html +0 -14
- package/web/worker/assets/index-DuxsPbd7.js +0 -1382
- package/web/worker/assets/index-lu-9OhC0.css +0 -2
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@zonease/aiworker-qa",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"private": true,
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"exports": {
|
|
7
|
+
".": {
|
|
8
|
+
"types": "./src/index.ts",
|
|
9
|
+
"import": "./src/index.ts"
|
|
10
|
+
}
|
|
11
|
+
},
|
|
12
|
+
"main": "./src/index.ts",
|
|
13
|
+
"types": "./src/index.ts",
|
|
14
|
+
"scripts": {
|
|
15
|
+
"build": "bun build src/index.ts src/standalone.ts src/host-mounted.ts --outdir dist --target bun",
|
|
16
|
+
"dev": "bun src/standalone.ts --serve",
|
|
17
|
+
"serve": "bun src/host-mounted.ts",
|
|
18
|
+
"smoke": "bun ../../apps/cli/src/aiworker.ts app smoke .",
|
|
19
|
+
"typecheck": "tsc --noEmit",
|
|
20
|
+
"test": "bun test",
|
|
21
|
+
"validate": "bun ../../apps/cli/src/aiworker.ts app validate ."
|
|
22
|
+
},
|
|
23
|
+
"dependencies": {
|
|
24
|
+
"@zonease/aiworker-soul-app-sdk": "workspace:*"
|
|
25
|
+
},
|
|
26
|
+
"devDependencies": {
|
|
27
|
+
"@types/bun": "^1.2.13",
|
|
28
|
+
"@zonease/aiworker-soul-app-runtime": "workspace:*",
|
|
29
|
+
"typescript": "^5.8.3"
|
|
30
|
+
}
|
|
31
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"title": "AIWorker QA Regression Matrix",
|
|
4
|
+
"type": "object",
|
|
5
|
+
"additionalProperties": true,
|
|
6
|
+
"required": [
|
|
7
|
+
"title",
|
|
8
|
+
"summary",
|
|
9
|
+
"evidence"
|
|
10
|
+
],
|
|
11
|
+
"properties": {
|
|
12
|
+
"title": {
|
|
13
|
+
"type": "string"
|
|
14
|
+
},
|
|
15
|
+
"summary": {
|
|
16
|
+
"type": "string"
|
|
17
|
+
},
|
|
18
|
+
"evidence": {
|
|
19
|
+
"type": "array",
|
|
20
|
+
"items": {
|
|
21
|
+
"type": "object",
|
|
22
|
+
"additionalProperties": true,
|
|
23
|
+
"required": [
|
|
24
|
+
"source",
|
|
25
|
+
"summary"
|
|
26
|
+
],
|
|
27
|
+
"properties": {
|
|
28
|
+
"source": {
|
|
29
|
+
"type": "string"
|
|
30
|
+
},
|
|
31
|
+
"summary": {
|
|
32
|
+
"type": "string"
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
"risks": {
|
|
38
|
+
"type": "array",
|
|
39
|
+
"items": {
|
|
40
|
+
"type": "string"
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"nextActions": {
|
|
44
|
+
"type": "array",
|
|
45
|
+
"items": {
|
|
46
|
+
"type": "string"
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"title": "AIWorker QA Release Gate",
|
|
4
|
+
"type": "object",
|
|
5
|
+
"additionalProperties": true,
|
|
6
|
+
"required": [
|
|
7
|
+
"title",
|
|
8
|
+
"summary",
|
|
9
|
+
"evidence"
|
|
10
|
+
],
|
|
11
|
+
"properties": {
|
|
12
|
+
"title": {
|
|
13
|
+
"type": "string"
|
|
14
|
+
},
|
|
15
|
+
"summary": {
|
|
16
|
+
"type": "string"
|
|
17
|
+
},
|
|
18
|
+
"evidence": {
|
|
19
|
+
"type": "array",
|
|
20
|
+
"items": {
|
|
21
|
+
"type": "object",
|
|
22
|
+
"additionalProperties": true,
|
|
23
|
+
"required": [
|
|
24
|
+
"source",
|
|
25
|
+
"summary"
|
|
26
|
+
],
|
|
27
|
+
"properties": {
|
|
28
|
+
"source": {
|
|
29
|
+
"type": "string"
|
|
30
|
+
},
|
|
31
|
+
"summary": {
|
|
32
|
+
"type": "string"
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
"risks": {
|
|
38
|
+
"type": "array",
|
|
39
|
+
"items": {
|
|
40
|
+
"type": "string"
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"nextActions": {
|
|
44
|
+
"type": "array",
|
|
45
|
+
"items": {
|
|
46
|
+
"type": "string"
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
|
@@ -0,0 +1,356 @@
|
|
|
1
|
+
{
|
|
2
|
+
"api": {
|
|
3
|
+
"entry": "./src/api.ts",
|
|
4
|
+
"localService": {
|
|
5
|
+
"command": [
|
|
6
|
+
"bun",
|
|
7
|
+
"dist/host-mounted.js"
|
|
8
|
+
],
|
|
9
|
+
"healthPath": "/health"
|
|
10
|
+
},
|
|
11
|
+
"routePrefix": "/api/local/apps/aiworker-qa"
|
|
12
|
+
},
|
|
13
|
+
"artifactTypes": [
|
|
14
|
+
{
|
|
15
|
+
"description": "Coverage matrix mapped to release risk.",
|
|
16
|
+
"id": "regression-matrix",
|
|
17
|
+
"name": "Regression Matrix",
|
|
18
|
+
"previewRef": "./src/ui/regression-matrix-preview.tsx",
|
|
19
|
+
"reviewPolicyRef": "./review/regression-matrix.md",
|
|
20
|
+
"schemaRef": "./schemas/regression-matrix.schema.json",
|
|
21
|
+
"schemaSha256": "6a4f3494764431e8785a82865215eabc4c4678dfb4e447eda4d4684f341892a0",
|
|
22
|
+
"version": "0.1.0"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"description": "Go/no-go release readiness artifact.",
|
|
26
|
+
"id": "release-gate",
|
|
27
|
+
"name": "Release Gate",
|
|
28
|
+
"previewRef": "./src/ui/release-gate-preview.tsx",
|
|
29
|
+
"reviewPolicyRef": "./review/release-gate.md",
|
|
30
|
+
"schemaRef": "./schemas/release-gate.schema.json",
|
|
31
|
+
"schemaSha256": "0c953a3453ff235c419600073c70c1f155976f448c4567711b511d83668a09e4",
|
|
32
|
+
"version": "0.1.0"
|
|
33
|
+
}
|
|
34
|
+
],
|
|
35
|
+
"capabilities": [
|
|
36
|
+
{
|
|
37
|
+
"artifactTypes": [
|
|
38
|
+
"regression-matrix"
|
|
39
|
+
],
|
|
40
|
+
"description": "Build regression coverage from change and test evidence.",
|
|
41
|
+
"id": "regression-matrix",
|
|
42
|
+
"name": "Regression Matrix",
|
|
43
|
+
"outputKind": "regression-matrix",
|
|
44
|
+
"packRefs": [],
|
|
45
|
+
"promptRef": "./capabilities/regression-matrix/prompt.md",
|
|
46
|
+
"reviewRubricRef": "./capabilities/regression-matrix/review.md",
|
|
47
|
+
"version": "0.1.0",
|
|
48
|
+
"workspaceTypes": [
|
|
49
|
+
"release",
|
|
50
|
+
"test-suite"
|
|
51
|
+
]
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"artifactTypes": [
|
|
55
|
+
"release-gate"
|
|
56
|
+
],
|
|
57
|
+
"description": "Summarize release blockers, residual risk, and go/no-go recommendation.",
|
|
58
|
+
"id": "release-gate",
|
|
59
|
+
"name": "Release Gate",
|
|
60
|
+
"outputKind": "release-gate",
|
|
61
|
+
"packRefs": [],
|
|
62
|
+
"promptRef": "./capabilities/release-gate/prompt.md",
|
|
63
|
+
"reviewRubricRef": "./capabilities/release-gate/review.md",
|
|
64
|
+
"version": "0.1.0",
|
|
65
|
+
"workspaceTypes": [
|
|
66
|
+
"release"
|
|
67
|
+
]
|
|
68
|
+
}
|
|
69
|
+
],
|
|
70
|
+
"compatibility": {
|
|
71
|
+
"host": {
|
|
72
|
+
"minVersion": "0.12.0"
|
|
73
|
+
},
|
|
74
|
+
"sdk": {
|
|
75
|
+
"minVersion": "0.1.0"
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
"connectors": {
|
|
79
|
+
"optional": [
|
|
80
|
+
{
|
|
81
|
+
"access": [
|
|
82
|
+
"read"
|
|
83
|
+
],
|
|
84
|
+
"id": "issue-tracker",
|
|
85
|
+
"reason": "Read defect evidence through Host connector broker.",
|
|
86
|
+
"scopes": [
|
|
87
|
+
"issues.read"
|
|
88
|
+
]
|
|
89
|
+
}
|
|
90
|
+
],
|
|
91
|
+
"required": [
|
|
92
|
+
{
|
|
93
|
+
"access": [
|
|
94
|
+
"read"
|
|
95
|
+
],
|
|
96
|
+
"id": "ci",
|
|
97
|
+
"reason": "Read CI and test evidence through Host connector broker.",
|
|
98
|
+
"scopes": [
|
|
99
|
+
"runs.read",
|
|
100
|
+
"artifacts.read"
|
|
101
|
+
]
|
|
102
|
+
}
|
|
103
|
+
]
|
|
104
|
+
},
|
|
105
|
+
"description": "Quality Soul App for release workspaces, regression evidence, defect triage, and release gate review.",
|
|
106
|
+
"exports": {
|
|
107
|
+
"artifact": "./src/protocol/artifact.ts",
|
|
108
|
+
"connector": "./src/protocol/connectors.ts",
|
|
109
|
+
"lifecycle": "./src/protocol/lifecycle.ts",
|
|
110
|
+
"review": "./src/protocol/review.ts",
|
|
111
|
+
"runtime": "./src/protocol/runtime.ts",
|
|
112
|
+
"ui": "./src/protocol/ui.ts"
|
|
113
|
+
},
|
|
114
|
+
"healthcheck": {
|
|
115
|
+
"kind": "protocol-handler",
|
|
116
|
+
"ref": "healthcheck",
|
|
117
|
+
"timeoutMs": 5000
|
|
118
|
+
},
|
|
119
|
+
"id": "aiworker-qa",
|
|
120
|
+
"memory": {
|
|
121
|
+
"admissionPolicy": "manual-review",
|
|
122
|
+
"namespace": "aiworker-qa"
|
|
123
|
+
},
|
|
124
|
+
"modes": {
|
|
125
|
+
"hostMounted": {
|
|
126
|
+
"entry": "./dist/host-mounted.js",
|
|
127
|
+
"supported": true
|
|
128
|
+
},
|
|
129
|
+
"standalone": {
|
|
130
|
+
"entry": "./dist/standalone.js",
|
|
131
|
+
"supported": true
|
|
132
|
+
}
|
|
133
|
+
},
|
|
134
|
+
"name": "AIWorker QA",
|
|
135
|
+
"pack": {
|
|
136
|
+
"refs": [
|
|
137
|
+
{
|
|
138
|
+
"id": "qa-reviewer",
|
|
139
|
+
"ref": "packs/qa-reviewer/SOUL.md",
|
|
140
|
+
"source": "embedded",
|
|
141
|
+
"version": "0.1.0"
|
|
142
|
+
}
|
|
143
|
+
]
|
|
144
|
+
},
|
|
145
|
+
"permissions": [
|
|
146
|
+
{
|
|
147
|
+
"action": "read",
|
|
148
|
+
"kind": "storage",
|
|
149
|
+
"reason": "Read app-scoped QA domain metadata.",
|
|
150
|
+
"target": "aiworker-qa"
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"action": "write",
|
|
154
|
+
"kind": "storage",
|
|
155
|
+
"reason": "Write app-scoped QA domain metadata.",
|
|
156
|
+
"target": "aiworker-qa"
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"action": "read",
|
|
160
|
+
"kind": "search",
|
|
161
|
+
"reason": "Read app-owned QA search descriptors.",
|
|
162
|
+
"target": "aiworker-qa"
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"action": "write",
|
|
166
|
+
"kind": "search",
|
|
167
|
+
"reason": "Publish app-owned QA search descriptors.",
|
|
168
|
+
"target": "aiworker-qa"
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"action": "read",
|
|
172
|
+
"kind": "connector",
|
|
173
|
+
"reason": "Read CI evidence through Host connector broker.",
|
|
174
|
+
"target": "ci"
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"action": "write",
|
|
178
|
+
"kind": "artifact",
|
|
179
|
+
"reason": "Create reviewable QA release artifacts.",
|
|
180
|
+
"target": "release-gate"
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"action": "create",
|
|
184
|
+
"kind": "review",
|
|
185
|
+
"reason": "Create QA review rubrics and findings.",
|
|
186
|
+
"target": "qa-review"
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"action": "propose",
|
|
190
|
+
"kind": "memory",
|
|
191
|
+
"reason": "Propose reviewed QA lessons into the app namespace.",
|
|
192
|
+
"target": "aiworker-qa"
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
"action": "mount",
|
|
196
|
+
"kind": "ui",
|
|
197
|
+
"reason": "Mount QA workbench contributions.",
|
|
198
|
+
"target": "qa-workbench"
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"action": "serve",
|
|
202
|
+
"kind": "api",
|
|
203
|
+
"reason": "Serve QA scoped API routes.",
|
|
204
|
+
"target": "/api/local/apps/aiworker-qa"
|
|
205
|
+
}
|
|
206
|
+
],
|
|
207
|
+
"protocol": "soul-app/v1",
|
|
208
|
+
"soul": {
|
|
209
|
+
"description": "QA Soul for release evidence, regression coverage, defect triage, and release readiness review.",
|
|
210
|
+
"domain": "quality-assurance",
|
|
211
|
+
"id": "qa",
|
|
212
|
+
"name": "QA",
|
|
213
|
+
"version": "0.1.0"
|
|
214
|
+
},
|
|
215
|
+
"storage": {
|
|
216
|
+
"migrations": [
|
|
217
|
+
{
|
|
218
|
+
"id": "qa-initial",
|
|
219
|
+
"path": "./migrations/0001_qa.sql"
|
|
220
|
+
}
|
|
221
|
+
],
|
|
222
|
+
"namespace": "aiworker-qa"
|
|
223
|
+
},
|
|
224
|
+
"ui": {
|
|
225
|
+
"artifactPreviews": [
|
|
226
|
+
{
|
|
227
|
+
"entry": "./src/ui/release-gate-preview.tsx",
|
|
228
|
+
"id": "release-gate-preview",
|
|
229
|
+
"label": "Release gate preview",
|
|
230
|
+
"slot": "artifact-preview",
|
|
231
|
+
"target": "release-gate"
|
|
232
|
+
}
|
|
233
|
+
],
|
|
234
|
+
"panels": [
|
|
235
|
+
{
|
|
236
|
+
"entry": "./src/ui/release-panel.tsx",
|
|
237
|
+
"id": "qa-release-panel",
|
|
238
|
+
"label": "Release panel",
|
|
239
|
+
"slot": "panel",
|
|
240
|
+
"surface": {
|
|
241
|
+
"entry": "/surfaces/panels/qa-release-panel",
|
|
242
|
+
"renderer": "host-descriptor",
|
|
243
|
+
"requiredPermissions": [
|
|
244
|
+
"storage:read:aiworker-qa"
|
|
245
|
+
],
|
|
246
|
+
"scope": "workspace"
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
],
|
|
250
|
+
"reviewPanels": [
|
|
251
|
+
{
|
|
252
|
+
"entry": "./src/ui/review-panel.tsx",
|
|
253
|
+
"id": "qa-review-panel",
|
|
254
|
+
"label": "QA review panel",
|
|
255
|
+
"slot": "review-panel"
|
|
256
|
+
}
|
|
257
|
+
],
|
|
258
|
+
"routes": [
|
|
259
|
+
{
|
|
260
|
+
"entry": "./src/ui/qa-route.tsx",
|
|
261
|
+
"id": "qa-home",
|
|
262
|
+
"label": "QA",
|
|
263
|
+
"path": "/qa",
|
|
264
|
+
"surface": {
|
|
265
|
+
"entry": "/surfaces/routes/qa-home",
|
|
266
|
+
"renderer": "host-descriptor",
|
|
267
|
+
"requiredPermissions": [
|
|
268
|
+
"ui:mount:qa-workbench"
|
|
269
|
+
],
|
|
270
|
+
"scope": "app"
|
|
271
|
+
}
|
|
272
|
+
}
|
|
273
|
+
],
|
|
274
|
+
"shell": {
|
|
275
|
+
"actions": [
|
|
276
|
+
{
|
|
277
|
+
"id": "refresh-release",
|
|
278
|
+
"label": "Refresh",
|
|
279
|
+
"protocolAction": "release.refresh",
|
|
280
|
+
"requiredPermissions": [
|
|
281
|
+
"storage:read:aiworker-qa"
|
|
282
|
+
],
|
|
283
|
+
"slot": "refresh"
|
|
284
|
+
}
|
|
285
|
+
],
|
|
286
|
+
"primaryAction": {
|
|
287
|
+
"id": "create-release-gate",
|
|
288
|
+
"label": "New release gate",
|
|
289
|
+
"protocolAction": "releaseGates.create",
|
|
290
|
+
"requiredPermissions": [
|
|
291
|
+
"storage:write:aiworker-qa",
|
|
292
|
+
"search:write:aiworker-qa"
|
|
293
|
+
],
|
|
294
|
+
"slot": "primary"
|
|
295
|
+
},
|
|
296
|
+
"search": {
|
|
297
|
+
"id": "release-search",
|
|
298
|
+
"label": "Search releases",
|
|
299
|
+
"placeholder": "Search releases",
|
|
300
|
+
"protocolProvider": "releases.search",
|
|
301
|
+
"requiredPermissions": [
|
|
302
|
+
"search:read:aiworker-qa"
|
|
303
|
+
]
|
|
304
|
+
},
|
|
305
|
+
"settings": {
|
|
306
|
+
"id": "qa-settings",
|
|
307
|
+
"label": "QA settings",
|
|
308
|
+
"protocolAction": "settings.open",
|
|
309
|
+
"requiredPermissions": [
|
|
310
|
+
"api:serve:/api/local/apps/aiworker-qa"
|
|
311
|
+
]
|
|
312
|
+
}
|
|
313
|
+
},
|
|
314
|
+
"workspaceWidgets": [
|
|
315
|
+
{
|
|
316
|
+
"entry": "./src/ui/release-widget.tsx",
|
|
317
|
+
"id": "qa-release-widget",
|
|
318
|
+
"label": "Release widget",
|
|
319
|
+
"slot": "workspace-widget",
|
|
320
|
+
"surface": {
|
|
321
|
+
"entry": "/frames/widgets/qa-release-widget",
|
|
322
|
+
"renderer": "sandboxed-frame",
|
|
323
|
+
"scope": "workspace"
|
|
324
|
+
},
|
|
325
|
+
"target": "release"
|
|
326
|
+
}
|
|
327
|
+
]
|
|
328
|
+
},
|
|
329
|
+
"version": "0.1.0",
|
|
330
|
+
"workspaceTypes": [
|
|
331
|
+
{
|
|
332
|
+
"artifactTypes": [
|
|
333
|
+
"regression-matrix",
|
|
334
|
+
"release-gate"
|
|
335
|
+
],
|
|
336
|
+
"defaultCapabilityIds": [
|
|
337
|
+
"regression-matrix",
|
|
338
|
+
"release-gate"
|
|
339
|
+
],
|
|
340
|
+
"description": "Release readiness workspace with test and defect evidence.",
|
|
341
|
+
"id": "release",
|
|
342
|
+
"name": "Release"
|
|
343
|
+
},
|
|
344
|
+
{
|
|
345
|
+
"artifactTypes": [
|
|
346
|
+
"regression-matrix"
|
|
347
|
+
],
|
|
348
|
+
"defaultCapabilityIds": [
|
|
349
|
+
"regression-matrix"
|
|
350
|
+
],
|
|
351
|
+
"description": "Focused test suite coverage workspace.",
|
|
352
|
+
"id": "test-suite",
|
|
353
|
+
"name": "Test Suite"
|
|
354
|
+
}
|
|
355
|
+
]
|
|
356
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { qaReferenceSoulApp as soulApp } from './index'
|