@zonease/aiworker-cli 0.12.2 → 0.13.1

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 (117) hide show
  1. package/README.md +158 -350
  2. package/aiworker-bun.js +614 -694
  3. package/drizzle/worker/0000_polite_stellaris.sql +219 -0
  4. package/drizzle/worker/0001_red_lady_mastermind.sql +29 -0
  5. package/drizzle/worker/0002_concerned_slyde.sql +45 -0
  6. package/drizzle/worker/meta/0000_snapshot.json +1055 -194
  7. package/drizzle/worker/meta/0001_snapshot.json +1244 -222
  8. package/drizzle/worker/meta/0002_snapshot.json +1557 -273
  9. package/drizzle/worker/meta/_journal.json +6 -48
  10. package/official-apps/aiworker-hr/README.md +16 -0
  11. package/official-apps/aiworker-hr/capabilities/candidate-screen/prompt.md +3 -0
  12. package/official-apps/aiworker-hr/capabilities/candidate-screen/review.md +5 -0
  13. package/official-apps/aiworker-hr/capabilities/person-profile/prompt.md +3 -0
  14. package/official-apps/aiworker-hr/capabilities/person-profile/review.md +5 -0
  15. package/official-apps/aiworker-hr/dist/host-mounted.js +15677 -0
  16. package/official-apps/aiworker-hr/dist/index.js +15411 -0
  17. package/official-apps/aiworker-hr/dist/standalone.js +15451 -0
  18. package/official-apps/aiworker-hr/migrations/0001_hr.sql +2 -0
  19. package/official-apps/aiworker-hr/package.json +31 -0
  20. package/official-apps/aiworker-hr/packs/hr-recruiting/SOUL.md +7 -0
  21. package/official-apps/aiworker-hr/review/candidate-screen.md +5 -0
  22. package/official-apps/aiworker-hr/review/person-profile.md +5 -0
  23. package/official-apps/aiworker-hr/schemas/candidate-screen.schema.json +50 -0
  24. package/official-apps/aiworker-hr/schemas/person-profile.schema.json +50 -0
  25. package/official-apps/aiworker-hr/soul-app.manifest.json +374 -0
  26. package/official-apps/aiworker-hr/src/api.ts +1 -0
  27. package/official-apps/aiworker-hr/src/host-mounted.ts +308 -0
  28. package/official-apps/aiworker-hr/src/index.ts +152 -0
  29. package/official-apps/aiworker-hr/src/protocol/artifact.ts +2 -0
  30. package/official-apps/aiworker-hr/src/protocol/connectors.ts +2 -0
  31. package/official-apps/aiworker-hr/src/protocol/lifecycle.ts +2 -0
  32. package/official-apps/aiworker-hr/src/protocol/review.ts +2 -0
  33. package/official-apps/aiworker-hr/src/protocol/runtime.ts +2 -0
  34. package/official-apps/aiworker-hr/src/protocol/ui.ts +2 -0
  35. package/official-apps/aiworker-hr/src/standalone.ts +43 -0
  36. package/official-apps/aiworker-hr/src/ui/candidate-screen-preview.tsx +2 -0
  37. package/official-apps/aiworker-hr/src/ui/hr-route.tsx +1 -0
  38. package/official-apps/aiworker-hr/src/ui/people-widget.tsx +1 -0
  39. package/official-apps/aiworker-hr/src/ui/person-profile-preview.tsx +2 -0
  40. package/official-apps/aiworker-hr/src/ui/profile-panel.tsx +1 -0
  41. package/official-apps/aiworker-hr/src/ui/review-panel.tsx +1 -0
  42. package/official-apps/aiworker-hr/tsconfig.json +20 -0
  43. package/official-apps/aiworker-qa/README.md +14 -0
  44. package/official-apps/aiworker-qa/capabilities/regression-matrix/prompt.md +3 -0
  45. package/official-apps/aiworker-qa/capabilities/regression-matrix/review.md +5 -0
  46. package/official-apps/aiworker-qa/capabilities/release-gate/prompt.md +3 -0
  47. package/official-apps/aiworker-qa/capabilities/release-gate/review.md +5 -0
  48. package/official-apps/aiworker-qa/dist/host-mounted.js +15655 -0
  49. package/official-apps/aiworker-qa/dist/index.js +15395 -0
  50. package/official-apps/aiworker-qa/dist/standalone.js +15435 -0
  51. package/official-apps/aiworker-qa/migrations/0001_qa.sql +2 -0
  52. package/official-apps/aiworker-qa/package.json +31 -0
  53. package/official-apps/aiworker-qa/packs/qa-reviewer/SOUL.md +7 -0
  54. package/official-apps/aiworker-qa/review/regression-matrix.md +5 -0
  55. package/official-apps/aiworker-qa/review/release-gate.md +5 -0
  56. package/official-apps/aiworker-qa/schemas/regression-matrix.schema.json +50 -0
  57. package/official-apps/aiworker-qa/schemas/release-gate.schema.json +50 -0
  58. package/official-apps/aiworker-qa/soul-app.manifest.json +356 -0
  59. package/official-apps/aiworker-qa/src/api.ts +1 -0
  60. package/official-apps/aiworker-qa/src/host-mounted.ts +302 -0
  61. package/official-apps/aiworker-qa/src/index.ts +152 -0
  62. package/official-apps/aiworker-qa/src/protocol/artifact.ts +2 -0
  63. package/official-apps/aiworker-qa/src/protocol/connectors.ts +2 -0
  64. package/official-apps/aiworker-qa/src/protocol/lifecycle.ts +2 -0
  65. package/official-apps/aiworker-qa/src/protocol/review.ts +2 -0
  66. package/official-apps/aiworker-qa/src/protocol/runtime.ts +2 -0
  67. package/official-apps/aiworker-qa/src/protocol/ui.ts +2 -0
  68. package/official-apps/aiworker-qa/src/standalone.ts +43 -0
  69. package/official-apps/aiworker-qa/src/ui/qa-route.tsx +1 -0
  70. package/official-apps/aiworker-qa/src/ui/regression-matrix-preview.tsx +2 -0
  71. package/official-apps/aiworker-qa/src/ui/release-gate-preview.tsx +2 -0
  72. package/official-apps/aiworker-qa/src/ui/release-panel.tsx +1 -0
  73. package/official-apps/aiworker-qa/src/ui/release-review-panel.tsx +1 -0
  74. package/official-apps/aiworker-qa/src/ui/release-widget.tsx +1 -0
  75. package/official-apps/aiworker-qa/src/ui/review-panel.tsx +1 -0
  76. package/official-apps/aiworker-qa/tsconfig.json +20 -0
  77. package/package.json +5 -4
  78. package/web/worker/assets/index-K-y56wrL.css +2 -0
  79. package/web/worker/assets/index-YNnnk64n.js +18 -0
  80. package/web/worker/assets/markdown-preview-DFe-rfff.js +29 -0
  81. package/web/worker/assets/people-workbench-BzWwSc2I.js +1 -0
  82. package/web/worker/engine-icons/claude.svg +1 -0
  83. package/web/worker/engine-icons/cursor.svg +1 -0
  84. package/web/worker/engine-icons/gemini.svg +1 -0
  85. package/web/worker/engine-icons/hermesagent.svg +1 -0
  86. package/web/worker/engine-icons/openai.svg +1 -0
  87. package/web/worker/engine-icons/opencode.svg +1 -0
  88. package/web/worker/engine-icons/qwen.svg +1 -0
  89. package/web/worker/fonts/inter-latin-wght-normal.woff2 +0 -0
  90. package/web/worker/fonts/jetbrains-mono-latin-wght-normal.woff2 +0 -0
  91. package/web/worker/fonts/nunito-latin-wght-normal.woff2 +0 -0
  92. package/web/worker/index.html +8 -4
  93. package/web/worker/logo.svg +8 -0
  94. package/drizzle/fleet/0000_fine_havok.sql +0 -23
  95. package/drizzle/fleet/meta/0000_snapshot.json +0 -165
  96. package/drizzle/fleet/meta/_journal.json +0 -13
  97. package/drizzle/worker/0000_spooky_kat_farrell.sql +0 -112
  98. package/drizzle/worker/0001_secret_dagger.sql +0 -1
  99. package/drizzle/worker/0002_jazzy_moondragon.sql +0 -13
  100. package/drizzle/worker/0003_rare_cloak.sql +0 -7
  101. package/drizzle/worker/0004_daffy_thing.sql +0 -26
  102. package/drizzle/worker/0005_worthless_whiplash.sql +0 -20
  103. package/drizzle/worker/0006_fair_jetstream.sql +0 -34
  104. package/drizzle/worker/0007_solid_bromley.sql +0 -11
  105. package/drizzle/worker/0008_peaceful_titanium_man.sql +0 -14
  106. package/drizzle/worker/meta/0003_snapshot.json +0 -873
  107. package/drizzle/worker/meta/0004_snapshot.json +0 -1058
  108. package/drizzle/worker/meta/0005_snapshot.json +0 -1192
  109. package/drizzle/worker/meta/0006_snapshot.json +0 -1420
  110. package/drizzle/worker/meta/0007_snapshot.json +0 -1489
  111. package/drizzle/worker/meta/0008_snapshot.json +0 -1593
  112. package/web/fleet/assets/index-BTknRPEg.js +0 -1372
  113. package/web/fleet/assets/index-lu-9OhC0.css +0 -2
  114. package/web/fleet/favicon.svg +0 -4
  115. package/web/fleet/index.html +0 -14
  116. package/web/worker/assets/index-DuxsPbd7.js +0 -1382
  117. package/web/worker/assets/index-lu-9OhC0.css +0 -2
@@ -0,0 +1,2 @@
1
+ -- AIWorker HR app-local migration: hr-initial
2
+ -- App-owned storage is brokered by Host in mounted mode and local in standalone mode.
@@ -0,0 +1,31 @@
1
+ {
2
+ "name": "@zonease/aiworker-hr",
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,7 @@
1
+ # AIWorker HR Soul Pack
2
+
3
+ This pack anchors HR work in app-owned domain guidance.
4
+
5
+ - Stay inside the app workspace.
6
+ - Produce reviewable artifacts.
7
+ - Use Host broker only for shared resources.
@@ -0,0 +1,5 @@
1
+ # Candidate Screen Review Policy
2
+
3
+ - Verify source evidence is explicit.
4
+ - Mark missing facts before promotion.
5
+ - Keep human review notes separate from generated summary.
@@ -0,0 +1,5 @@
1
+ # Person Profile Review Policy
2
+
3
+ - Verify source evidence is explicit.
4
+ - Mark missing facts before promotion.
5
+ - Keep human review notes separate from generated summary.
@@ -0,0 +1,50 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "title": "AIWorker HR Candidate Screen",
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 HR Person Profile",
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,374 @@
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-hr"
12
+ },
13
+ "artifactTypes": [
14
+ {
15
+ "description": "Source-backed HR lifecycle profile.",
16
+ "id": "person-profile",
17
+ "name": "Person Profile",
18
+ "previewRef": "./src/ui/person-profile-preview.tsx",
19
+ "reviewPolicyRef": "./review/person-profile.md",
20
+ "schemaRef": "./schemas/person-profile.schema.json",
21
+ "schemaSha256": "35c14e3d4c0fe9fd95c87e9bc47a210e21f99bcb1b079aa99a95bb93e820c8ab",
22
+ "version": "0.1.0"
23
+ },
24
+ {
25
+ "description": "Role-related candidate screen with missing evidence and risks.",
26
+ "id": "candidate-screen",
27
+ "name": "Candidate Screen",
28
+ "previewRef": "./src/ui/candidate-screen-preview.tsx",
29
+ "reviewPolicyRef": "./review/candidate-screen.md",
30
+ "schemaRef": "./schemas/candidate-screen.schema.json",
31
+ "schemaSha256": "e8bd207be63eab23073cd47e41092f1d753c38d609383206e94334dd984b309c",
32
+ "version": "0.1.0"
33
+ }
34
+ ],
35
+ "capabilities": [
36
+ {
37
+ "artifactTypes": [
38
+ "person-profile"
39
+ ],
40
+ "description": "Create a source-backed people profile snapshot.",
41
+ "id": "person-profile",
42
+ "name": "Person Profile",
43
+ "outputKind": "person-profile",
44
+ "packRefs": [],
45
+ "promptRef": "./capabilities/person-profile/prompt.md",
46
+ "reviewRubricRef": "./capabilities/person-profile/review.md",
47
+ "version": "0.1.0",
48
+ "workspaceTypes": [
49
+ "people-profile"
50
+ ]
51
+ },
52
+ {
53
+ "artifactTypes": [
54
+ "candidate-screen"
55
+ ],
56
+ "description": "Screen candidate evidence against a role rubric.",
57
+ "id": "candidate-screen",
58
+ "name": "Candidate Screen",
59
+ "outputKind": "candidate-screen",
60
+ "packRefs": [],
61
+ "promptRef": "./capabilities/candidate-screen/prompt.md",
62
+ "reviewRubricRef": "./capabilities/candidate-screen/review.md",
63
+ "version": "0.1.0",
64
+ "workspaceTypes": [
65
+ "role-search",
66
+ "candidate"
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": "calendar",
85
+ "reason": "Collect interview availability and touchpoint context.",
86
+ "scopes": [
87
+ "events.read"
88
+ ]
89
+ }
90
+ ],
91
+ "required": [
92
+ {
93
+ "access": [
94
+ "read"
95
+ ],
96
+ "id": "ats",
97
+ "reason": "Read candidate packets and role evidence through the Host connector broker.",
98
+ "scopes": [
99
+ "candidates.read",
100
+ "roles.read"
101
+ ]
102
+ }
103
+ ]
104
+ },
105
+ "description": "People operations Soul App for profiles, recruiting evidence, lifecycle touchpoints, and HR review policy.",
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-hr",
120
+ "memory": {
121
+ "admissionPolicy": "manual-review",
122
+ "namespace": "aiworker-hr"
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 HR",
135
+ "pack": {
136
+ "refs": [
137
+ {
138
+ "id": "hr-recruiting",
139
+ "ref": "packs/hr-recruiting/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 HR domain metadata.",
150
+ "target": "aiworker-hr"
151
+ },
152
+ {
153
+ "action": "write",
154
+ "kind": "storage",
155
+ "reason": "Write app-scoped HR domain metadata.",
156
+ "target": "aiworker-hr"
157
+ },
158
+ {
159
+ "action": "read",
160
+ "kind": "search",
161
+ "reason": "Read app-owned HR search descriptors.",
162
+ "target": "aiworker-hr"
163
+ },
164
+ {
165
+ "action": "write",
166
+ "kind": "search",
167
+ "reason": "Publish app-owned HR search descriptors.",
168
+ "target": "aiworker-hr"
169
+ },
170
+ {
171
+ "action": "read",
172
+ "kind": "connector",
173
+ "reason": "Read HR evidence through Host connector broker.",
174
+ "target": "ats"
175
+ },
176
+ {
177
+ "action": "write",
178
+ "kind": "artifact",
179
+ "reason": "Create reviewable HR artifacts.",
180
+ "target": "person-profile"
181
+ },
182
+ {
183
+ "action": "create",
184
+ "kind": "review",
185
+ "reason": "Create HR review rubrics and findings.",
186
+ "target": "hr-review"
187
+ },
188
+ {
189
+ "action": "propose",
190
+ "kind": "memory",
191
+ "reason": "Propose reviewed HR lessons into the app namespace.",
192
+ "target": "aiworker-hr"
193
+ },
194
+ {
195
+ "action": "mount",
196
+ "kind": "ui",
197
+ "reason": "Mount HR workbench contributions.",
198
+ "target": "hr-workbench"
199
+ },
200
+ {
201
+ "action": "serve",
202
+ "kind": "api",
203
+ "reason": "Serve HR scoped API routes.",
204
+ "target": "/api/local/apps/aiworker-hr"
205
+ }
206
+ ],
207
+ "protocol": "soul-app/v1",
208
+ "soul": {
209
+ "description": "HR Soul for people operations, recruiting, onboarding, offboarding, and sensitive evidence review.",
210
+ "domain": "hr-people-ops",
211
+ "id": "hr",
212
+ "name": "HR",
213
+ "version": "0.1.0"
214
+ },
215
+ "storage": {
216
+ "migrations": [
217
+ {
218
+ "id": "hr-initial",
219
+ "path": "./migrations/0001_hr.sql"
220
+ }
221
+ ],
222
+ "namespace": "aiworker-hr"
223
+ },
224
+ "ui": {
225
+ "artifactPreviews": [
226
+ {
227
+ "entry": "./src/ui/person-profile-preview.tsx",
228
+ "id": "person-profile-preview",
229
+ "label": "Person profile preview",
230
+ "slot": "artifact-preview",
231
+ "target": "person-profile"
232
+ }
233
+ ],
234
+ "panels": [
235
+ {
236
+ "entry": "./src/ui/profile-panel.tsx",
237
+ "id": "hr-profile-panel",
238
+ "label": "Profile panel",
239
+ "slot": "panel",
240
+ "surface": {
241
+ "entry": "/surfaces/panels/hr-profile-panel",
242
+ "renderer": "host-descriptor",
243
+ "requiredPermissions": [
244
+ "storage:read:aiworker-hr"
245
+ ],
246
+ "scope": "workspace"
247
+ }
248
+ }
249
+ ],
250
+ "reviewPanels": [
251
+ {
252
+ "entry": "./src/ui/review-panel.tsx",
253
+ "id": "hr-review-panel",
254
+ "label": "HR review panel",
255
+ "slot": "review-panel"
256
+ }
257
+ ],
258
+ "routes": [
259
+ {
260
+ "entry": "./src/ui/hr-route.tsx",
261
+ "id": "hr-home",
262
+ "label": "HR",
263
+ "path": "/hr",
264
+ "surface": {
265
+ "entry": "/surfaces/routes/hr-home",
266
+ "renderer": "host-descriptor",
267
+ "requiredPermissions": [
268
+ "ui:mount:hr-workbench"
269
+ ],
270
+ "scope": "app"
271
+ }
272
+ }
273
+ ],
274
+ "shell": {
275
+ "actions": [
276
+ {
277
+ "id": "refresh-people",
278
+ "label": "Refresh",
279
+ "protocolAction": "people.refresh",
280
+ "requiredPermissions": [
281
+ "storage:read:aiworker-hr"
282
+ ],
283
+ "slot": "refresh"
284
+ },
285
+ {
286
+ "id": "toggle-evidence-drawer",
287
+ "label": "Evidence",
288
+ "protocolAction": "drawers.evidence.toggle",
289
+ "requiredPermissions": [
290
+ "connector:read:ats"
291
+ ],
292
+ "slot": "drawer-toggle"
293
+ }
294
+ ],
295
+ "primaryAction": {
296
+ "id": "create-people-profile",
297
+ "label": "New people profile",
298
+ "protocolAction": "peopleProfiles.create",
299
+ "requiredPermissions": [
300
+ "storage:write:aiworker-hr",
301
+ "search:write:aiworker-hr"
302
+ ],
303
+ "slot": "primary"
304
+ },
305
+ "search": {
306
+ "id": "people-profile-search",
307
+ "label": "Search people profiles",
308
+ "placeholder": "Search people profiles",
309
+ "protocolProvider": "peopleProfiles.search",
310
+ "requiredPermissions": [
311
+ "search:read:aiworker-hr"
312
+ ]
313
+ },
314
+ "settings": {
315
+ "id": "hr-settings",
316
+ "label": "HR settings",
317
+ "protocolAction": "settings.open",
318
+ "requiredPermissions": [
319
+ "api:serve:/api/local/apps/aiworker-hr"
320
+ ]
321
+ }
322
+ },
323
+ "workspaceWidgets": [
324
+ {
325
+ "entry": "./src/ui/people-widget.tsx",
326
+ "id": "hr-people-widget",
327
+ "label": "People widget",
328
+ "slot": "workspace-widget",
329
+ "surface": {
330
+ "entry": "/frames/widgets/hr-people-widget",
331
+ "renderer": "sandboxed-frame",
332
+ "scope": "workspace"
333
+ },
334
+ "target": "people-profile"
335
+ }
336
+ ]
337
+ },
338
+ "version": "0.1.0",
339
+ "workspaceTypes": [
340
+ {
341
+ "artifactTypes": [
342
+ "person-profile"
343
+ ],
344
+ "defaultCapabilityIds": [
345
+ "person-profile"
346
+ ],
347
+ "description": "Profile-centered workspace for one person lifecycle.",
348
+ "id": "people-profile",
349
+ "name": "People Profile"
350
+ },
351
+ {
352
+ "artifactTypes": [
353
+ "candidate-screen"
354
+ ],
355
+ "defaultCapabilityIds": [
356
+ "candidate-screen"
357
+ ],
358
+ "description": "Recruiting role workspace with candidate evidence and review.",
359
+ "id": "role-search",
360
+ "name": "Role Search"
361
+ },
362
+ {
363
+ "artifactTypes": [
364
+ "candidate-screen"
365
+ ],
366
+ "defaultCapabilityIds": [
367
+ "candidate-screen"
368
+ ],
369
+ "description": "Focused candidate packet workspace.",
370
+ "id": "candidate",
371
+ "name": "Candidate"
372
+ }
373
+ ]
374
+ }
@@ -0,0 +1 @@
1
+ export { hrReferenceSoulApp as soulApp } from './index'