@rosetears/aili-pi 0.1.8 → 0.1.10
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 +7 -7
- package/THIRD_PARTY_NOTICES.md +12 -12
- package/docs/persistent-agents.md +114 -0
- package/extensions/matrix/index.ts +24 -8
- package/extensions/zentui/config.ts +13 -13
- package/extensions/zentui/format.ts +15 -1
- package/extensions/zentui/gradient.ts +22 -13
- package/extensions/zentui/tool-execution.ts +7 -4
- package/manifests/adapter-evidence.json +53 -20
- package/manifests/capabilities.json +3 -3
- package/manifests/live-verification.json +18 -19
- package/manifests/provenance.json +12 -12
- package/manifests/roles.json +270 -57
- package/manifests/sbom.json +1 -128
- package/manifests/skill-compatibility.json +57 -61
- package/manifests/subagent-provenance.json +8 -15
- package/package.json +3 -3
- package/roles/agent-evaluator.md +8 -3
- package/roles/ai-regression-scout.md +8 -3
- package/roles/browser-qa-runner.md +8 -3
- package/roles/code-reviewer.md +8 -3
- package/roles/code-scout.md +8 -3
- package/roles/convergence-reviewer.md +8 -3
- package/roles/doc-researcher.md +8 -3
- package/roles/e2e-artifact-runner.md +8 -3
- package/roles/general.md +49 -0
- package/roles/implementer.md +8 -3
- package/roles/opensource-sanitizer.md +8 -3
- package/roles/plan-auditor.md +8 -3
- package/roles/pr-test-analyzer.md +8 -3
- package/roles/security-auditor.md +8 -3
- package/roles/silent-failure-reviewer.md +8 -3
- package/roles/spec-miner.md +8 -3
- package/roles/test-coverage-reviewer.md +8 -3
- package/roles/test-engineer.md +8 -3
- package/roles/web-performance-auditor.md +8 -3
- package/roles/web-researcher.md +8 -3
- package/scripts/sync-roles.ts +186 -24
- package/src/runtime/doctor.ts +38 -10
- package/src/runtime/global-resources.ts +5 -1
- package/src/runtime/index.ts +2 -2
- package/src/runtime/persistent-agents/hub.ts +429 -0
- package/src/runtime/persistent-agents/model-selection.ts +363 -0
- package/src/runtime/persistent-agents/output-delivery.ts +356 -0
- package/src/runtime/persistent-agents/permission.ts +223 -0
- package/src/runtime/persistent-agents/policy.ts +311 -0
- package/src/runtime/persistent-agents/production.ts +569 -0
- package/src/runtime/persistent-agents/runtime.ts +164 -0
- package/src/runtime/persistent-agents/sandbox.ts +68 -0
- package/src/runtime/persistent-agents/scheduler.ts +190 -0
- package/src/runtime/persistent-agents/session-factory.ts +184 -0
- package/src/runtime/persistent-agents/storage.ts +775 -0
- package/src/runtime/persistent-agents/task-coordinator.ts +460 -0
- package/src/runtime/persistent-agents/task-schema.ts +141 -0
- package/src/runtime/persistent-agents/types.ts +134 -0
- package/src/runtime/persistent-agents/workspace.ts +335 -0
- package/src/runtime/registry.ts +28 -32
- package/src/runtime/roles.ts +211 -18
- package/src/runtime/rose-context.ts +1 -1
- package/templates/APPEND_SYSTEM.md +1 -1
- package/themes/rose-cyberdeck.json +5 -9
- package/upstream/opencode-global-agents.lock.json +1 -1
- package/src/runtime/subagents.ts +0 -249
package/manifests/roles.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"schemaVersion":
|
|
2
|
+
"schemaVersion": 2,
|
|
3
3
|
"source": {
|
|
4
4
|
"repository": "https://github.com/Rosetears520/aili-workflows.git",
|
|
5
5
|
"commit": "7eb35f357ad489f5841ee10dac1e44549c1bdb76"
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"name": "agent-evaluator",
|
|
20
20
|
"description": "Read-only agent evaluator subagent. Evaluates agent/subagent outputs for task fit, evidence quality, claim hygiene, missed constraints, overclaiming, and handoff usability without redoing the task.",
|
|
21
21
|
"profilePath": "roles/agent-evaluator.md",
|
|
22
|
-
"profileHash": "
|
|
22
|
+
"profileHash": "2d0d7c65f0f2e3e9267a1ee177e1c2270abf8248f6713fc9938a0598dda73993",
|
|
23
23
|
"sourcePath": "agents/agent-evaluator.md",
|
|
24
24
|
"sourceHash": "f0d40875475a00f6578e9a07a36a60c02607be1e48c5056bad572a86f83baf66",
|
|
25
25
|
"tools": [
|
|
@@ -34,16 +34,23 @@
|
|
|
34
34
|
"status": "adapted",
|
|
35
35
|
"compatibilityReason": "Source role is safely narrowed to Pi read-only tools with application-level credential/path guards.",
|
|
36
36
|
"sourceFrontmatterDisposition": {
|
|
37
|
-
"mode": "
|
|
37
|
+
"mode": "translated into a parent-scoped persistent official Pi Agent session",
|
|
38
38
|
"hidden": "not interpreted by Pi",
|
|
39
39
|
"permission": "translated into the explicit Pi tool/capability ceiling; source YAML is never executed"
|
|
40
|
-
}
|
|
40
|
+
},
|
|
41
|
+
"selector": "aili.agent-evaluator",
|
|
42
|
+
"profileVersion": 2,
|
|
43
|
+
"runtimeAdapterVersion": 2,
|
|
44
|
+
"sourceKind": "canonical-adapter",
|
|
45
|
+
"toolPolicy": "static",
|
|
46
|
+
"spawns": [],
|
|
47
|
+
"blocking": false
|
|
41
48
|
},
|
|
42
49
|
{
|
|
43
50
|
"name": "ai-regression-scout",
|
|
44
51
|
"description": "Read-only AI regression scout. Use for prompt, agent, skill, model-routing, workflow, or generated-output changes that need regression risk discovery and focused test scenarios.",
|
|
45
52
|
"profilePath": "roles/ai-regression-scout.md",
|
|
46
|
-
"profileHash": "
|
|
53
|
+
"profileHash": "b38e7dbb3b70f448e1e161ce3297d10879d3450d10a99ca63b490081bdf2e9e1",
|
|
47
54
|
"sourcePath": "agents/ai-regression-scout.md",
|
|
48
55
|
"sourceHash": "2a7e68db0b12abab95e7db91db2f91c85583ba02f39b7f45c6e223b48f4ac976",
|
|
49
56
|
"tools": [
|
|
@@ -58,16 +65,23 @@
|
|
|
58
65
|
"status": "adapted",
|
|
59
66
|
"compatibilityReason": "Source role is safely narrowed to Pi read-only tools with application-level credential/path guards.",
|
|
60
67
|
"sourceFrontmatterDisposition": {
|
|
61
|
-
"mode": "
|
|
68
|
+
"mode": "translated into a parent-scoped persistent official Pi Agent session",
|
|
62
69
|
"hidden": "not interpreted by Pi",
|
|
63
70
|
"permission": "translated into the explicit Pi tool/capability ceiling; source YAML is never executed"
|
|
64
|
-
}
|
|
71
|
+
},
|
|
72
|
+
"selector": "aili.ai-regression-scout",
|
|
73
|
+
"profileVersion": 2,
|
|
74
|
+
"runtimeAdapterVersion": 2,
|
|
75
|
+
"sourceKind": "canonical-adapter",
|
|
76
|
+
"toolPolicy": "static",
|
|
77
|
+
"spawns": [],
|
|
78
|
+
"blocking": false
|
|
65
79
|
},
|
|
66
80
|
{
|
|
67
81
|
"name": "browser-qa-runner",
|
|
68
82
|
"description": "Browser QA test runner for local UI verification. Use for browser-rendered flows, DOM/accessibility/console/network checks, screenshots, and manual Playwright evidence when production mutation is forbidden.",
|
|
69
83
|
"profilePath": "roles/browser-qa-runner.md",
|
|
70
|
-
"profileHash": "
|
|
84
|
+
"profileHash": "c1ea7f7c94c2a75b915d3597fc3a04058e3f4cbcac3fac1d6358a299d7de23d8",
|
|
71
85
|
"sourcePath": "agents/browser-qa-runner.md",
|
|
72
86
|
"sourceHash": "b7d4e97bf61de4258f65ef18d5ad39a115700f41c64e9978b9d9459e63fa2356",
|
|
73
87
|
"tools": [
|
|
@@ -83,16 +97,23 @@
|
|
|
83
97
|
"status": "optional",
|
|
84
98
|
"compatibilityReason": "Optional capabilities are required: browser.qa.",
|
|
85
99
|
"sourceFrontmatterDisposition": {
|
|
86
|
-
"mode": "
|
|
100
|
+
"mode": "translated into a parent-scoped persistent official Pi Agent session",
|
|
87
101
|
"hidden": "not interpreted by Pi",
|
|
88
102
|
"permission": "translated into the explicit Pi tool/capability ceiling; source YAML is never executed"
|
|
89
|
-
}
|
|
103
|
+
},
|
|
104
|
+
"selector": "aili.browser-qa-runner",
|
|
105
|
+
"profileVersion": 2,
|
|
106
|
+
"runtimeAdapterVersion": 2,
|
|
107
|
+
"sourceKind": "canonical-adapter",
|
|
108
|
+
"toolPolicy": "static",
|
|
109
|
+
"spawns": [],
|
|
110
|
+
"blocking": false
|
|
90
111
|
},
|
|
91
112
|
{
|
|
92
113
|
"name": "code-reviewer",
|
|
93
114
|
"description": "Senior code reviewer that evaluates changes across five dimensions — correctness, readability, architecture, security, and performance. Use for thorough code review before merge.",
|
|
94
115
|
"profilePath": "roles/code-reviewer.md",
|
|
95
|
-
"profileHash": "
|
|
116
|
+
"profileHash": "832f3d6f1b473f282de498c38892d3fde3ce20aa855294c4d4c71790eb9e6bd0",
|
|
96
117
|
"sourcePath": "agents/code-reviewer.md",
|
|
97
118
|
"sourceHash": "64c278b5df9947289baacfe9587982c0000b330df145bdb372eb614bf8ac8395",
|
|
98
119
|
"tools": [
|
|
@@ -107,16 +128,23 @@
|
|
|
107
128
|
"status": "adapted",
|
|
108
129
|
"compatibilityReason": "Source role is safely narrowed to Pi read-only tools with application-level credential/path guards.",
|
|
109
130
|
"sourceFrontmatterDisposition": {
|
|
110
|
-
"mode": "
|
|
131
|
+
"mode": "translated into a parent-scoped persistent official Pi Agent session",
|
|
111
132
|
"hidden": "not interpreted by Pi",
|
|
112
133
|
"permission": "translated into the explicit Pi tool/capability ceiling; source YAML is never executed"
|
|
113
|
-
}
|
|
134
|
+
},
|
|
135
|
+
"selector": "aili.code-reviewer",
|
|
136
|
+
"profileVersion": 2,
|
|
137
|
+
"runtimeAdapterVersion": 2,
|
|
138
|
+
"sourceKind": "canonical-adapter",
|
|
139
|
+
"toolPolicy": "static",
|
|
140
|
+
"spawns": [],
|
|
141
|
+
"blocking": false
|
|
114
142
|
},
|
|
115
143
|
{
|
|
116
144
|
"name": "code-scout",
|
|
117
145
|
"description": "Read-only code scouting subagent. Locates files, symbols, tests, call paths, patterns, docs, schemas, config, and constraints for another agent. Returns concise evidence anchors only; never edits, plans, reviews, or implements.",
|
|
118
146
|
"profilePath": "roles/code-scout.md",
|
|
119
|
-
"profileHash": "
|
|
147
|
+
"profileHash": "4c01daf22981336035f59d1464d058de1280a678f7044fb5cc4dd2d0841da9fa",
|
|
120
148
|
"sourcePath": "agents/code-scout.md",
|
|
121
149
|
"sourceHash": "228ccfbfed0979ffbebcad2d5895b0c8a28f9eb5340259e575e810ac858ac880",
|
|
122
150
|
"tools": [
|
|
@@ -131,16 +159,23 @@
|
|
|
131
159
|
"status": "adapted",
|
|
132
160
|
"compatibilityReason": "Source role is safely narrowed to Pi read-only tools with application-level credential/path guards.",
|
|
133
161
|
"sourceFrontmatterDisposition": {
|
|
134
|
-
"mode": "
|
|
162
|
+
"mode": "translated into a parent-scoped persistent official Pi Agent session",
|
|
135
163
|
"hidden": "not interpreted by Pi",
|
|
136
164
|
"permission": "translated into the explicit Pi tool/capability ceiling; source YAML is never executed"
|
|
137
|
-
}
|
|
165
|
+
},
|
|
166
|
+
"selector": "aili.code-scout",
|
|
167
|
+
"profileVersion": 2,
|
|
168
|
+
"runtimeAdapterVersion": 2,
|
|
169
|
+
"sourceKind": "canonical-adapter",
|
|
170
|
+
"toolPolicy": "static",
|
|
171
|
+
"spawns": [],
|
|
172
|
+
"blocking": false
|
|
138
173
|
},
|
|
139
174
|
{
|
|
140
175
|
"name": "convergence-reviewer",
|
|
141
176
|
"description": "Read-only convergence reviewer. Compares accepted source artifacts, tasks, progress, drift records, final diff, review findings, and verification evidence for formal or multi-phase work to detect missing, partial, contradictory, unrequested, pseudo-complete, unchecked-task, stale-progress, or evidence-gap issues.",
|
|
142
177
|
"profilePath": "roles/convergence-reviewer.md",
|
|
143
|
-
"profileHash": "
|
|
178
|
+
"profileHash": "fe205547225258255baf9638a2a1b775c053d70672224b1cdd17014c07da068a",
|
|
144
179
|
"sourcePath": "agents/convergence-reviewer.md",
|
|
145
180
|
"sourceHash": "2616bef95ddc8d7d2977e55f963a4bfbee332dca20849e188e6b89016282ae39",
|
|
146
181
|
"tools": [
|
|
@@ -155,16 +190,23 @@
|
|
|
155
190
|
"status": "adapted",
|
|
156
191
|
"compatibilityReason": "Source role is safely narrowed to Pi read-only tools with application-level credential/path guards.",
|
|
157
192
|
"sourceFrontmatterDisposition": {
|
|
158
|
-
"mode": "
|
|
193
|
+
"mode": "translated into a parent-scoped persistent official Pi Agent session",
|
|
159
194
|
"hidden": "not interpreted by Pi",
|
|
160
195
|
"permission": "translated into the explicit Pi tool/capability ceiling; source YAML is never executed"
|
|
161
|
-
}
|
|
196
|
+
},
|
|
197
|
+
"selector": "aili.convergence-reviewer",
|
|
198
|
+
"profileVersion": 2,
|
|
199
|
+
"runtimeAdapterVersion": 2,
|
|
200
|
+
"sourceKind": "canonical-adapter",
|
|
201
|
+
"toolPolicy": "static",
|
|
202
|
+
"spawns": [],
|
|
203
|
+
"blocking": false
|
|
162
204
|
},
|
|
163
205
|
{
|
|
164
206
|
"name": "doc-researcher",
|
|
165
207
|
"description": "Read-only local documentation research subagent. Searches AGENTS.md, rose.md, skills, OpenSpec changes, README, docs, design notes, and project-local guidance; never edits, implements, reviews, or uses web access.",
|
|
166
208
|
"profilePath": "roles/doc-researcher.md",
|
|
167
|
-
"profileHash": "
|
|
209
|
+
"profileHash": "c0939a54b34252ecea0cbb5f946b4aff8af527ab043900bdd6fc2c06a32619c7",
|
|
168
210
|
"sourcePath": "agents/doc-researcher.md",
|
|
169
211
|
"sourceHash": "ac0946cab7b4c0583c6aae23933a4b41e157fbb5063d1c9f32190e4ca445bcf8",
|
|
170
212
|
"tools": [
|
|
@@ -179,16 +221,23 @@
|
|
|
179
221
|
"status": "adapted",
|
|
180
222
|
"compatibilityReason": "Source role is safely narrowed to Pi read-only tools with application-level credential/path guards.",
|
|
181
223
|
"sourceFrontmatterDisposition": {
|
|
182
|
-
"mode": "
|
|
224
|
+
"mode": "translated into a parent-scoped persistent official Pi Agent session",
|
|
183
225
|
"hidden": "not interpreted by Pi",
|
|
184
226
|
"permission": "translated into the explicit Pi tool/capability ceiling; source YAML is never executed"
|
|
185
|
-
}
|
|
227
|
+
},
|
|
228
|
+
"selector": "aili.doc-researcher",
|
|
229
|
+
"profileVersion": 2,
|
|
230
|
+
"runtimeAdapterVersion": 2,
|
|
231
|
+
"sourceKind": "canonical-adapter",
|
|
232
|
+
"toolPolicy": "static",
|
|
233
|
+
"spawns": [],
|
|
234
|
+
"blocking": false
|
|
186
235
|
},
|
|
187
236
|
{
|
|
188
237
|
"name": "e2e-artifact-runner",
|
|
189
238
|
"description": "E2E artifact runner for traces, videos, screenshots, reports, and failure bundles. Use when an end-to-end run needs controlled artifact placement and evidence packaging without production mutation.",
|
|
190
239
|
"profilePath": "roles/e2e-artifact-runner.md",
|
|
191
|
-
"profileHash": "
|
|
240
|
+
"profileHash": "32ac4946c64c186656679238fe4d74e4a24d4404b4f57931d7bc8d251c60fdef",
|
|
192
241
|
"sourcePath": "agents/e2e-artifact-runner.md",
|
|
193
242
|
"sourceHash": "3562dafdda2e57fd9ee34d2608a7a86249e33587ad61b5e14325b7cf2a1f11f2",
|
|
194
243
|
"tools": [
|
|
@@ -205,16 +254,23 @@
|
|
|
205
254
|
"status": "optional",
|
|
206
255
|
"compatibilityReason": "Optional capabilities are required: browser.qa, artifact.store.",
|
|
207
256
|
"sourceFrontmatterDisposition": {
|
|
208
|
-
"mode": "
|
|
257
|
+
"mode": "translated into a parent-scoped persistent official Pi Agent session",
|
|
209
258
|
"hidden": "not interpreted by Pi",
|
|
210
259
|
"permission": "translated into the explicit Pi tool/capability ceiling; source YAML is never executed"
|
|
211
|
-
}
|
|
260
|
+
},
|
|
261
|
+
"selector": "aili.e2e-artifact-runner",
|
|
262
|
+
"profileVersion": 2,
|
|
263
|
+
"runtimeAdapterVersion": 2,
|
|
264
|
+
"sourceKind": "canonical-adapter",
|
|
265
|
+
"toolPolicy": "static",
|
|
266
|
+
"spawns": [],
|
|
267
|
+
"blocking": false
|
|
212
268
|
},
|
|
213
269
|
{
|
|
214
270
|
"name": "implementer",
|
|
215
271
|
"description": "Adaptive implementation subagent for one scoped code-change task. Handles task-scoped local edits through deeper cross-module implementation, writes production code/tests/verification evidence, and stays inside assigned acceptance boundaries.",
|
|
216
272
|
"profilePath": "roles/implementer.md",
|
|
217
|
-
"profileHash": "
|
|
273
|
+
"profileHash": "38373bf87a9df7d401118d5cd5a979cf10222207c71b77939673c6826d8b9de2",
|
|
218
274
|
"sourcePath": "agents/implementer.md",
|
|
219
275
|
"sourceHash": "be0dc430774292a42452bd26fe107579396db48f127ed57d20611d36d9492917",
|
|
220
276
|
"tools": [
|
|
@@ -229,16 +285,23 @@
|
|
|
229
285
|
"status": "adapted",
|
|
230
286
|
"compatibilityReason": "Source edit semantics are mapped to Pi write/edit under parent, role, mode, canonical-root, explicit task-boundary, credential, and headless fail-closed guards; source bash semantics are not granted.",
|
|
231
287
|
"sourceFrontmatterDisposition": {
|
|
232
|
-
"mode": "
|
|
288
|
+
"mode": "translated into a parent-scoped persistent official Pi Agent session",
|
|
233
289
|
"hidden": "not interpreted by Pi",
|
|
234
290
|
"permission": "translated into the explicit Pi tool/capability ceiling; source YAML is never executed"
|
|
235
|
-
}
|
|
291
|
+
},
|
|
292
|
+
"selector": "aili.implementer",
|
|
293
|
+
"profileVersion": 2,
|
|
294
|
+
"runtimeAdapterVersion": 2,
|
|
295
|
+
"sourceKind": "canonical-adapter",
|
|
296
|
+
"toolPolicy": "static",
|
|
297
|
+
"spawns": [],
|
|
298
|
+
"blocking": false
|
|
236
299
|
},
|
|
237
300
|
{
|
|
238
301
|
"name": "opensource-sanitizer",
|
|
239
302
|
"description": "Read-only open-source release sanitizer subagent. Checks public, npm, and package exposure risks with redacted evidence; never publishes, rewrites history, or prints full secrets.",
|
|
240
303
|
"profilePath": "roles/opensource-sanitizer.md",
|
|
241
|
-
"profileHash": "
|
|
304
|
+
"profileHash": "b5ca4a6ae7ab85e8f838aa1edceee25ede1cb441ab023353530366549eb6ff8e",
|
|
242
305
|
"sourcePath": "agents/opensource-sanitizer.md",
|
|
243
306
|
"sourceHash": "9fe5effb77d7cff827fee76066e8375e4e255600fb03352b6411999bfa680d85",
|
|
244
307
|
"tools": [
|
|
@@ -253,16 +316,23 @@
|
|
|
253
316
|
"status": "adapted",
|
|
254
317
|
"compatibilityReason": "Source role is safely narrowed to Pi read-only tools with application-level credential/path guards.",
|
|
255
318
|
"sourceFrontmatterDisposition": {
|
|
256
|
-
"mode": "
|
|
319
|
+
"mode": "translated into a parent-scoped persistent official Pi Agent session",
|
|
257
320
|
"hidden": "not interpreted by Pi",
|
|
258
321
|
"permission": "translated into the explicit Pi tool/capability ceiling; source YAML is never executed"
|
|
259
|
-
}
|
|
322
|
+
},
|
|
323
|
+
"selector": "aili.opensource-sanitizer",
|
|
324
|
+
"profileVersion": 2,
|
|
325
|
+
"runtimeAdapterVersion": 2,
|
|
326
|
+
"sourceKind": "canonical-adapter",
|
|
327
|
+
"toolPolicy": "static",
|
|
328
|
+
"spawns": [],
|
|
329
|
+
"blocking": false
|
|
260
330
|
},
|
|
261
331
|
{
|
|
262
332
|
"name": "plan-auditor",
|
|
263
333
|
"description": "Read-only plan auditor subagent. Checks specs, plans, task breakdowns, acceptance criteria, test plans, and change packages for gaps, conflicts, overengineering, and verification weaknesses before implementation.",
|
|
264
334
|
"profilePath": "roles/plan-auditor.md",
|
|
265
|
-
"profileHash": "
|
|
335
|
+
"profileHash": "8081eab6bd0937878c9014b23b0634c5f137fb41d0395a15334d473b480f0398",
|
|
266
336
|
"sourcePath": "agents/plan-auditor.md",
|
|
267
337
|
"sourceHash": "2a0f2fef9fed8e1c97908b94586378337d232b1c2eaec8ddf3666b2639a2e66e",
|
|
268
338
|
"tools": [
|
|
@@ -277,16 +347,23 @@
|
|
|
277
347
|
"status": "adapted",
|
|
278
348
|
"compatibilityReason": "Source role is safely narrowed to Pi read-only tools with application-level credential/path guards.",
|
|
279
349
|
"sourceFrontmatterDisposition": {
|
|
280
|
-
"mode": "
|
|
350
|
+
"mode": "translated into a parent-scoped persistent official Pi Agent session",
|
|
281
351
|
"hidden": "not interpreted by Pi",
|
|
282
352
|
"permission": "translated into the explicit Pi tool/capability ceiling; source YAML is never executed"
|
|
283
|
-
}
|
|
353
|
+
},
|
|
354
|
+
"selector": "aili.plan-auditor",
|
|
355
|
+
"profileVersion": 2,
|
|
356
|
+
"runtimeAdapterVersion": 2,
|
|
357
|
+
"sourceKind": "canonical-adapter",
|
|
358
|
+
"toolPolicy": "static",
|
|
359
|
+
"spawns": [],
|
|
360
|
+
"blocking": false
|
|
284
361
|
},
|
|
285
362
|
{
|
|
286
363
|
"name": "pr-test-analyzer",
|
|
287
364
|
"description": "Read-only PR testing analyst. Use for pull request or diff-level test impact analysis, changed-test review, CI failure interpretation, and deciding which focused tests should run.",
|
|
288
365
|
"profilePath": "roles/pr-test-analyzer.md",
|
|
289
|
-
"profileHash": "
|
|
366
|
+
"profileHash": "45d7228dbf941a58639dcdda555676f37ec1da6105400d1120d903b71e7195f0",
|
|
290
367
|
"sourcePath": "agents/pr-test-analyzer.md",
|
|
291
368
|
"sourceHash": "1c69d1e49b9abd910e69a43ce99af500f73ec799b34b241f293b3175c08d9d82",
|
|
292
369
|
"tools": [
|
|
@@ -301,16 +378,23 @@
|
|
|
301
378
|
"status": "adapted",
|
|
302
379
|
"compatibilityReason": "Source role is safely narrowed to Pi read-only tools with application-level credential/path guards.",
|
|
303
380
|
"sourceFrontmatterDisposition": {
|
|
304
|
-
"mode": "
|
|
381
|
+
"mode": "translated into a parent-scoped persistent official Pi Agent session",
|
|
305
382
|
"hidden": "not interpreted by Pi",
|
|
306
383
|
"permission": "translated into the explicit Pi tool/capability ceiling; source YAML is never executed"
|
|
307
|
-
}
|
|
384
|
+
},
|
|
385
|
+
"selector": "aili.pr-test-analyzer",
|
|
386
|
+
"profileVersion": 2,
|
|
387
|
+
"runtimeAdapterVersion": 2,
|
|
388
|
+
"sourceKind": "canonical-adapter",
|
|
389
|
+
"toolPolicy": "static",
|
|
390
|
+
"spawns": [],
|
|
391
|
+
"blocking": false
|
|
308
392
|
},
|
|
309
393
|
{
|
|
310
394
|
"name": "security-auditor",
|
|
311
395
|
"description": "Security engineer focused on vulnerability detection, threat modeling, and secure coding practices. Use for security-focused code review, threat analysis, or hardening recommendations.",
|
|
312
396
|
"profilePath": "roles/security-auditor.md",
|
|
313
|
-
"profileHash": "
|
|
397
|
+
"profileHash": "a10f1ec15b8daad119d20a591f1fee56e08612cfe826dcd02f3ca675704bf5c5",
|
|
314
398
|
"sourcePath": "agents/security-auditor.md",
|
|
315
399
|
"sourceHash": "8282a185f4c770b83831bcae509b24da700dbe517e4f3b78512f55c2174aefe4",
|
|
316
400
|
"tools": [
|
|
@@ -325,16 +409,23 @@
|
|
|
325
409
|
"status": "adapted",
|
|
326
410
|
"compatibilityReason": "Source role is safely narrowed to Pi read-only tools with application-level credential/path guards.",
|
|
327
411
|
"sourceFrontmatterDisposition": {
|
|
328
|
-
"mode": "
|
|
412
|
+
"mode": "translated into a parent-scoped persistent official Pi Agent session",
|
|
329
413
|
"hidden": "not interpreted by Pi",
|
|
330
414
|
"permission": "translated into the explicit Pi tool/capability ceiling; source YAML is never executed"
|
|
331
|
-
}
|
|
415
|
+
},
|
|
416
|
+
"selector": "aili.security-auditor",
|
|
417
|
+
"profileVersion": 2,
|
|
418
|
+
"runtimeAdapterVersion": 2,
|
|
419
|
+
"sourceKind": "canonical-adapter",
|
|
420
|
+
"toolPolicy": "static",
|
|
421
|
+
"spawns": [],
|
|
422
|
+
"blocking": false
|
|
332
423
|
},
|
|
333
424
|
{
|
|
334
425
|
"name": "silent-failure-reviewer",
|
|
335
426
|
"description": "Read-only reviewer for silent failures. Use when a change could pass commands while dropping evidence, skipping work, swallowing errors, weakening gates, or reporting false success.",
|
|
336
427
|
"profilePath": "roles/silent-failure-reviewer.md",
|
|
337
|
-
"profileHash": "
|
|
428
|
+
"profileHash": "62be378632a8e9a13aa8e4d1da3016888ab7b65f7da4958fb2497b0d20a0c133",
|
|
338
429
|
"sourcePath": "agents/silent-failure-reviewer.md",
|
|
339
430
|
"sourceHash": "040c3029e9a61666ab83e7cd7bf8c39feda0b171cb7ede42ef40871f74773c10",
|
|
340
431
|
"tools": [
|
|
@@ -349,16 +440,23 @@
|
|
|
349
440
|
"status": "adapted",
|
|
350
441
|
"compatibilityReason": "Source role is safely narrowed to Pi read-only tools with application-level credential/path guards.",
|
|
351
442
|
"sourceFrontmatterDisposition": {
|
|
352
|
-
"mode": "
|
|
443
|
+
"mode": "translated into a parent-scoped persistent official Pi Agent session",
|
|
353
444
|
"hidden": "not interpreted by Pi",
|
|
354
445
|
"permission": "translated into the explicit Pi tool/capability ceiling; source YAML is never executed"
|
|
355
|
-
}
|
|
446
|
+
},
|
|
447
|
+
"selector": "aili.silent-failure-reviewer",
|
|
448
|
+
"profileVersion": 2,
|
|
449
|
+
"runtimeAdapterVersion": 2,
|
|
450
|
+
"sourceKind": "canonical-adapter",
|
|
451
|
+
"toolPolicy": "static",
|
|
452
|
+
"spawns": [],
|
|
453
|
+
"blocking": false
|
|
356
454
|
},
|
|
357
455
|
{
|
|
358
456
|
"name": "spec-miner",
|
|
359
457
|
"description": "Read-only spec miner subagent. Mines existing code, tests, docs, and OpenSpec artifacts into candidate requirements and scenarios with evidence anchors; never edits or approves specs.",
|
|
360
458
|
"profilePath": "roles/spec-miner.md",
|
|
361
|
-
"profileHash": "
|
|
459
|
+
"profileHash": "e6394103bd7044e39d01a9a0040095fbc7739bc412c78e59500575c7c4cfebbd",
|
|
362
460
|
"sourcePath": "agents/spec-miner.md",
|
|
363
461
|
"sourceHash": "7acfe25db084149b3d98fa2e0a89eb61f32b5592ea2f7eea400bd1b937c90f63",
|
|
364
462
|
"tools": [
|
|
@@ -373,16 +471,23 @@
|
|
|
373
471
|
"status": "adapted",
|
|
374
472
|
"compatibilityReason": "Source role is safely narrowed to Pi read-only tools with application-level credential/path guards.",
|
|
375
473
|
"sourceFrontmatterDisposition": {
|
|
376
|
-
"mode": "
|
|
474
|
+
"mode": "translated into a parent-scoped persistent official Pi Agent session",
|
|
377
475
|
"hidden": "not interpreted by Pi",
|
|
378
476
|
"permission": "translated into the explicit Pi tool/capability ceiling; source YAML is never executed"
|
|
379
|
-
}
|
|
477
|
+
},
|
|
478
|
+
"selector": "aili.spec-miner",
|
|
479
|
+
"profileVersion": 2,
|
|
480
|
+
"runtimeAdapterVersion": 2,
|
|
481
|
+
"sourceKind": "canonical-adapter",
|
|
482
|
+
"toolPolicy": "static",
|
|
483
|
+
"spawns": [],
|
|
484
|
+
"blocking": false
|
|
380
485
|
},
|
|
381
486
|
{
|
|
382
487
|
"name": "test-coverage-reviewer",
|
|
383
488
|
"description": "Read-only QA reviewer for test coverage adequacy. Use when a diff, package, or release needs coverage-gap review, untested-path identification, or verification sufficiency analysis without writing tests.",
|
|
384
489
|
"profilePath": "roles/test-coverage-reviewer.md",
|
|
385
|
-
"profileHash": "
|
|
490
|
+
"profileHash": "cf7d1629a4d57bdaafdbdaf48863bbd88699c97fb485431a71b32efbc6eab954",
|
|
386
491
|
"sourcePath": "agents/test-coverage-reviewer.md",
|
|
387
492
|
"sourceHash": "103e744b65538cdc561befe5263a23819e8d2d97bf616a5713c7e80eaba2462e",
|
|
388
493
|
"tools": [
|
|
@@ -397,16 +502,23 @@
|
|
|
397
502
|
"status": "adapted",
|
|
398
503
|
"compatibilityReason": "Source role is safely narrowed to Pi read-only tools with application-level credential/path guards.",
|
|
399
504
|
"sourceFrontmatterDisposition": {
|
|
400
|
-
"mode": "
|
|
505
|
+
"mode": "translated into a parent-scoped persistent official Pi Agent session",
|
|
401
506
|
"hidden": "not interpreted by Pi",
|
|
402
507
|
"permission": "translated into the explicit Pi tool/capability ceiling; source YAML is never executed"
|
|
403
|
-
}
|
|
508
|
+
},
|
|
509
|
+
"selector": "aili.test-coverage-reviewer",
|
|
510
|
+
"profileVersion": 2,
|
|
511
|
+
"runtimeAdapterVersion": 2,
|
|
512
|
+
"sourceKind": "canonical-adapter",
|
|
513
|
+
"toolPolicy": "static",
|
|
514
|
+
"spawns": [],
|
|
515
|
+
"blocking": false
|
|
404
516
|
},
|
|
405
517
|
{
|
|
406
518
|
"name": "test-engineer",
|
|
407
519
|
"description": "QA engineer specialized in test strategy, test writing, test execution, CLI/browser verification, verification logs, and coverage analysis. Use for designing test suites, writing tests for existing code, executing test plans, or evaluating test quality.",
|
|
408
520
|
"profilePath": "roles/test-engineer.md",
|
|
409
|
-
"profileHash": "
|
|
521
|
+
"profileHash": "cc6928539d0297fb7c605e4f5b722ca88018cf6b857280e21bff74c6705f3533",
|
|
410
522
|
"sourcePath": "agents/test-engineer.md",
|
|
411
523
|
"sourceHash": "b5eb82442d3d529d67b5d8563c859161839aba4a90e42ca19ec38e90e97b5f11",
|
|
412
524
|
"tools": [
|
|
@@ -421,16 +533,23 @@
|
|
|
421
533
|
"status": "adapted",
|
|
422
534
|
"compatibilityReason": "Source edit semantics are mapped to Pi write/edit under parent, role, mode, canonical-root, explicit task-boundary, credential, and headless fail-closed guards; source bash semantics are not granted.",
|
|
423
535
|
"sourceFrontmatterDisposition": {
|
|
424
|
-
"mode": "
|
|
536
|
+
"mode": "translated into a parent-scoped persistent official Pi Agent session",
|
|
425
537
|
"hidden": "not interpreted by Pi",
|
|
426
538
|
"permission": "translated into the explicit Pi tool/capability ceiling; source YAML is never executed"
|
|
427
|
-
}
|
|
539
|
+
},
|
|
540
|
+
"selector": "aili.test-engineer",
|
|
541
|
+
"profileVersion": 2,
|
|
542
|
+
"runtimeAdapterVersion": 2,
|
|
543
|
+
"sourceKind": "canonical-adapter",
|
|
544
|
+
"toolPolicy": "static",
|
|
545
|
+
"spawns": [],
|
|
546
|
+
"blocking": false
|
|
428
547
|
},
|
|
429
548
|
{
|
|
430
549
|
"name": "web-performance-auditor",
|
|
431
550
|
"description": "Web performance engineer focused on Core Web Vitals, loading, rendering, and network optimization. Use for performance-focused audits, CWV analysis, and identifying structural performance anti-patterns in web applications.",
|
|
432
551
|
"profilePath": "roles/web-performance-auditor.md",
|
|
433
|
-
"profileHash": "
|
|
552
|
+
"profileHash": "eb9e6421995b4507688b5ee8289c5b631ce2a4036b0fa73285748b2e3347d96a",
|
|
434
553
|
"sourcePath": "agents/web-performance-auditor.md",
|
|
435
554
|
"sourceHash": "26f0a91cbabcf859b04b1654f87f8a0a32c28706957489b075d545f2459293f3",
|
|
436
555
|
"tools": [
|
|
@@ -446,16 +565,23 @@
|
|
|
446
565
|
"status": "optional",
|
|
447
566
|
"compatibilityReason": "Optional capabilities are required: browser.qa.",
|
|
448
567
|
"sourceFrontmatterDisposition": {
|
|
449
|
-
"mode": "
|
|
568
|
+
"mode": "translated into a parent-scoped persistent official Pi Agent session",
|
|
450
569
|
"hidden": "not interpreted by Pi",
|
|
451
570
|
"permission": "translated into the explicit Pi tool/capability ceiling; source YAML is never executed"
|
|
452
|
-
}
|
|
571
|
+
},
|
|
572
|
+
"selector": "aili.web-performance-auditor",
|
|
573
|
+
"profileVersion": 2,
|
|
574
|
+
"runtimeAdapterVersion": 2,
|
|
575
|
+
"sourceKind": "canonical-adapter",
|
|
576
|
+
"toolPolicy": "static",
|
|
577
|
+
"spawns": [],
|
|
578
|
+
"blocking": false
|
|
453
579
|
},
|
|
454
580
|
{
|
|
455
581
|
"name": "web-researcher",
|
|
456
582
|
"description": "Read-only public web research subagent. Uses web search/fetch for current official documentation, public repositories, releases, package metadata, compatibility, and deprecation evidence; never reads local files, edits, runs commands, or delegates.",
|
|
457
583
|
"profilePath": "roles/web-researcher.md",
|
|
458
|
-
"profileHash": "
|
|
584
|
+
"profileHash": "c94364fd19895a17feead26ab34c2335055ee398a57c0d9c18551c44e63de1b5",
|
|
459
585
|
"sourcePath": "agents/web-researcher.md",
|
|
460
586
|
"sourceHash": "857262d3e00f8088d41ae71c29a90beb912603cc5a7ad73af5da4c6119b7bc66",
|
|
461
587
|
"tools": [],
|
|
@@ -465,10 +591,97 @@
|
|
|
465
591
|
"status": "optional",
|
|
466
592
|
"compatibilityReason": "Optional capabilities are required: web.fetch.",
|
|
467
593
|
"sourceFrontmatterDisposition": {
|
|
468
|
-
"mode": "
|
|
594
|
+
"mode": "translated into a parent-scoped persistent official Pi Agent session",
|
|
469
595
|
"hidden": "not interpreted by Pi",
|
|
470
596
|
"permission": "translated into the explicit Pi tool/capability ceiling; source YAML is never executed"
|
|
597
|
+
},
|
|
598
|
+
"selector": "aili.web-researcher",
|
|
599
|
+
"profileVersion": 2,
|
|
600
|
+
"runtimeAdapterVersion": 2,
|
|
601
|
+
"sourceKind": "canonical-adapter",
|
|
602
|
+
"toolPolicy": "static",
|
|
603
|
+
"spawns": [],
|
|
604
|
+
"blocking": false
|
|
605
|
+
},
|
|
606
|
+
{
|
|
607
|
+
"name": "general",
|
|
608
|
+
"selector": "general",
|
|
609
|
+
"description": "General persistent Agent for focused delegated work using the parent's current active tool ceiling and explicit spawn policy.",
|
|
610
|
+
"profilePath": "roles/general.md",
|
|
611
|
+
"profileHash": "788605fe0a8631744925dfb3e5e766c735727fb583e50213f5c62a2aa6548d41",
|
|
612
|
+
"profileVersion": 2,
|
|
613
|
+
"runtimeAdapterVersion": 2,
|
|
614
|
+
"sourceKind": "aili-owned",
|
|
615
|
+
"sourcePath": null,
|
|
616
|
+
"sourceHash": "788605fe0a8631744925dfb3e5e766c735727fb583e50213f5c62a2aa6548d41",
|
|
617
|
+
"tools": [],
|
|
618
|
+
"toolPolicy": "inherit-parent",
|
|
619
|
+
"capabilities": [
|
|
620
|
+
"parent.active"
|
|
621
|
+
],
|
|
622
|
+
"spawns": [
|
|
623
|
+
"aili.agent-evaluator",
|
|
624
|
+
"aili.ai-regression-scout",
|
|
625
|
+
"aili.browser-qa-runner",
|
|
626
|
+
"aili.code-reviewer",
|
|
627
|
+
"aili.code-scout",
|
|
628
|
+
"aili.convergence-reviewer",
|
|
629
|
+
"aili.doc-researcher",
|
|
630
|
+
"aili.e2e-artifact-runner",
|
|
631
|
+
"aili.implementer",
|
|
632
|
+
"aili.opensource-sanitizer",
|
|
633
|
+
"aili.plan-auditor",
|
|
634
|
+
"aili.pr-test-analyzer",
|
|
635
|
+
"aili.security-auditor",
|
|
636
|
+
"aili.silent-failure-reviewer",
|
|
637
|
+
"aili.spec-miner",
|
|
638
|
+
"aili.test-coverage-reviewer",
|
|
639
|
+
"aili.test-engineer",
|
|
640
|
+
"aili.web-performance-auditor",
|
|
641
|
+
"aili.web-researcher"
|
|
642
|
+
],
|
|
643
|
+
"blocking": false,
|
|
644
|
+
"status": "adapted",
|
|
645
|
+
"compatibilityReason": "AILI-owned OMP-inspired general worker; effective tools inherit and can only narrow the parent active ceiling.",
|
|
646
|
+
"sourceFrontmatterDisposition": {
|
|
647
|
+
"mode": "AILI-owned persistent Agent profile",
|
|
648
|
+
"hidden": "not applicable",
|
|
649
|
+
"permission": "runtime parent-active/capability/policy intersection"
|
|
471
650
|
}
|
|
472
651
|
}
|
|
652
|
+
],
|
|
653
|
+
"runtimeAdapterVersion": 2,
|
|
654
|
+
"bundledSelectors": [
|
|
655
|
+
"aili.agent-evaluator",
|
|
656
|
+
"aili.ai-regression-scout",
|
|
657
|
+
"aili.browser-qa-runner",
|
|
658
|
+
"aili.code-reviewer",
|
|
659
|
+
"aili.code-scout",
|
|
660
|
+
"aili.convergence-reviewer",
|
|
661
|
+
"aili.doc-researcher",
|
|
662
|
+
"aili.e2e-artifact-runner",
|
|
663
|
+
"aili.implementer",
|
|
664
|
+
"aili.opensource-sanitizer",
|
|
665
|
+
"aili.plan-auditor",
|
|
666
|
+
"aili.pr-test-analyzer",
|
|
667
|
+
"aili.security-auditor",
|
|
668
|
+
"aili.silent-failure-reviewer",
|
|
669
|
+
"aili.spec-miner",
|
|
670
|
+
"aili.test-coverage-reviewer",
|
|
671
|
+
"aili.test-engineer",
|
|
672
|
+
"aili.web-performance-auditor",
|
|
673
|
+
"aili.web-researcher",
|
|
674
|
+
"general"
|
|
675
|
+
],
|
|
676
|
+
"turnAuditFields": [
|
|
677
|
+
"selector",
|
|
678
|
+
"profileHash",
|
|
679
|
+
"sourceHash",
|
|
680
|
+
"profileVersion",
|
|
681
|
+
"runtimeAdapterVersion",
|
|
682
|
+
"effectiveTools",
|
|
683
|
+
"provider",
|
|
684
|
+
"model",
|
|
685
|
+
"thinking"
|
|
473
686
|
]
|
|
474
687
|
}
|