@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",
|
|
@@ -12,14 +12,16 @@ capabilities:
|
|
|
12
12
|
Use this skill when the workspace profile represents a candidate or candidate
|
|
13
13
|
pool member.
|
|
14
14
|
|
|
15
|
-
##
|
|
15
|
+
## Artifact Contract
|
|
16
16
|
|
|
17
|
-
-
|
|
18
|
-
-
|
|
17
|
+
- Produce a candidate-focused People Profile artifact for HR review.
|
|
18
|
+
- Read the accepted profile surface when available to avoid contradicting reviewed state.
|
|
19
|
+
- Treat files under `artifacts/` as proposed or supporting work products until HR product review.
|
|
19
20
|
- Keep confirmed facts, missing evidence, weak signals, and next HR actions
|
|
20
21
|
separate.
|
|
21
22
|
- Do not infer protected-class attributes, personal judgments, or employment
|
|
22
23
|
commitments.
|
|
24
|
+
- Do not update accepted profile state directly.
|
|
23
25
|
|
|
24
26
|
## Output Shape
|
|
25
27
|
|
|
@@ -12,6 +12,10 @@ capabilities:
|
|
|
12
12
|
Use this skill to evaluate resumes, ATS packets, interview notes, employee
|
|
13
13
|
records, or lifecycle touchpoints before they influence a People Profile.
|
|
14
14
|
|
|
15
|
+
This skill produces an evidence matrix artifact. HR product logic may later
|
|
16
|
+
reference that artifact from a profile update proposal, but the matrix itself is
|
|
17
|
+
supporting material until reviewed.
|
|
18
|
+
|
|
15
19
|
## Screening Standard
|
|
16
20
|
|
|
17
21
|
- Tie every positive or negative signal to source evidence.
|
|
@@ -9,8 +9,8 @@ capabilities:
|
|
|
9
9
|
|
|
10
10
|
# Hiring Risk Review
|
|
11
11
|
|
|
12
|
-
Use this skill
|
|
13
|
-
|
|
12
|
+
Use this skill to produce a hiring risk review artifact for a proposed HR
|
|
13
|
+
artifact before HR product review promotes or references it.
|
|
14
14
|
|
|
15
15
|
## Risk Review Rules
|
|
16
16
|
|
|
@@ -24,6 +24,9 @@ People Profile.
|
|
|
24
24
|
|
|
25
25
|
## Output Shape
|
|
26
26
|
|
|
27
|
+
The verdict is a recommendation for HR product review; it is not the promotion
|
|
28
|
+
operation itself.
|
|
29
|
+
|
|
27
30
|
Return:
|
|
28
31
|
|
|
29
32
|
1. Verdict recommendation: pass, warn, fail, or needs_review
|
|
@@ -12,6 +12,10 @@ capabilities:
|
|
|
12
12
|
Use this skill when preparing an interview plan from a Candidate Profile or
|
|
13
13
|
candidate evidence packet.
|
|
14
14
|
|
|
15
|
+
This skill produces an interview brief artifact for human panels. It can inform
|
|
16
|
+
future People Profile proposals, but it does not directly change accepted
|
|
17
|
+
profile state or make a hiring decision.
|
|
18
|
+
|
|
15
19
|
## Interview Guidance
|
|
16
20
|
|
|
17
21
|
- Use role-relevant evidence and open questions from the profile.
|
|
@@ -14,11 +14,12 @@ People Profile.
|
|
|
14
14
|
|
|
15
15
|
## Rules
|
|
16
16
|
|
|
17
|
-
- Read
|
|
17
|
+
- Read the accepted profile surface first when available to understand the reviewed baseline.
|
|
18
18
|
- Write proposed changes under `artifacts/<sessionId>/`.
|
|
19
|
-
-
|
|
20
|
-
|
|
21
|
-
-
|
|
19
|
+
- Produce a complete reviewable proposal with source references, open questions,
|
|
20
|
+
risks, and exact requested review decision.
|
|
21
|
+
- Do not update `README.md` or any accepted profile surface directly.
|
|
22
|
+
- Preserve human decision ownership for promotion.
|
|
22
23
|
|
|
23
24
|
## Proposal Checklist
|
|
24
25
|
|
|
@@ -27,3 +28,29 @@ People Profile.
|
|
|
27
28
|
- Which facts are still missing?
|
|
28
29
|
- Which risks need HR or legal review?
|
|
29
30
|
- What exact review decision is needed before promotion?
|
|
31
|
+
|
|
32
|
+
## Accepted Profile Draft
|
|
33
|
+
|
|
34
|
+
When the proposal is intended for promotion, include one fenced block with the
|
|
35
|
+
exact `README.md` candidate profile draft the HR product may promote after
|
|
36
|
+
review:
|
|
37
|
+
|
|
38
|
+
```aiworker-profile-readme
|
|
39
|
+
# <Profile name>
|
|
40
|
+
|
|
41
|
+
> Accepted People Profile for this HR workspace.
|
|
42
|
+
|
|
43
|
+
...
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
Keep review rationale, evidence commentary, rejected claims, pending-review
|
|
47
|
+
state, and requested promotion decisions outside this fenced block so product
|
|
48
|
+
promotion can promote only the accepted profile state.
|
|
49
|
+
|
|
50
|
+
The fenced draft must be internally consistent. If it includes accepted facts or
|
|
51
|
+
is intended for `pass` / `warn` promotion, its `Review State` must describe the
|
|
52
|
+
accepted state after approval, not the pending proposal request. Do not leave
|
|
53
|
+
`No approved profile revision yet`, `Starter People Profile`, `replace this
|
|
54
|
+
scaffold`, `Agent outputs remain proposals until review`, `promotion requested`,
|
|
55
|
+
`pending human review`, `ready for HR review`, or any other approval-waiting
|
|
56
|
+
wording in a draft that otherwise contains accepted profile facts.
|
|
@@ -15,12 +15,20 @@ This workspace belongs to an AIWorker HR profile ledger.
|
|
|
15
15
|
- If a result should change the accepted profile, write a reviewable artifact and request human review.
|
|
16
16
|
- Human review plus HR policy is the only path that may promote an artifact into `README.md`.
|
|
17
17
|
|
|
18
|
+
## Product Artifact Loop
|
|
19
|
+
|
|
20
|
+
- Native skills produce reviewable artifacts; they do not own accepted profile state.
|
|
21
|
+
- HR product logic decides how an artifact is interpreted, reviewed, referenced, or promoted.
|
|
22
|
+
- `README.md` is the accepted People Profile for this HR product, not a generic Soul App assumption.
|
|
23
|
+
- Supporting artifacts may inform future profile proposals without becoming accepted profile state.
|
|
24
|
+
- Profile promotion requires HR product review and may only update `README.md` through the reviewed promotion path.
|
|
25
|
+
|
|
18
26
|
## Action and Skill Binding
|
|
19
27
|
|
|
20
28
|
- When a session is started from a Soul App action, treat that action as an explicit skill selection.
|
|
21
|
-
- Follow the selected skill purpose, expected inputs, output shape, and review boundary.
|
|
22
|
-
- Do not silently switch to another skill.
|
|
23
|
-
- If the request appears to require a different skill, explain the mismatch and ask the user to confirm whether to continue, switch, or start a
|
|
29
|
+
- Follow the selected skill purpose, expected inputs, artifact output shape, and review boundary.
|
|
30
|
+
- Do not silently switch to another skill or turn a supporting artifact into accepted profile state.
|
|
31
|
+
- If the request appears to require a different skill or a product promotion decision, explain the mismatch and ask the user to confirm whether to continue, switch, or start a review path.
|
|
24
32
|
- When no action or skill is explicitly selected, choose the most relevant available HR skill when useful.
|
|
25
33
|
- If no skill fits, continue as a general HR workspace session and keep outputs within the same artifact and review rules.
|
|
26
34
|
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# HR Artifact Product Policy
|
|
2
|
+
|
|
3
|
+
AIWorker HR treats native skills as artifact producers. HR product logic owns
|
|
4
|
+
how artifacts are interpreted, reviewed, referenced, or promoted into accepted
|
|
5
|
+
People Profile state.
|
|
6
|
+
|
|
7
|
+
## Accepted State
|
|
8
|
+
|
|
9
|
+
- Accepted state: People Profile.
|
|
10
|
+
- Accepted state surface: workspace `README.md`.
|
|
11
|
+
- Proposal location: `artifacts/<sessionId>/`.
|
|
12
|
+
- Review record location: `reviews/*.md`.
|
|
13
|
+
- Promotion gate: HR product review with `pass` or `warn`.
|
|
14
|
+
|
|
15
|
+
This README convention belongs to AIWorker HR. Other Soul Apps may use different
|
|
16
|
+
accepted state surfaces.
|
|
17
|
+
|
|
18
|
+
## Artifact Taxonomy
|
|
19
|
+
|
|
20
|
+
| Artifact | Native skill | Product meaning |
|
|
21
|
+
| --- | --- | --- |
|
|
22
|
+
| Candidate profile artifact | `candidate-profile` | Candidate-focused profile work product. May propose profile section changes after review. |
|
|
23
|
+
| Evidence matrix | `evidence-screening` | Supporting evidence artifact. May be referenced by profile proposals. |
|
|
24
|
+
| Interview brief | `interview-brief` | Supporting artifact for interview planning. May feed profile next actions only after review. |
|
|
25
|
+
| Hiring risk review | `hiring-risk-review` | Promotion guard artifact. Reviews whether another artifact is safe to promote or reference. |
|
|
26
|
+
| Profile update proposal | `profile-update-proposal` | Direct candidate for People Profile promotion when HR product review passes or warns. |
|
|
27
|
+
|
|
28
|
+
## Promotion Rules
|
|
29
|
+
|
|
30
|
+
- Unknown artifact kinds remain session artifacts.
|
|
31
|
+
- Supporting artifacts do not update accepted profile state directly.
|
|
32
|
+
- A profile update proposal must preserve source references, open questions,
|
|
33
|
+
risks, and the requested human decision.
|
|
34
|
+
- Protected-class inference, unsupported personal judgment, copied sensitive
|
|
35
|
+
evidence, or unapproved employment commitments block promotion.
|
|
36
|
+
- Host records metadata and review events, but HR owns profile meaning.
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"title": "AIWorker HR Evidence 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
|
+
"gaps": {
|
|
38
|
+
"type": "array",
|
|
39
|
+
"items": {
|
|
40
|
+
"type": "string"
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"conflicts": {
|
|
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 Hiring Risk Review",
|
|
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
|
+
"guardrails": {
|
|
44
|
+
"type": "array",
|
|
45
|
+
"items": {
|
|
46
|
+
"type": "string"
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"title": "AIWorker HR Interview Brief",
|
|
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
|
+
"questions": {
|
|
38
|
+
"type": "array",
|
|
39
|
+
"items": {
|
|
40
|
+
"type": "object",
|
|
41
|
+
"additionalProperties": true
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"nextActions": {
|
|
45
|
+
"type": "array",
|
|
46
|
+
"items": {
|
|
47
|
+
"type": "string"
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
package/official-apps/aiworker-hr/product/artifacts/schemas/profile-update-proposal.schema.json
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"title": "AIWorker HR Profile Update Proposal",
|
|
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
|
+
"proposedReadme": {
|
|
38
|
+
"type": "string"
|
|
39
|
+
},
|
|
40
|
+
"reviewState": {
|
|
41
|
+
"type": "string"
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|