@archsight/aios 1.0.1 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. package/.claude-plugin/marketplace.json +60 -0
  2. package/.claude-plugin/plugin.json +36 -0
  3. package/CHANGELOG.md +74 -2
  4. package/LICENSE +184 -21
  5. package/README.md +90 -39
  6. package/RELEASE_NOTES.md +27 -0
  7. package/adapters/README.md +7 -0
  8. package/adapters/workbuddy/README.md +43 -0
  9. package/agents/README.md +2 -1
  10. package/agents/euclid/constraints.md +2 -1
  11. package/agents/euclid/responsibilities.md +1 -1
  12. package/agents/euclid/role.md +1 -1
  13. package/agents/euclid/system-prompt.md +5 -2
  14. package/agents/euclid/workflow.md +3 -3
  15. package/bin/archsight-aios.mjs +489 -11
  16. package/docs/PUBLIC_DISCOVERY.md +193 -0
  17. package/docs/quickstart.md +2 -1
  18. package/gemini-extension.json +6 -0
  19. package/governance/README.md +3 -0
  20. package/governance/arbitration-protocol.md +153 -0
  21. package/package.json +52 -31
  22. package/runtime/README.md +7 -0
  23. package/runtime/agent-routing.md +41 -17
  24. package/runtime/archsight-aios.manifest.json +166 -61
  25. package/runtime/capability-adapters.json +27 -0
  26. package/runtime/capability-registry.json +468 -0
  27. package/runtime/capability-registry.schema.json +135 -0
  28. package/runtime/skill-routing.md +26 -13
  29. package/scripts/validate-skills.mjs +134 -0
  30. package/skills/README.md +25 -9
  31. package/skills/aios-arch/SKILL.md +62 -24
  32. package/skills/aios-ceo/SKILL.md +11 -8
  33. package/skills/aios-commercial-contract/SKILL.md +89 -0
  34. package/skills/aios-commercial-contract/agents/openai.yaml +4 -0
  35. package/skills/aios-commercial-tender/SKILL.md +89 -0
  36. package/skills/aios-commercial-tender/agents/openai.yaml +4 -0
  37. package/skills/aios-commercial-variation/SKILL.md +88 -0
  38. package/skills/aios-commercial-variation/agents/openai.yaml +4 -0
  39. package/skills/aios-construction-daily/SKILL.md +86 -0
  40. package/skills/aios-construction-daily/agents/openai.yaml +4 -0
  41. package/skills/aios-construction-meeting/SKILL.md +86 -0
  42. package/skills/aios-construction-meeting/agents/openai.yaml +4 -0
  43. package/skills/aios-construction-scheme/SKILL.md +79 -0
  44. package/skills/aios-construction-scheme/agents/openai.yaml +4 -0
  45. package/skills/aios-exec/SKILL.md +11 -8
  46. package/skills/aios-knowledge/SKILL.md +12 -9
  47. package/skills/aios-plan/SKILL.md +38 -28
  48. package/skills/aios-review/SKILL.md +12 -9
  49. package/skills/aios-runtime/SKILL.md +14 -11
  50. package/skills/aios-structural/SKILL.md +67 -0
  51. package/skills/aios-structural/agents/openai.yaml +4 -0
  52. package/templates/project-ai/.ai/ARCHSIGHT_AIOS_RULES.md +13 -10
  53. package/templates/project-ai/.ai/agent-routing.md +17 -12
  54. package/templates/project-ai/.ai/skills.md +28 -11
  55. package/templates/project-ai/.ai/workflows.md +13 -9
  56. package/workflows/README.md +5 -0
  57. package/workflows/architecture-review.md +44 -22
  58. package/workflows/feature-development.md +25 -19
  59. package/workflows/rag-pipeline.md +9 -5
  60. package/workflows/site-daily-loop.md +101 -0
@@ -0,0 +1,468 @@
1
+ {
2
+ "schema": 1,
3
+ "description": "ArchSight AIOS 最小 Capability 注册表。注册表定义接口、权限边界和证据契约;本地工具适配器由 runtime/capability-adapters.json 声明。",
4
+ "capabilities": [
5
+ {
6
+ "id": "repo.test_runner",
7
+ "type": "verification",
8
+ "ownerAgents": ["hephaestus", "argus", "mason"],
9
+ "allowedSkills": ["aios-exec", "aios-review", "aios-plan"],
10
+ "authorityLevel": "L1",
11
+ "description": "运行项目声明的测试、构建、lint、typecheck 或 smoke 命令,并把退出码和摘要作为交付仲裁证据。",
12
+ "status": "adapter-required",
13
+ "inputSchema": {
14
+ "type": "object",
15
+ "required": ["cwd", "command"],
16
+ "properties": {
17
+ "cwd": {
18
+ "type": "string"
19
+ },
20
+ "command": {
21
+ "type": "string"
22
+ },
23
+ "timeoutSeconds": {
24
+ "type": "integer",
25
+ "minimum": 1
26
+ }
27
+ }
28
+ },
29
+ "outputSchema": {
30
+ "type": "object",
31
+ "required": ["status", "exitCode", "command", "stdoutSummary", "stderrSummary"],
32
+ "properties": {
33
+ "status": {
34
+ "type": "string",
35
+ "enum": ["pass", "fail", "error"]
36
+ },
37
+ "exitCode": {
38
+ "type": "integer"
39
+ },
40
+ "command": {
41
+ "type": "string"
42
+ },
43
+ "stdoutSummary": {
44
+ "type": "string"
45
+ },
46
+ "stderrSummary": {
47
+ "type": "string"
48
+ },
49
+ "artifacts": {
50
+ "type": "array",
51
+ "items": {
52
+ "type": "string"
53
+ }
54
+ }
55
+ }
56
+ },
57
+ "evidenceContract": {
58
+ "requiredFields": ["command", "exitCode", "status"],
59
+ "invalidWhenMissing": ["command", "exitCode", "status"]
60
+ },
61
+ "blockingRules": [
62
+ {
63
+ "when": "status == fail",
64
+ "severity": "P0",
65
+ "action": "block"
66
+ },
67
+ {
68
+ "when": "status == error",
69
+ "severity": "P1",
70
+ "action": "hold"
71
+ }
72
+ ],
73
+ "humanEscalation": ["skip_required_tests", "production_release_after_failed_check"]
74
+ },
75
+ {
76
+ "id": "knowledge.norm_lookup",
77
+ "type": "compliance_lookup",
78
+ "ownerAgents": ["vitruvius", "athena", "mason", "argus"],
79
+ "allowedSkills": [
80
+ "aios-knowledge",
81
+ "aios-arch",
82
+ "aios-ceo",
83
+ "aios-commercial-tender",
84
+ "aios-commercial-contract",
85
+ "aios-construction-daily",
86
+ "aios-construction-meeting",
87
+ "aios-commercial-variation",
88
+ "aios-construction-scheme"
89
+ ],
90
+ "authorityLevel": "L3",
91
+ "description": "按地区、专业、版本、条文和适用条件检索规范知识,返回可追溯引用和适用性判断。",
92
+ "status": "declared-interface",
93
+ "inputSchema": {
94
+ "type": "object",
95
+ "required": ["query"],
96
+ "properties": {
97
+ "query": {
98
+ "type": "string"
99
+ },
100
+ "region": {
101
+ "type": "string"
102
+ },
103
+ "discipline": {
104
+ "type": "string"
105
+ },
106
+ "sourceVersion": {
107
+ "type": "string"
108
+ },
109
+ "projectCondition": {
110
+ "type": "string"
111
+ }
112
+ }
113
+ },
114
+ "outputSchema": {
115
+ "type": "object",
116
+ "required": ["status", "citations", "applicability"],
117
+ "properties": {
118
+ "status": {
119
+ "type": "string",
120
+ "enum": ["found", "not_found", "conflict", "inapplicable", "error"]
121
+ },
122
+ "citations": {
123
+ "type": "array",
124
+ "items": {
125
+ "type": "object"
126
+ }
127
+ },
128
+ "applicability": {
129
+ "type": "string",
130
+ "enum": ["applicable", "not_applicable", "need_context"]
131
+ },
132
+ "sourceVersion": {
133
+ "type": "string"
134
+ },
135
+ "notes": {
136
+ "type": "string"
137
+ }
138
+ }
139
+ },
140
+ "evidenceContract": {
141
+ "requiredFields": ["status", "citations", "applicability", "sourceVersion"],
142
+ "invalidWhenMissing": ["citations", "applicability", "sourceVersion"]
143
+ },
144
+ "blockingRules": [
145
+ {
146
+ "when": "status == conflict",
147
+ "severity": "P0",
148
+ "action": "hold"
149
+ },
150
+ {
151
+ "when": "applicability == need_context",
152
+ "severity": "P1",
153
+ "action": "hold"
154
+ }
155
+ ],
156
+ "humanEscalation": ["legal_compliance_final_claim", "formal_drawing_review"]
157
+ },
158
+ {
159
+ "id": "solver.beam_deflection",
160
+ "type": "deterministic_solver",
161
+ "ownerAgents": ["euclid"],
162
+ "allowedSkills": ["aios-structural"],
163
+ "authorityLevel": "L1",
164
+ "description": "梁挠度计算接口示例。LLM 只负责参数提取和结果解释,数值计算必须由外部求解器完成。",
165
+ "status": "implemented",
166
+ "inputSchema": {
167
+ "type": "object",
168
+ "required": ["span", "elasticModulus", "secondMomentOfArea", "load"],
169
+ "properties": {
170
+ "span": {
171
+ "type": "object",
172
+ "required": ["value", "unit"]
173
+ },
174
+ "elasticModulus": {
175
+ "type": "object",
176
+ "required": ["value", "unit"]
177
+ },
178
+ "secondMomentOfArea": {
179
+ "type": "object",
180
+ "required": ["value", "unit"]
181
+ },
182
+ "load": {
183
+ "type": "object",
184
+ "required": ["value", "unit", "case"]
185
+ },
186
+ "boundaryCondition": {
187
+ "type": "string"
188
+ }
189
+ }
190
+ },
191
+ "outputSchema": {
192
+ "type": "object",
193
+ "required": ["status", "deflection", "inputValidated", "formulaRef"],
194
+ "properties": {
195
+ "status": {
196
+ "type": "string",
197
+ "enum": ["pass", "fail", "invalid_input", "error"]
198
+ },
199
+ "deflection": {
200
+ "type": "object",
201
+ "required": ["value", "unit"]
202
+ },
203
+ "inputValidated": {
204
+ "type": "boolean"
205
+ },
206
+ "formulaRef": {
207
+ "type": "string"
208
+ },
209
+ "warnings": {
210
+ "type": "array",
211
+ "items": {
212
+ "type": "string"
213
+ }
214
+ }
215
+ }
216
+ },
217
+ "evidenceContract": {
218
+ "requiredFields": ["status", "deflection", "inputValidated", "formulaRef"],
219
+ "invalidWhenMissing": ["inputValidated", "formulaRef"]
220
+ },
221
+ "blockingRules": [
222
+ {
223
+ "when": "status == invalid_input",
224
+ "severity": "P0",
225
+ "action": "block"
226
+ },
227
+ {
228
+ "when": "inputValidated == false",
229
+ "severity": "P0",
230
+ "action": "block"
231
+ },
232
+ {
233
+ "when": "status == error",
234
+ "severity": "P1",
235
+ "action": "hold"
236
+ }
237
+ ],
238
+ "humanEscalation": ["structural_safety_final_claim", "production_structural_design"]
239
+ },
240
+ {
241
+ "id": "solver.beam_deflection_serviceability_check",
242
+ "type": "deterministic_solver",
243
+ "ownerAgents": ["euclid"],
244
+ "allowedSkills": ["aios-structural"],
245
+ "authorityLevel": "L1",
246
+ "description": "梁挠度正常使用限值校核接口。当前用于挠度服务性校核,不代表材料强度、稳定或规范承载力设计。",
247
+ "status": "implemented",
248
+ "inputSchema": {
249
+ "type": "object",
250
+ "required": ["span", "elasticModulus", "secondMomentOfArea", "load"],
251
+ "properties": {
252
+ "span": {
253
+ "type": "object",
254
+ "required": ["value", "unit"]
255
+ },
256
+ "elasticModulus": {
257
+ "type": "object",
258
+ "required": ["value", "unit"]
259
+ },
260
+ "secondMomentOfArea": {
261
+ "type": "object",
262
+ "required": ["value", "unit"]
263
+ },
264
+ "load": {
265
+ "type": "object",
266
+ "required": ["value", "unit", "case"]
267
+ },
268
+ "boundaryCondition": {
269
+ "type": "string"
270
+ },
271
+ "deflectionLimitRatio": {
272
+ "type": "number"
273
+ }
274
+ }
275
+ },
276
+ "outputSchema": {
277
+ "type": "object",
278
+ "required": ["status", "checkType", "deflection", "allowable", "inputValidated"],
279
+ "properties": {
280
+ "status": {
281
+ "type": "string",
282
+ "enum": ["pass", "fail", "invalid_input", "error"]
283
+ },
284
+ "checkType": {
285
+ "type": "string"
286
+ },
287
+ "deflection": {
288
+ "type": "object"
289
+ },
290
+ "allowable": {
291
+ "type": "object"
292
+ },
293
+ "inputValidated": {
294
+ "type": "boolean"
295
+ },
296
+ "warnings": {
297
+ "type": "array",
298
+ "items": {
299
+ "type": "string"
300
+ }
301
+ }
302
+ }
303
+ },
304
+ "evidenceContract": {
305
+ "requiredFields": ["status", "checkType", "deflection", "allowable", "inputValidated"],
306
+ "invalidWhenMissing": ["inputValidated", "deflection", "allowable"]
307
+ },
308
+ "blockingRules": [
309
+ {
310
+ "when": "status == fail",
311
+ "severity": "P1",
312
+ "action": "hold"
313
+ },
314
+ {
315
+ "when": "status == invalid_input",
316
+ "severity": "P0",
317
+ "action": "block"
318
+ },
319
+ {
320
+ "when": "status == error",
321
+ "severity": "P1",
322
+ "action": "hold"
323
+ }
324
+ ],
325
+ "humanEscalation": ["structural_capacity_final_claim", "production_structural_design"]
326
+ },
327
+ {
328
+ "id": "solver.frame_displacement",
329
+ "type": "deterministic_solver",
330
+ "ownerAgents": ["euclid"],
331
+ "allowedSkills": ["aios-structural", "aios-arch"],
332
+ "authorityLevel": "L1",
333
+ "description": "二维平面框架位移求解接口,返回最大位移、控制节点、目标节点和内力控制摘要。",
334
+ "status": "implemented",
335
+ "inputSchema": {
336
+ "type": "object",
337
+ "properties": {
338
+ "payload": {
339
+ "type": "object"
340
+ },
341
+ "structure": {
342
+ "type": "object"
343
+ },
344
+ "targetNodeId": {
345
+ "type": "string"
346
+ }
347
+ }
348
+ },
349
+ "outputSchema": {
350
+ "type": "object",
351
+ "required": ["status", "maxDisplacement", "inputValidated"],
352
+ "properties": {
353
+ "status": {
354
+ "type": "string",
355
+ "enum": ["pass", "fail", "invalid_input", "error"]
356
+ },
357
+ "maxDisplacement": {
358
+ "type": "object"
359
+ },
360
+ "targetNode": {
361
+ "type": "object"
362
+ },
363
+ "inputValidated": {
364
+ "type": "boolean"
365
+ },
366
+ "warnings": {
367
+ "type": "array",
368
+ "items": {
369
+ "type": "string"
370
+ }
371
+ }
372
+ }
373
+ },
374
+ "evidenceContract": {
375
+ "requiredFields": ["status", "maxDisplacement", "inputValidated"],
376
+ "invalidWhenMissing": ["inputValidated", "maxDisplacement"]
377
+ },
378
+ "blockingRules": [
379
+ {
380
+ "when": "status == fail",
381
+ "severity": "P1",
382
+ "action": "hold"
383
+ },
384
+ {
385
+ "when": "status == invalid_input",
386
+ "severity": "P0",
387
+ "action": "block"
388
+ },
389
+ {
390
+ "when": "status == error",
391
+ "severity": "P1",
392
+ "action": "hold"
393
+ }
394
+ ],
395
+ "humanEscalation": ["structural_safety_final_claim", "production_structural_design"]
396
+ },
397
+ {
398
+ "id": "solver.truss_member_force",
399
+ "type": "deterministic_solver",
400
+ "ownerAgents": ["euclid"],
401
+ "allowedSkills": ["aios-structural", "aios-arch"],
402
+ "authorityLevel": "L1",
403
+ "description": "二维平面桁架杆件轴力求解接口,返回最大轴力、控制杆件和指定杆件结果。",
404
+ "status": "implemented",
405
+ "inputSchema": {
406
+ "type": "object",
407
+ "properties": {
408
+ "payload": {
409
+ "type": "object"
410
+ },
411
+ "structure": {
412
+ "type": "object"
413
+ },
414
+ "targetMemberId": {
415
+ "type": "string"
416
+ }
417
+ }
418
+ },
419
+ "outputSchema": {
420
+ "type": "object",
421
+ "required": ["status", "maxAxialForce", "inputValidated"],
422
+ "properties": {
423
+ "status": {
424
+ "type": "string",
425
+ "enum": ["pass", "fail", "invalid_input", "error"]
426
+ },
427
+ "maxAxialForce": {
428
+ "type": "object"
429
+ },
430
+ "targetMember": {
431
+ "type": "object"
432
+ },
433
+ "inputValidated": {
434
+ "type": "boolean"
435
+ },
436
+ "warnings": {
437
+ "type": "array",
438
+ "items": {
439
+ "type": "string"
440
+ }
441
+ }
442
+ }
443
+ },
444
+ "evidenceContract": {
445
+ "requiredFields": ["status", "maxAxialForce", "inputValidated"],
446
+ "invalidWhenMissing": ["inputValidated", "maxAxialForce"]
447
+ },
448
+ "blockingRules": [
449
+ {
450
+ "when": "status == fail",
451
+ "severity": "P1",
452
+ "action": "hold"
453
+ },
454
+ {
455
+ "when": "status == invalid_input",
456
+ "severity": "P0",
457
+ "action": "block"
458
+ },
459
+ {
460
+ "when": "status == error",
461
+ "severity": "P1",
462
+ "action": "hold"
463
+ }
464
+ ],
465
+ "humanEscalation": ["structural_safety_final_claim", "production_structural_design"]
466
+ }
467
+ ]
468
+ }
@@ -0,0 +1,135 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "$id": "https://archsightlabs.github.io/aios/schemas/capability-registry.schema.json",
4
+ "title": "ArchSight AIOS Capability Registry",
5
+ "type": "object",
6
+ "required": ["schema", "capabilities"],
7
+ "additionalProperties": false,
8
+ "properties": {
9
+ "schema": {
10
+ "type": "integer",
11
+ "const": 1
12
+ },
13
+ "description": {
14
+ "type": "string"
15
+ },
16
+ "capabilities": {
17
+ "type": "array",
18
+ "minItems": 1,
19
+ "items": {
20
+ "type": "object",
21
+ "required": [
22
+ "id",
23
+ "type",
24
+ "ownerAgents",
25
+ "authorityLevel",
26
+ "description",
27
+ "status",
28
+ "inputSchema",
29
+ "outputSchema",
30
+ "evidenceContract",
31
+ "blockingRules"
32
+ ],
33
+ "additionalProperties": false,
34
+ "properties": {
35
+ "id": {
36
+ "type": "string",
37
+ "pattern": "^[a-z][a-z0-9_]*(\\.[a-z][a-z0-9_]*)+$"
38
+ },
39
+ "type": {
40
+ "type": "string",
41
+ "enum": [
42
+ "verification",
43
+ "deterministic_solver",
44
+ "compliance_lookup",
45
+ "security_scanner",
46
+ "repository_fact",
47
+ "runtime_adapter"
48
+ ]
49
+ },
50
+ "ownerAgents": {
51
+ "type": "array",
52
+ "minItems": 1,
53
+ "items": {
54
+ "type": "string"
55
+ },
56
+ "uniqueItems": true
57
+ },
58
+ "allowedSkills": {
59
+ "type": "array",
60
+ "items": {
61
+ "type": "string"
62
+ },
63
+ "uniqueItems": true
64
+ },
65
+ "authorityLevel": {
66
+ "type": "string",
67
+ "enum": ["L1", "L2", "L3"]
68
+ },
69
+ "description": {
70
+ "type": "string"
71
+ },
72
+ "status": {
73
+ "type": "string",
74
+ "enum": ["declared-interface", "adapter-required", "implemented"]
75
+ },
76
+ "inputSchema": {
77
+ "type": "object"
78
+ },
79
+ "outputSchema": {
80
+ "type": "object"
81
+ },
82
+ "evidenceContract": {
83
+ "type": "object",
84
+ "required": ["requiredFields", "invalidWhenMissing"],
85
+ "additionalProperties": false,
86
+ "properties": {
87
+ "requiredFields": {
88
+ "type": "array",
89
+ "items": {
90
+ "type": "string"
91
+ },
92
+ "uniqueItems": true
93
+ },
94
+ "invalidWhenMissing": {
95
+ "type": "array",
96
+ "items": {
97
+ "type": "string"
98
+ },
99
+ "uniqueItems": true
100
+ }
101
+ }
102
+ },
103
+ "blockingRules": {
104
+ "type": "array",
105
+ "items": {
106
+ "type": "object",
107
+ "required": ["when", "severity", "action"],
108
+ "additionalProperties": false,
109
+ "properties": {
110
+ "when": {
111
+ "type": "string"
112
+ },
113
+ "severity": {
114
+ "type": "string",
115
+ "enum": ["P0", "P1", "P2"]
116
+ },
117
+ "action": {
118
+ "type": "string",
119
+ "enum": ["block", "hold", "revise", "human_escalation"]
120
+ }
121
+ }
122
+ }
123
+ },
124
+ "humanEscalation": {
125
+ "type": "array",
126
+ "items": {
127
+ "type": "string"
128
+ },
129
+ "uniqueItems": true
130
+ }
131
+ }
132
+ }
133
+ }
134
+ }
135
+ }
@@ -21,12 +21,19 @@
21
21
  | 建筑行业平台界面方案、工作台体验、复核追溯和前端实现交接 | `aios-design` | Janus | `design-review` |
22
22
  | 建筑行业项目中的架构评审、技术选型、服务边界 | `aios-arch` | Atlas | `architecture-review` |
23
23
  | 建筑行业项目中的 Feature 拆解、交付计划、任务依赖 | `aios-plan` | Mason | `feature-development` |
24
- | 建筑行业项目中的 PR / diff / AI 生成代码审查 | `aios-review` | Argus | `code-review` |
25
- | 建筑行业项目中的 Bug 修复、测试失败、构建失败 | `aios-exec` | Hephaestus | `bug-fixing` |
26
- | BIM / IFC / 建筑规范 / 审图规则 | `aios-knowledge` | Vitruvius | `rag-pipeline` |
27
- | 建筑行业项目中的 Prompt / Context / Memory / MCP / Tool | `aios-runtime` | Daedalus | `architecture-review` |
28
- | 建筑行业知识库 / 工程知识 RAG / GraphRAG Pipeline | `aios-runtime` | Daedalus | `rag-pipeline` |
29
- | 建筑行业项目中的受控代码修改、文档、脚本、测试 | `aios-exec` | Hephaestus | `feature-development` |
24
+ | 建筑行业项目中的 PR / diff / AI 生成代码审查 | `aios-review` | Argus | `code-review` |
25
+ | 建筑行业项目中的 Bug 修复、测试失败、构建失败 | `aios-exec` | Hephaestus | `bug-fixing` |
26
+ | BIM / IFC / 建筑规范 / 审图规则 | `aios-knowledge` | Vitruvius | `rag-pipeline` |
27
+ | 结构力学 / 荷载 / FEM / 确定性求解链路 | `aios-structural` | Euclid | `architecture-review` |
28
+ | 建筑行业项目中的 Prompt / Context / Memory / MCP / Tool | `aios-runtime` | Daedalus | `architecture-review` |
29
+ | 建筑行业知识库 / 工程知识 RAG / GraphRAG Pipeline | `aios-runtime` | Daedalus | `rag-pipeline` |
30
+ | 建筑行业项目中的受控代码修改、文档、脚本、测试 | `aios-exec` | Hephaestus | `feature-development` |
31
+ | 工程招投标响应、评分点、废标风险和技术标资料矩阵 | `aios-commercial-tender` | Mason | `review` |
32
+ | 工程合同履约节点、付款条件、责任边界和资料缺口 | `aios-commercial-contract` | Argus | `review` |
33
+ | 施工日报、现场异常、项目群记录和问题追踪台账 | `aios-construction-daily` | Mason | `site-daily-loop` |
34
+ | 工程会议纪要、待办闭环、遗留争议和下次追踪 | `aios-construction-meeting` | Mason | `site-daily-loop` |
35
+ | 工程变更签证资料链、联系单、图纸变更和索赔线索 | `aios-commercial-variation` | Argus | `site-daily-loop` |
36
+ | 专项施工方案、危险源、交底要点和规范 / 计算书复核清单 | `aios-construction-scheme` | Vitruvius | `review` |
30
37
 
31
38
  ## 路由原则
32
39
 
@@ -37,10 +44,13 @@
37
44
  - 是否启用行业增强,先看项目 profile、`.ai/project-context.md`、README 和当前任务;不确定时先核验上下文,不凭 Skill 名称硬套。
38
45
  - `aios-ceo` 用于一把手视角的建筑行业软件 / 系统深度评价,把产品定位、行业专业性、工程可信度、证据链、商业验证和范围取舍放到同一决策框架里;它可以引用架构和行业语义事实作为 CEO 判断依据,但不替代 `aios-arch` 或 `aios-knowledge` 的专项设计与专业结论。
39
46
  - `aios-design` 用于实现前判断界面方案是否支撑建筑行业审查、定位、复核、追溯和交付;不替代 `frontend-generation` 的 UI 实现、布局验证和交互验证,也不替代通用 `frontend-design` 的视觉风格和前端代码美化评审。
40
- - `aios-arch` 应补足通用架构评审缺失的建筑行业平台视角,包括 BIM / IFC、规范知识链路、审图证据链、RAG / GraphRAG、任务编排、审计和后端运行可靠性。
41
- - Agent 可以调用多个 Skill;Skill 也可以被多个 Agent 复用。
42
- - 项目工作目录中的事实优先于 AIOS 的通用模板。
43
- - Hermes / 飞书只是可选入口和调度适配器,不替代本地验证,也不是 AIOS 的必要前提。
47
+ - `aios-arch` 应补足通用架构评审缺失的建筑行业平台视角,包括 BIM / IFC、规范知识链路、审图证据链、RAG / GraphRAG、任务编排、审计和后端运行可靠性。
48
+ - `aios-structural` 用于结构力学、荷载、边界条件、FEM 和求解器接口评审;它不能替代结构工程师签审,关键数值必须来自 Capability 或项目已有求解器证据。
49
+ - `aios-commercial-tender`、`aios-commercial-contract`、`aios-construction-daily`、`aios-construction-meeting`、`aios-commercial-variation` `aios-construction-scheme` 属于工程业务管理增强;它们只处理建筑工程资料的抽取、证据链整理、风险提示和人工复核分流,不扩展为 HR、行政、财务等通用职能 Skill。
50
+ - Agent 可以调用多个 Skill;Skill 也可以被多个 Agent 复用。
51
+ - 项目工作目录中的事实优先于 AIOS 的通用模板。
52
+ - Hermes / 飞书只是可选入口和调度适配器,不替代本地验证,也不是 AIOS 的必要前提。
53
+ - 多 Agent 冲突时,按 `governance/arbitration-protocol.md` 仲裁;Capability 返回值、项目事实和结构化知识优先于 Agent 自然语言判断。
44
54
 
45
55
  ## 升级规则
46
56
 
@@ -49,9 +59,12 @@
49
59
  - 涉及页面方案、工作台体验、证据定位、复核追溯、交互状态和前端实现交接:升级给 Janus,并使用 `aios-design`。
50
60
  - 涉及任务依赖、交付顺序、CI/CD:升级给 Mason。
51
61
  - 涉及安全、权限、Prompt 注入、生产发布:升级给 Argus。
52
- - 涉及 BIM、IFC、规范条文和审图语义:升级给 Vitruvius。
53
- - 涉及 RAG、GraphRAG、MCP、Tool Calling、Memory:升级给 Daedalus。
54
- - 涉及具体代码、脚本、测试、文档执行:交给 Hephaestus
62
+ - 涉及 BIM、IFC、规范条文和审图语义:升级给 Vitruvius。
63
+ - 涉及结构力学、荷载、边界条件、FEM 或结构计算工具链:升级给 Euclid,并优先使用 `aios-structural`。
64
+ - 涉及 RAG、GraphRAG、MCP、Tool Calling、Memory:升级给 Daedalus
65
+ - 涉及具体代码、脚本、测试、文档执行:交给 Hephaestus。
66
+ - 涉及工程现场日报、会议闭环或变更签证线索:升级给 Mason 编排 `site-daily-loop`,并按资料类型调用 `aios-construction-daily`、`aios-construction-meeting` 或 `aios-commercial-variation`。
67
+ - 涉及工程合同、招投标或专项施工方案:按风险类型分别交给 Argus、Mason 或 Vitruvius;涉及规范、计算或签审结论时必须保留人工复核或 Capability 证据。
55
68
 
56
69
  ## 项目接入
57
70