@zonease/aiworker-cli 0.17.0 → 0.17.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.
- package/aiworker-bun.js +262 -260
- package/official-apps/aiworker-hr/dist/index.js +208 -12
- package/official-apps/aiworker-hr/dist/mounted/host-mounted.js +208 -12
- package/official-apps/aiworker-hr/dist/standalone/standalone.js +208 -12
- package/official-apps/aiworker-hr/engine-assets/skills/candidate-profile/SKILL.md +5 -3
- package/official-apps/aiworker-hr/engine-assets/skills/evidence-screening/SKILL.md +4 -0
- package/official-apps/aiworker-hr/engine-assets/skills/hiring-risk-review/SKILL.md +5 -2
- package/official-apps/aiworker-hr/engine-assets/skills/interview-brief/SKILL.md +4 -0
- package/official-apps/aiworker-hr/engine-assets/skills/profile-update-proposal/SKILL.md +31 -4
- package/official-apps/aiworker-hr/engine-assets/workspace/AGENTS.md +11 -3
- package/official-apps/aiworker-hr/engine-assets/workspace/README.md +1 -1
- package/official-apps/aiworker-hr/product/artifacts/README.md +36 -0
- package/official-apps/aiworker-hr/product/artifacts/schemas/evidence-matrix.schema.json +50 -0
- package/official-apps/aiworker-hr/product/artifacts/schemas/hiring-risk.schema.json +50 -0
- package/official-apps/aiworker-hr/product/artifacts/schemas/interview-brief.schema.json +51 -0
- package/official-apps/aiworker-hr/product/artifacts/schemas/profile-update-proposal.schema.json +44 -0
- package/official-apps/aiworker-hr/product/reviews/evidence-matrix.md +5 -0
- package/official-apps/aiworker-hr/product/reviews/hiring-risk.md +5 -0
- package/official-apps/aiworker-hr/product/reviews/interview-brief.md +5 -0
- package/official-apps/aiworker-hr/product/reviews/profile-update-proposal.md +5 -0
- package/official-apps/aiworker-hr/product/workflows/evidence-matrix/prompt.md +3 -0
- package/official-apps/aiworker-hr/product/workflows/evidence-matrix/review.md +5 -0
- package/official-apps/aiworker-hr/product/workflows/hiring-risk/prompt.md +3 -0
- package/official-apps/aiworker-hr/product/workflows/hiring-risk/review.md +5 -0
- package/official-apps/aiworker-hr/product/workflows/interview-brief/prompt.md +3 -0
- package/official-apps/aiworker-hr/product/workflows/interview-brief/review.md +5 -0
- package/official-apps/aiworker-hr/product/workflows/profile-update-proposal/prompt.md +3 -0
- package/official-apps/aiworker-hr/product/workflows/profile-update-proposal/review.md +6 -0
- package/official-apps/aiworker-hr/soul-app.manifest.json +122 -6
- package/official-apps/aiworker-qa/dist/index.js +86 -6
- package/official-apps/aiworker-qa/dist/mounted/host-mounted.js +86 -6
- package/official-apps/aiworker-qa/dist/standalone/standalone.js +86 -6
- package/package.json +1 -1
- package/web/worker/assets/index-BVL5d431.js +1472 -0
- package/web/worker/assets/index-vuCezriz.css +2 -0
- package/web/worker/assets/people-workbench-CwlISvWP.js +6 -0
- package/web/worker/index.html +2 -2
- package/web/worker/assets/index-CRzKNzRk.css +0 -2
- package/web/worker/assets/index-DXNJsxH3.js +0 -18
- package/web/worker/assets/people-workbench-BHpi7EqO.js +0 -5
|
@@ -13809,6 +13809,38 @@ var hrSoulAppManifest = soulAppManifestSchema.parse({
|
|
|
13809
13809
|
schemaRef: "./product/artifacts/schemas/candidate-screen.schema.json",
|
|
13810
13810
|
schemaSha256: HR_CANDIDATE_SCREEN_SCHEMA_HASH,
|
|
13811
13811
|
version: "0.1.0"
|
|
13812
|
+
},
|
|
13813
|
+
{
|
|
13814
|
+
description: "Source-backed HR evidence coverage matrix with gaps and conflicts.",
|
|
13815
|
+
id: "evidence-matrix",
|
|
13816
|
+
name: "Evidence Matrix",
|
|
13817
|
+
reviewPolicyRef: "./product/reviews/evidence-matrix.md",
|
|
13818
|
+
schemaRef: "./product/artifacts/schemas/evidence-matrix.schema.json",
|
|
13819
|
+
version: "0.1.0"
|
|
13820
|
+
},
|
|
13821
|
+
{
|
|
13822
|
+
description: "Structured interviewer brief with evidence-backed questions.",
|
|
13823
|
+
id: "interview-brief",
|
|
13824
|
+
name: "Interview Brief",
|
|
13825
|
+
reviewPolicyRef: "./product/reviews/interview-brief.md",
|
|
13826
|
+
schemaRef: "./product/artifacts/schemas/interview-brief.schema.json",
|
|
13827
|
+
version: "0.1.0"
|
|
13828
|
+
},
|
|
13829
|
+
{
|
|
13830
|
+
description: "Hiring risk review with uncertainty and decision guardrails.",
|
|
13831
|
+
id: "hiring-risk",
|
|
13832
|
+
name: "Hiring Risk Review",
|
|
13833
|
+
reviewPolicyRef: "./product/reviews/hiring-risk.md",
|
|
13834
|
+
schemaRef: "./product/artifacts/schemas/hiring-risk.schema.json",
|
|
13835
|
+
version: "0.1.0"
|
|
13836
|
+
},
|
|
13837
|
+
{
|
|
13838
|
+
description: "Reviewed proposal for promoting an accepted profile README revision.",
|
|
13839
|
+
id: "profile-update-proposal",
|
|
13840
|
+
name: "Profile Update Proposal",
|
|
13841
|
+
reviewPolicyRef: "./product/reviews/profile-update-proposal.md",
|
|
13842
|
+
schemaRef: "./product/artifacts/schemas/profile-update-proposal.schema.json",
|
|
13843
|
+
version: "0.1.0"
|
|
13812
13844
|
}
|
|
13813
13845
|
],
|
|
13814
13846
|
capabilities: [
|
|
@@ -13835,6 +13867,54 @@ var hrSoulAppManifest = soulAppManifestSchema.parse({
|
|
|
13835
13867
|
reviewRubricRef: "./product/workflows/candidate-screen/review.md",
|
|
13836
13868
|
version: "0.1.0",
|
|
13837
13869
|
workspaceTypes: ["role-search", "candidate"]
|
|
13870
|
+
},
|
|
13871
|
+
{
|
|
13872
|
+
artifactTypes: ["evidence-matrix"],
|
|
13873
|
+
description: "Screen HR evidence into a coverage matrix with gaps, conflicts, and source boundaries.",
|
|
13874
|
+
id: "evidence-matrix",
|
|
13875
|
+
name: "Evidence Matrix",
|
|
13876
|
+
outputKind: "evidence-matrix",
|
|
13877
|
+
packRefs: [],
|
|
13878
|
+
promptRef: "./product/workflows/evidence-matrix/prompt.md",
|
|
13879
|
+
reviewRubricRef: "./product/workflows/evidence-matrix/review.md",
|
|
13880
|
+
version: "0.1.0",
|
|
13881
|
+
workspaceTypes: ["people-profile", "role-search", "candidate"]
|
|
13882
|
+
},
|
|
13883
|
+
{
|
|
13884
|
+
artifactTypes: ["interview-brief"],
|
|
13885
|
+
description: "Prepare a structured interviewer brief with evidence-backed questions.",
|
|
13886
|
+
id: "interview-brief",
|
|
13887
|
+
name: "Interview Brief",
|
|
13888
|
+
outputKind: "interview-brief",
|
|
13889
|
+
packRefs: [],
|
|
13890
|
+
promptRef: "./product/workflows/interview-brief/prompt.md",
|
|
13891
|
+
reviewRubricRef: "./product/workflows/interview-brief/review.md",
|
|
13892
|
+
version: "0.1.0",
|
|
13893
|
+
workspaceTypes: ["role-search", "candidate"]
|
|
13894
|
+
},
|
|
13895
|
+
{
|
|
13896
|
+
artifactTypes: ["hiring-risk"],
|
|
13897
|
+
description: "Summarize hiring risks, uncertainty, and decision guardrails without making the decision.",
|
|
13898
|
+
id: "hiring-risk",
|
|
13899
|
+
name: "Hiring Risk Review",
|
|
13900
|
+
outputKind: "hiring-risk",
|
|
13901
|
+
packRefs: [],
|
|
13902
|
+
promptRef: "./product/workflows/hiring-risk/prompt.md",
|
|
13903
|
+
reviewRubricRef: "./product/workflows/hiring-risk/review.md",
|
|
13904
|
+
version: "0.1.0",
|
|
13905
|
+
workspaceTypes: ["people-profile", "role-search", "candidate"]
|
|
13906
|
+
},
|
|
13907
|
+
{
|
|
13908
|
+
artifactTypes: ["profile-update-proposal"],
|
|
13909
|
+
description: "Propose a reviewed profile README revision while keeping promotion product-owned.",
|
|
13910
|
+
id: "profile-update-proposal",
|
|
13911
|
+
name: "Profile Update Proposal",
|
|
13912
|
+
outputKind: "profile-update-proposal",
|
|
13913
|
+
packRefs: [],
|
|
13914
|
+
promptRef: "./product/workflows/profile-update-proposal/prompt.md",
|
|
13915
|
+
reviewRubricRef: "./product/workflows/profile-update-proposal/review.md",
|
|
13916
|
+
version: "0.1.0",
|
|
13917
|
+
workspaceTypes: ["people-profile", "candidate"]
|
|
13838
13918
|
}
|
|
13839
13919
|
],
|
|
13840
13920
|
compatibility: {
|
|
@@ -14075,22 +14155,22 @@ var hrSoulAppManifest = soulAppManifestSchema.parse({
|
|
|
14075
14155
|
version: "0.1.0",
|
|
14076
14156
|
workspaceTypes: [
|
|
14077
14157
|
{
|
|
14078
|
-
artifactTypes: ["person-profile"],
|
|
14079
|
-
defaultCapabilityIds: ["person-profile"],
|
|
14158
|
+
artifactTypes: ["person-profile", "evidence-matrix", "hiring-risk", "profile-update-proposal"],
|
|
14159
|
+
defaultCapabilityIds: ["person-profile", "profile-update-proposal"],
|
|
14080
14160
|
description: "Profile-centered workspace for one person lifecycle.",
|
|
14081
14161
|
id: "people-profile",
|
|
14082
14162
|
name: "People Profile"
|
|
14083
14163
|
},
|
|
14084
14164
|
{
|
|
14085
|
-
artifactTypes: ["candidate-screen"],
|
|
14086
|
-
defaultCapabilityIds: ["candidate-screen"],
|
|
14165
|
+
artifactTypes: ["candidate-screen", "evidence-matrix", "interview-brief", "hiring-risk", "profile-update-proposal"],
|
|
14166
|
+
defaultCapabilityIds: ["candidate-screen", "profile-update-proposal"],
|
|
14087
14167
|
description: "Recruiting role workspace with candidate evidence and review.",
|
|
14088
14168
|
id: "role-search",
|
|
14089
14169
|
name: "Role Search"
|
|
14090
14170
|
},
|
|
14091
14171
|
{
|
|
14092
|
-
artifactTypes: ["candidate-screen"],
|
|
14093
|
-
defaultCapabilityIds: ["candidate-screen"],
|
|
14172
|
+
artifactTypes: ["candidate-screen", "evidence-matrix", "interview-brief", "hiring-risk", "profile-update-proposal"],
|
|
14173
|
+
defaultCapabilityIds: ["candidate-screen", "profile-update-proposal"],
|
|
14094
14174
|
description: "Focused candidate packet workspace.",
|
|
14095
14175
|
id: "candidate",
|
|
14096
14176
|
name: "Candidate"
|
|
@@ -15045,6 +15125,38 @@ var soul_app_manifest_default = {
|
|
|
15045
15125
|
schemaRef: "./product/artifacts/schemas/candidate-screen.schema.json",
|
|
15046
15126
|
schemaSha256: "e8bd207be63eab23073cd47e41092f1d753c38d609383206e94334dd984b309c",
|
|
15047
15127
|
version: "0.1.0"
|
|
15128
|
+
},
|
|
15129
|
+
{
|
|
15130
|
+
description: "Source-backed HR evidence coverage matrix with gaps and conflicts.",
|
|
15131
|
+
id: "evidence-matrix",
|
|
15132
|
+
name: "Evidence Matrix",
|
|
15133
|
+
reviewPolicyRef: "./product/reviews/evidence-matrix.md",
|
|
15134
|
+
schemaRef: "./product/artifacts/schemas/evidence-matrix.schema.json",
|
|
15135
|
+
version: "0.1.0"
|
|
15136
|
+
},
|
|
15137
|
+
{
|
|
15138
|
+
description: "Structured interviewer brief with evidence-backed questions.",
|
|
15139
|
+
id: "interview-brief",
|
|
15140
|
+
name: "Interview Brief",
|
|
15141
|
+
reviewPolicyRef: "./product/reviews/interview-brief.md",
|
|
15142
|
+
schemaRef: "./product/artifacts/schemas/interview-brief.schema.json",
|
|
15143
|
+
version: "0.1.0"
|
|
15144
|
+
},
|
|
15145
|
+
{
|
|
15146
|
+
description: "Hiring risk review with uncertainty and decision guardrails.",
|
|
15147
|
+
id: "hiring-risk",
|
|
15148
|
+
name: "Hiring Risk Review",
|
|
15149
|
+
reviewPolicyRef: "./product/reviews/hiring-risk.md",
|
|
15150
|
+
schemaRef: "./product/artifacts/schemas/hiring-risk.schema.json",
|
|
15151
|
+
version: "0.1.0"
|
|
15152
|
+
},
|
|
15153
|
+
{
|
|
15154
|
+
description: "Reviewed proposal for promoting an accepted profile README revision.",
|
|
15155
|
+
id: "profile-update-proposal",
|
|
15156
|
+
name: "Profile Update Proposal",
|
|
15157
|
+
reviewPolicyRef: "./product/reviews/profile-update-proposal.md",
|
|
15158
|
+
schemaRef: "./product/artifacts/schemas/profile-update-proposal.schema.json",
|
|
15159
|
+
version: "0.1.0"
|
|
15048
15160
|
}
|
|
15049
15161
|
],
|
|
15050
15162
|
capabilities: [
|
|
@@ -15080,6 +15192,76 @@ var soul_app_manifest_default = {
|
|
|
15080
15192
|
"role-search",
|
|
15081
15193
|
"candidate"
|
|
15082
15194
|
]
|
|
15195
|
+
},
|
|
15196
|
+
{
|
|
15197
|
+
artifactTypes: [
|
|
15198
|
+
"evidence-matrix"
|
|
15199
|
+
],
|
|
15200
|
+
description: "Screen HR evidence into a coverage matrix with gaps, conflicts, and source boundaries.",
|
|
15201
|
+
id: "evidence-matrix",
|
|
15202
|
+
name: "Evidence Matrix",
|
|
15203
|
+
outputKind: "evidence-matrix",
|
|
15204
|
+
packRefs: [],
|
|
15205
|
+
promptRef: "./product/workflows/evidence-matrix/prompt.md",
|
|
15206
|
+
reviewRubricRef: "./product/workflows/evidence-matrix/review.md",
|
|
15207
|
+
version: "0.1.0",
|
|
15208
|
+
workspaceTypes: [
|
|
15209
|
+
"people-profile",
|
|
15210
|
+
"role-search",
|
|
15211
|
+
"candidate"
|
|
15212
|
+
]
|
|
15213
|
+
},
|
|
15214
|
+
{
|
|
15215
|
+
artifactTypes: [
|
|
15216
|
+
"interview-brief"
|
|
15217
|
+
],
|
|
15218
|
+
description: "Prepare a structured interviewer brief with evidence-backed questions.",
|
|
15219
|
+
id: "interview-brief",
|
|
15220
|
+
name: "Interview Brief",
|
|
15221
|
+
outputKind: "interview-brief",
|
|
15222
|
+
packRefs: [],
|
|
15223
|
+
promptRef: "./product/workflows/interview-brief/prompt.md",
|
|
15224
|
+
reviewRubricRef: "./product/workflows/interview-brief/review.md",
|
|
15225
|
+
version: "0.1.0",
|
|
15226
|
+
workspaceTypes: [
|
|
15227
|
+
"role-search",
|
|
15228
|
+
"candidate"
|
|
15229
|
+
]
|
|
15230
|
+
},
|
|
15231
|
+
{
|
|
15232
|
+
artifactTypes: [
|
|
15233
|
+
"hiring-risk"
|
|
15234
|
+
],
|
|
15235
|
+
description: "Summarize hiring risks, uncertainty, and decision guardrails without making the decision.",
|
|
15236
|
+
id: "hiring-risk",
|
|
15237
|
+
name: "Hiring Risk Review",
|
|
15238
|
+
outputKind: "hiring-risk",
|
|
15239
|
+
packRefs: [],
|
|
15240
|
+
promptRef: "./product/workflows/hiring-risk/prompt.md",
|
|
15241
|
+
reviewRubricRef: "./product/workflows/hiring-risk/review.md",
|
|
15242
|
+
version: "0.1.0",
|
|
15243
|
+
workspaceTypes: [
|
|
15244
|
+
"people-profile",
|
|
15245
|
+
"role-search",
|
|
15246
|
+
"candidate"
|
|
15247
|
+
]
|
|
15248
|
+
},
|
|
15249
|
+
{
|
|
15250
|
+
artifactTypes: [
|
|
15251
|
+
"profile-update-proposal"
|
|
15252
|
+
],
|
|
15253
|
+
description: "Propose a reviewed profile README revision while keeping promotion product-owned.",
|
|
15254
|
+
id: "profile-update-proposal",
|
|
15255
|
+
name: "Profile Update Proposal",
|
|
15256
|
+
outputKind: "profile-update-proposal",
|
|
15257
|
+
packRefs: [],
|
|
15258
|
+
promptRef: "./product/workflows/profile-update-proposal/prompt.md",
|
|
15259
|
+
reviewRubricRef: "./product/workflows/profile-update-proposal/review.md",
|
|
15260
|
+
version: "0.1.0",
|
|
15261
|
+
workspaceTypes: [
|
|
15262
|
+
"people-profile",
|
|
15263
|
+
"candidate"
|
|
15264
|
+
]
|
|
15083
15265
|
}
|
|
15084
15266
|
],
|
|
15085
15267
|
compatibility: {
|
|
@@ -15355,10 +15537,14 @@ var soul_app_manifest_default = {
|
|
|
15355
15537
|
workspaceTypes: [
|
|
15356
15538
|
{
|
|
15357
15539
|
artifactTypes: [
|
|
15358
|
-
"person-profile"
|
|
15540
|
+
"person-profile",
|
|
15541
|
+
"evidence-matrix",
|
|
15542
|
+
"hiring-risk",
|
|
15543
|
+
"profile-update-proposal"
|
|
15359
15544
|
],
|
|
15360
15545
|
defaultCapabilityIds: [
|
|
15361
|
-
"person-profile"
|
|
15546
|
+
"person-profile",
|
|
15547
|
+
"profile-update-proposal"
|
|
15362
15548
|
],
|
|
15363
15549
|
description: "Profile-centered workspace for one person lifecycle.",
|
|
15364
15550
|
id: "people-profile",
|
|
@@ -15366,10 +15552,15 @@ var soul_app_manifest_default = {
|
|
|
15366
15552
|
},
|
|
15367
15553
|
{
|
|
15368
15554
|
artifactTypes: [
|
|
15369
|
-
"candidate-screen"
|
|
15555
|
+
"candidate-screen",
|
|
15556
|
+
"evidence-matrix",
|
|
15557
|
+
"interview-brief",
|
|
15558
|
+
"hiring-risk",
|
|
15559
|
+
"profile-update-proposal"
|
|
15370
15560
|
],
|
|
15371
15561
|
defaultCapabilityIds: [
|
|
15372
|
-
"candidate-screen"
|
|
15562
|
+
"candidate-screen",
|
|
15563
|
+
"profile-update-proposal"
|
|
15373
15564
|
],
|
|
15374
15565
|
description: "Recruiting role workspace with candidate evidence and review.",
|
|
15375
15566
|
id: "role-search",
|
|
@@ -15377,10 +15568,15 @@ var soul_app_manifest_default = {
|
|
|
15377
15568
|
},
|
|
15378
15569
|
{
|
|
15379
15570
|
artifactTypes: [
|
|
15380
|
-
"candidate-screen"
|
|
15571
|
+
"candidate-screen",
|
|
15572
|
+
"evidence-matrix",
|
|
15573
|
+
"interview-brief",
|
|
15574
|
+
"hiring-risk",
|
|
15575
|
+
"profile-update-proposal"
|
|
15381
15576
|
],
|
|
15382
15577
|
defaultCapabilityIds: [
|
|
15383
|
-
"candidate-screen"
|
|
15578
|
+
"candidate-screen",
|
|
15579
|
+
"profile-update-proposal"
|
|
15384
15580
|
],
|
|
15385
15581
|
description: "Focused candidate packet workspace.",
|
|
15386
15582
|
id: "candidate",
|
|
@@ -13809,6 +13809,38 @@ var hrSoulAppManifest = soulAppManifestSchema.parse({
|
|
|
13809
13809
|
schemaRef: "./product/artifacts/schemas/candidate-screen.schema.json",
|
|
13810
13810
|
schemaSha256: HR_CANDIDATE_SCREEN_SCHEMA_HASH,
|
|
13811
13811
|
version: "0.1.0"
|
|
13812
|
+
},
|
|
13813
|
+
{
|
|
13814
|
+
description: "Source-backed HR evidence coverage matrix with gaps and conflicts.",
|
|
13815
|
+
id: "evidence-matrix",
|
|
13816
|
+
name: "Evidence Matrix",
|
|
13817
|
+
reviewPolicyRef: "./product/reviews/evidence-matrix.md",
|
|
13818
|
+
schemaRef: "./product/artifacts/schemas/evidence-matrix.schema.json",
|
|
13819
|
+
version: "0.1.0"
|
|
13820
|
+
},
|
|
13821
|
+
{
|
|
13822
|
+
description: "Structured interviewer brief with evidence-backed questions.",
|
|
13823
|
+
id: "interview-brief",
|
|
13824
|
+
name: "Interview Brief",
|
|
13825
|
+
reviewPolicyRef: "./product/reviews/interview-brief.md",
|
|
13826
|
+
schemaRef: "./product/artifacts/schemas/interview-brief.schema.json",
|
|
13827
|
+
version: "0.1.0"
|
|
13828
|
+
},
|
|
13829
|
+
{
|
|
13830
|
+
description: "Hiring risk review with uncertainty and decision guardrails.",
|
|
13831
|
+
id: "hiring-risk",
|
|
13832
|
+
name: "Hiring Risk Review",
|
|
13833
|
+
reviewPolicyRef: "./product/reviews/hiring-risk.md",
|
|
13834
|
+
schemaRef: "./product/artifacts/schemas/hiring-risk.schema.json",
|
|
13835
|
+
version: "0.1.0"
|
|
13836
|
+
},
|
|
13837
|
+
{
|
|
13838
|
+
description: "Reviewed proposal for promoting an accepted profile README revision.",
|
|
13839
|
+
id: "profile-update-proposal",
|
|
13840
|
+
name: "Profile Update Proposal",
|
|
13841
|
+
reviewPolicyRef: "./product/reviews/profile-update-proposal.md",
|
|
13842
|
+
schemaRef: "./product/artifacts/schemas/profile-update-proposal.schema.json",
|
|
13843
|
+
version: "0.1.0"
|
|
13812
13844
|
}
|
|
13813
13845
|
],
|
|
13814
13846
|
capabilities: [
|
|
@@ -13835,6 +13867,54 @@ var hrSoulAppManifest = soulAppManifestSchema.parse({
|
|
|
13835
13867
|
reviewRubricRef: "./product/workflows/candidate-screen/review.md",
|
|
13836
13868
|
version: "0.1.0",
|
|
13837
13869
|
workspaceTypes: ["role-search", "candidate"]
|
|
13870
|
+
},
|
|
13871
|
+
{
|
|
13872
|
+
artifactTypes: ["evidence-matrix"],
|
|
13873
|
+
description: "Screen HR evidence into a coverage matrix with gaps, conflicts, and source boundaries.",
|
|
13874
|
+
id: "evidence-matrix",
|
|
13875
|
+
name: "Evidence Matrix",
|
|
13876
|
+
outputKind: "evidence-matrix",
|
|
13877
|
+
packRefs: [],
|
|
13878
|
+
promptRef: "./product/workflows/evidence-matrix/prompt.md",
|
|
13879
|
+
reviewRubricRef: "./product/workflows/evidence-matrix/review.md",
|
|
13880
|
+
version: "0.1.0",
|
|
13881
|
+
workspaceTypes: ["people-profile", "role-search", "candidate"]
|
|
13882
|
+
},
|
|
13883
|
+
{
|
|
13884
|
+
artifactTypes: ["interview-brief"],
|
|
13885
|
+
description: "Prepare a structured interviewer brief with evidence-backed questions.",
|
|
13886
|
+
id: "interview-brief",
|
|
13887
|
+
name: "Interview Brief",
|
|
13888
|
+
outputKind: "interview-brief",
|
|
13889
|
+
packRefs: [],
|
|
13890
|
+
promptRef: "./product/workflows/interview-brief/prompt.md",
|
|
13891
|
+
reviewRubricRef: "./product/workflows/interview-brief/review.md",
|
|
13892
|
+
version: "0.1.0",
|
|
13893
|
+
workspaceTypes: ["role-search", "candidate"]
|
|
13894
|
+
},
|
|
13895
|
+
{
|
|
13896
|
+
artifactTypes: ["hiring-risk"],
|
|
13897
|
+
description: "Summarize hiring risks, uncertainty, and decision guardrails without making the decision.",
|
|
13898
|
+
id: "hiring-risk",
|
|
13899
|
+
name: "Hiring Risk Review",
|
|
13900
|
+
outputKind: "hiring-risk",
|
|
13901
|
+
packRefs: [],
|
|
13902
|
+
promptRef: "./product/workflows/hiring-risk/prompt.md",
|
|
13903
|
+
reviewRubricRef: "./product/workflows/hiring-risk/review.md",
|
|
13904
|
+
version: "0.1.0",
|
|
13905
|
+
workspaceTypes: ["people-profile", "role-search", "candidate"]
|
|
13906
|
+
},
|
|
13907
|
+
{
|
|
13908
|
+
artifactTypes: ["profile-update-proposal"],
|
|
13909
|
+
description: "Propose a reviewed profile README revision while keeping promotion product-owned.",
|
|
13910
|
+
id: "profile-update-proposal",
|
|
13911
|
+
name: "Profile Update Proposal",
|
|
13912
|
+
outputKind: "profile-update-proposal",
|
|
13913
|
+
packRefs: [],
|
|
13914
|
+
promptRef: "./product/workflows/profile-update-proposal/prompt.md",
|
|
13915
|
+
reviewRubricRef: "./product/workflows/profile-update-proposal/review.md",
|
|
13916
|
+
version: "0.1.0",
|
|
13917
|
+
workspaceTypes: ["people-profile", "candidate"]
|
|
13838
13918
|
}
|
|
13839
13919
|
],
|
|
13840
13920
|
compatibility: {
|
|
@@ -14075,22 +14155,22 @@ var hrSoulAppManifest = soulAppManifestSchema.parse({
|
|
|
14075
14155
|
version: "0.1.0",
|
|
14076
14156
|
workspaceTypes: [
|
|
14077
14157
|
{
|
|
14078
|
-
artifactTypes: ["person-profile"],
|
|
14079
|
-
defaultCapabilityIds: ["person-profile"],
|
|
14158
|
+
artifactTypes: ["person-profile", "evidence-matrix", "hiring-risk", "profile-update-proposal"],
|
|
14159
|
+
defaultCapabilityIds: ["person-profile", "profile-update-proposal"],
|
|
14080
14160
|
description: "Profile-centered workspace for one person lifecycle.",
|
|
14081
14161
|
id: "people-profile",
|
|
14082
14162
|
name: "People Profile"
|
|
14083
14163
|
},
|
|
14084
14164
|
{
|
|
14085
|
-
artifactTypes: ["candidate-screen"],
|
|
14086
|
-
defaultCapabilityIds: ["candidate-screen"],
|
|
14165
|
+
artifactTypes: ["candidate-screen", "evidence-matrix", "interview-brief", "hiring-risk", "profile-update-proposal"],
|
|
14166
|
+
defaultCapabilityIds: ["candidate-screen", "profile-update-proposal"],
|
|
14087
14167
|
description: "Recruiting role workspace with candidate evidence and review.",
|
|
14088
14168
|
id: "role-search",
|
|
14089
14169
|
name: "Role Search"
|
|
14090
14170
|
},
|
|
14091
14171
|
{
|
|
14092
|
-
artifactTypes: ["candidate-screen"],
|
|
14093
|
-
defaultCapabilityIds: ["candidate-screen"],
|
|
14172
|
+
artifactTypes: ["candidate-screen", "evidence-matrix", "interview-brief", "hiring-risk", "profile-update-proposal"],
|
|
14173
|
+
defaultCapabilityIds: ["candidate-screen", "profile-update-proposal"],
|
|
14094
14174
|
description: "Focused candidate packet workspace.",
|
|
14095
14175
|
id: "candidate",
|
|
14096
14176
|
name: "Candidate"
|
|
@@ -15045,6 +15125,38 @@ var soul_app_manifest_default = {
|
|
|
15045
15125
|
schemaRef: "./product/artifacts/schemas/candidate-screen.schema.json",
|
|
15046
15126
|
schemaSha256: "e8bd207be63eab23073cd47e41092f1d753c38d609383206e94334dd984b309c",
|
|
15047
15127
|
version: "0.1.0"
|
|
15128
|
+
},
|
|
15129
|
+
{
|
|
15130
|
+
description: "Source-backed HR evidence coverage matrix with gaps and conflicts.",
|
|
15131
|
+
id: "evidence-matrix",
|
|
15132
|
+
name: "Evidence Matrix",
|
|
15133
|
+
reviewPolicyRef: "./product/reviews/evidence-matrix.md",
|
|
15134
|
+
schemaRef: "./product/artifacts/schemas/evidence-matrix.schema.json",
|
|
15135
|
+
version: "0.1.0"
|
|
15136
|
+
},
|
|
15137
|
+
{
|
|
15138
|
+
description: "Structured interviewer brief with evidence-backed questions.",
|
|
15139
|
+
id: "interview-brief",
|
|
15140
|
+
name: "Interview Brief",
|
|
15141
|
+
reviewPolicyRef: "./product/reviews/interview-brief.md",
|
|
15142
|
+
schemaRef: "./product/artifacts/schemas/interview-brief.schema.json",
|
|
15143
|
+
version: "0.1.0"
|
|
15144
|
+
},
|
|
15145
|
+
{
|
|
15146
|
+
description: "Hiring risk review with uncertainty and decision guardrails.",
|
|
15147
|
+
id: "hiring-risk",
|
|
15148
|
+
name: "Hiring Risk Review",
|
|
15149
|
+
reviewPolicyRef: "./product/reviews/hiring-risk.md",
|
|
15150
|
+
schemaRef: "./product/artifacts/schemas/hiring-risk.schema.json",
|
|
15151
|
+
version: "0.1.0"
|
|
15152
|
+
},
|
|
15153
|
+
{
|
|
15154
|
+
description: "Reviewed proposal for promoting an accepted profile README revision.",
|
|
15155
|
+
id: "profile-update-proposal",
|
|
15156
|
+
name: "Profile Update Proposal",
|
|
15157
|
+
reviewPolicyRef: "./product/reviews/profile-update-proposal.md",
|
|
15158
|
+
schemaRef: "./product/artifacts/schemas/profile-update-proposal.schema.json",
|
|
15159
|
+
version: "0.1.0"
|
|
15048
15160
|
}
|
|
15049
15161
|
],
|
|
15050
15162
|
capabilities: [
|
|
@@ -15080,6 +15192,76 @@ var soul_app_manifest_default = {
|
|
|
15080
15192
|
"role-search",
|
|
15081
15193
|
"candidate"
|
|
15082
15194
|
]
|
|
15195
|
+
},
|
|
15196
|
+
{
|
|
15197
|
+
artifactTypes: [
|
|
15198
|
+
"evidence-matrix"
|
|
15199
|
+
],
|
|
15200
|
+
description: "Screen HR evidence into a coverage matrix with gaps, conflicts, and source boundaries.",
|
|
15201
|
+
id: "evidence-matrix",
|
|
15202
|
+
name: "Evidence Matrix",
|
|
15203
|
+
outputKind: "evidence-matrix",
|
|
15204
|
+
packRefs: [],
|
|
15205
|
+
promptRef: "./product/workflows/evidence-matrix/prompt.md",
|
|
15206
|
+
reviewRubricRef: "./product/workflows/evidence-matrix/review.md",
|
|
15207
|
+
version: "0.1.0",
|
|
15208
|
+
workspaceTypes: [
|
|
15209
|
+
"people-profile",
|
|
15210
|
+
"role-search",
|
|
15211
|
+
"candidate"
|
|
15212
|
+
]
|
|
15213
|
+
},
|
|
15214
|
+
{
|
|
15215
|
+
artifactTypes: [
|
|
15216
|
+
"interview-brief"
|
|
15217
|
+
],
|
|
15218
|
+
description: "Prepare a structured interviewer brief with evidence-backed questions.",
|
|
15219
|
+
id: "interview-brief",
|
|
15220
|
+
name: "Interview Brief",
|
|
15221
|
+
outputKind: "interview-brief",
|
|
15222
|
+
packRefs: [],
|
|
15223
|
+
promptRef: "./product/workflows/interview-brief/prompt.md",
|
|
15224
|
+
reviewRubricRef: "./product/workflows/interview-brief/review.md",
|
|
15225
|
+
version: "0.1.0",
|
|
15226
|
+
workspaceTypes: [
|
|
15227
|
+
"role-search",
|
|
15228
|
+
"candidate"
|
|
15229
|
+
]
|
|
15230
|
+
},
|
|
15231
|
+
{
|
|
15232
|
+
artifactTypes: [
|
|
15233
|
+
"hiring-risk"
|
|
15234
|
+
],
|
|
15235
|
+
description: "Summarize hiring risks, uncertainty, and decision guardrails without making the decision.",
|
|
15236
|
+
id: "hiring-risk",
|
|
15237
|
+
name: "Hiring Risk Review",
|
|
15238
|
+
outputKind: "hiring-risk",
|
|
15239
|
+
packRefs: [],
|
|
15240
|
+
promptRef: "./product/workflows/hiring-risk/prompt.md",
|
|
15241
|
+
reviewRubricRef: "./product/workflows/hiring-risk/review.md",
|
|
15242
|
+
version: "0.1.0",
|
|
15243
|
+
workspaceTypes: [
|
|
15244
|
+
"people-profile",
|
|
15245
|
+
"role-search",
|
|
15246
|
+
"candidate"
|
|
15247
|
+
]
|
|
15248
|
+
},
|
|
15249
|
+
{
|
|
15250
|
+
artifactTypes: [
|
|
15251
|
+
"profile-update-proposal"
|
|
15252
|
+
],
|
|
15253
|
+
description: "Propose a reviewed profile README revision while keeping promotion product-owned.",
|
|
15254
|
+
id: "profile-update-proposal",
|
|
15255
|
+
name: "Profile Update Proposal",
|
|
15256
|
+
outputKind: "profile-update-proposal",
|
|
15257
|
+
packRefs: [],
|
|
15258
|
+
promptRef: "./product/workflows/profile-update-proposal/prompt.md",
|
|
15259
|
+
reviewRubricRef: "./product/workflows/profile-update-proposal/review.md",
|
|
15260
|
+
version: "0.1.0",
|
|
15261
|
+
workspaceTypes: [
|
|
15262
|
+
"people-profile",
|
|
15263
|
+
"candidate"
|
|
15264
|
+
]
|
|
15083
15265
|
}
|
|
15084
15266
|
],
|
|
15085
15267
|
compatibility: {
|
|
@@ -15355,10 +15537,14 @@ var soul_app_manifest_default = {
|
|
|
15355
15537
|
workspaceTypes: [
|
|
15356
15538
|
{
|
|
15357
15539
|
artifactTypes: [
|
|
15358
|
-
"person-profile"
|
|
15540
|
+
"person-profile",
|
|
15541
|
+
"evidence-matrix",
|
|
15542
|
+
"hiring-risk",
|
|
15543
|
+
"profile-update-proposal"
|
|
15359
15544
|
],
|
|
15360
15545
|
defaultCapabilityIds: [
|
|
15361
|
-
"person-profile"
|
|
15546
|
+
"person-profile",
|
|
15547
|
+
"profile-update-proposal"
|
|
15362
15548
|
],
|
|
15363
15549
|
description: "Profile-centered workspace for one person lifecycle.",
|
|
15364
15550
|
id: "people-profile",
|
|
@@ -15366,10 +15552,15 @@ var soul_app_manifest_default = {
|
|
|
15366
15552
|
},
|
|
15367
15553
|
{
|
|
15368
15554
|
artifactTypes: [
|
|
15369
|
-
"candidate-screen"
|
|
15555
|
+
"candidate-screen",
|
|
15556
|
+
"evidence-matrix",
|
|
15557
|
+
"interview-brief",
|
|
15558
|
+
"hiring-risk",
|
|
15559
|
+
"profile-update-proposal"
|
|
15370
15560
|
],
|
|
15371
15561
|
defaultCapabilityIds: [
|
|
15372
|
-
"candidate-screen"
|
|
15562
|
+
"candidate-screen",
|
|
15563
|
+
"profile-update-proposal"
|
|
15373
15564
|
],
|
|
15374
15565
|
description: "Recruiting role workspace with candidate evidence and review.",
|
|
15375
15566
|
id: "role-search",
|
|
@@ -15377,10 +15568,15 @@ var soul_app_manifest_default = {
|
|
|
15377
15568
|
},
|
|
15378
15569
|
{
|
|
15379
15570
|
artifactTypes: [
|
|
15380
|
-
"candidate-screen"
|
|
15571
|
+
"candidate-screen",
|
|
15572
|
+
"evidence-matrix",
|
|
15573
|
+
"interview-brief",
|
|
15574
|
+
"hiring-risk",
|
|
15575
|
+
"profile-update-proposal"
|
|
15381
15576
|
],
|
|
15382
15577
|
defaultCapabilityIds: [
|
|
15383
|
-
"candidate-screen"
|
|
15578
|
+
"candidate-screen",
|
|
15579
|
+
"profile-update-proposal"
|
|
15384
15580
|
],
|
|
15385
15581
|
description: "Focused candidate packet workspace.",
|
|
15386
15582
|
id: "candidate",
|