@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.
- package/.claude-plugin/marketplace.json +60 -0
- package/.claude-plugin/plugin.json +36 -0
- package/CHANGELOG.md +74 -2
- package/LICENSE +184 -21
- package/README.md +90 -39
- package/RELEASE_NOTES.md +27 -0
- package/adapters/README.md +7 -0
- package/adapters/workbuddy/README.md +43 -0
- package/agents/README.md +2 -1
- package/agents/euclid/constraints.md +2 -1
- package/agents/euclid/responsibilities.md +1 -1
- package/agents/euclid/role.md +1 -1
- package/agents/euclid/system-prompt.md +5 -2
- package/agents/euclid/workflow.md +3 -3
- package/bin/archsight-aios.mjs +489 -11
- package/docs/PUBLIC_DISCOVERY.md +193 -0
- package/docs/quickstart.md +2 -1
- package/gemini-extension.json +6 -0
- package/governance/README.md +3 -0
- package/governance/arbitration-protocol.md +153 -0
- package/package.json +52 -31
- package/runtime/README.md +7 -0
- package/runtime/agent-routing.md +41 -17
- package/runtime/archsight-aios.manifest.json +166 -61
- package/runtime/capability-adapters.json +27 -0
- package/runtime/capability-registry.json +468 -0
- package/runtime/capability-registry.schema.json +135 -0
- package/runtime/skill-routing.md +26 -13
- package/scripts/validate-skills.mjs +134 -0
- package/skills/README.md +25 -9
- package/skills/aios-arch/SKILL.md +62 -24
- package/skills/aios-ceo/SKILL.md +11 -8
- package/skills/aios-commercial-contract/SKILL.md +89 -0
- package/skills/aios-commercial-contract/agents/openai.yaml +4 -0
- package/skills/aios-commercial-tender/SKILL.md +89 -0
- package/skills/aios-commercial-tender/agents/openai.yaml +4 -0
- package/skills/aios-commercial-variation/SKILL.md +88 -0
- package/skills/aios-commercial-variation/agents/openai.yaml +4 -0
- package/skills/aios-construction-daily/SKILL.md +86 -0
- package/skills/aios-construction-daily/agents/openai.yaml +4 -0
- package/skills/aios-construction-meeting/SKILL.md +86 -0
- package/skills/aios-construction-meeting/agents/openai.yaml +4 -0
- package/skills/aios-construction-scheme/SKILL.md +79 -0
- package/skills/aios-construction-scheme/agents/openai.yaml +4 -0
- package/skills/aios-exec/SKILL.md +11 -8
- package/skills/aios-knowledge/SKILL.md +12 -9
- package/skills/aios-plan/SKILL.md +38 -28
- package/skills/aios-review/SKILL.md +12 -9
- package/skills/aios-runtime/SKILL.md +14 -11
- package/skills/aios-structural/SKILL.md +67 -0
- package/skills/aios-structural/agents/openai.yaml +4 -0
- package/templates/project-ai/.ai/ARCHSIGHT_AIOS_RULES.md +13 -10
- package/templates/project-ai/.ai/agent-routing.md +17 -12
- package/templates/project-ai/.ai/skills.md +28 -11
- package/templates/project-ai/.ai/workflows.md +13 -9
- package/workflows/README.md +5 -0
- package/workflows/architecture-review.md +44 -22
- package/workflows/feature-development.md +25 -19
- package/workflows/rag-pipeline.md +9 -5
- package/workflows/site-daily-loop.md +101 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schema": 1,
|
|
3
3
|
"name": "archsight-aios",
|
|
4
|
-
"version": "
|
|
5
|
-
"description": "ArchSight AIOS agent, skill, workflow, runtime, and project-template registry.",
|
|
4
|
+
"version": "1.2.0",
|
|
5
|
+
"description": "ArchSight AIOS agent, skill, workflow, runtime, and project-template registry for building-industry knowledge workers and AI engineering teams.",
|
|
6
6
|
"agents": [
|
|
7
7
|
{
|
|
8
8
|
"id": "atlas",
|
|
@@ -111,28 +111,77 @@
|
|
|
111
111
|
"path": "skills/aios-review/SKILL.md",
|
|
112
112
|
"openaiConfigPath": "skills/aios-review/agents/openai.yaml"
|
|
113
113
|
},
|
|
114
|
-
{
|
|
115
|
-
"id": "aios-knowledge",
|
|
116
|
-
"primaryAgent": "vitruvius",
|
|
117
|
-
"defaultWorkflow": "rag-pipeline",
|
|
118
|
-
"path": "skills/aios-knowledge/SKILL.md",
|
|
119
|
-
"openaiConfigPath": "skills/aios-knowledge/agents/openai.yaml"
|
|
120
|
-
},
|
|
121
|
-
{
|
|
122
|
-
"id": "aios-
|
|
123
|
-
"primaryAgent": "
|
|
124
|
-
"defaultWorkflow": "
|
|
125
|
-
"path": "skills/aios-
|
|
114
|
+
{
|
|
115
|
+
"id": "aios-knowledge",
|
|
116
|
+
"primaryAgent": "vitruvius",
|
|
117
|
+
"defaultWorkflow": "rag-pipeline",
|
|
118
|
+
"path": "skills/aios-knowledge/SKILL.md",
|
|
119
|
+
"openaiConfigPath": "skills/aios-knowledge/agents/openai.yaml"
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"id": "aios-structural",
|
|
123
|
+
"primaryAgent": "euclid",
|
|
124
|
+
"defaultWorkflow": "architecture-review",
|
|
125
|
+
"path": "skills/aios-structural/SKILL.md",
|
|
126
|
+
"openaiConfigPath": "skills/aios-structural/agents/openai.yaml"
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"id": "aios-runtime",
|
|
130
|
+
"primaryAgent": "daedalus",
|
|
131
|
+
"defaultWorkflow": "rag-pipeline",
|
|
132
|
+
"path": "skills/aios-runtime/SKILL.md",
|
|
126
133
|
"openaiConfigPath": "skills/aios-runtime/agents/openai.yaml"
|
|
127
134
|
},
|
|
128
|
-
{
|
|
129
|
-
"id": "aios-exec",
|
|
130
|
-
"primaryAgent": "hephaestus",
|
|
131
|
-
"defaultWorkflow": "feature-development",
|
|
132
|
-
"path": "skills/aios-exec/SKILL.md",
|
|
133
|
-
"openaiConfigPath": "skills/aios-exec/agents/openai.yaml"
|
|
134
|
-
}
|
|
135
|
-
|
|
135
|
+
{
|
|
136
|
+
"id": "aios-exec",
|
|
137
|
+
"primaryAgent": "hephaestus",
|
|
138
|
+
"defaultWorkflow": "feature-development",
|
|
139
|
+
"path": "skills/aios-exec/SKILL.md",
|
|
140
|
+
"openaiConfigPath": "skills/aios-exec/agents/openai.yaml"
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"id": "aios-commercial-tender",
|
|
144
|
+
"primaryAgent": "mason",
|
|
145
|
+
"defaultWorkflow": "review",
|
|
146
|
+
"path": "skills/aios-commercial-tender/SKILL.md",
|
|
147
|
+
"openaiConfigPath": "skills/aios-commercial-tender/agents/openai.yaml"
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"id": "aios-commercial-contract",
|
|
151
|
+
"primaryAgent": "argus",
|
|
152
|
+
"defaultWorkflow": "review",
|
|
153
|
+
"path": "skills/aios-commercial-contract/SKILL.md",
|
|
154
|
+
"openaiConfigPath": "skills/aios-commercial-contract/agents/openai.yaml"
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"id": "aios-construction-daily",
|
|
158
|
+
"primaryAgent": "mason",
|
|
159
|
+
"defaultWorkflow": "site-daily-loop",
|
|
160
|
+
"path": "skills/aios-construction-daily/SKILL.md",
|
|
161
|
+
"openaiConfigPath": "skills/aios-construction-daily/agents/openai.yaml"
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"id": "aios-construction-meeting",
|
|
165
|
+
"primaryAgent": "mason",
|
|
166
|
+
"defaultWorkflow": "site-daily-loop",
|
|
167
|
+
"path": "skills/aios-construction-meeting/SKILL.md",
|
|
168
|
+
"openaiConfigPath": "skills/aios-construction-meeting/agents/openai.yaml"
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"id": "aios-commercial-variation",
|
|
172
|
+
"primaryAgent": "argus",
|
|
173
|
+
"defaultWorkflow": "site-daily-loop",
|
|
174
|
+
"path": "skills/aios-commercial-variation/SKILL.md",
|
|
175
|
+
"openaiConfigPath": "skills/aios-commercial-variation/agents/openai.yaml"
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"id": "aios-construction-scheme",
|
|
179
|
+
"primaryAgent": "vitruvius",
|
|
180
|
+
"defaultWorkflow": "review",
|
|
181
|
+
"path": "skills/aios-construction-scheme/SKILL.md",
|
|
182
|
+
"openaiConfigPath": "skills/aios-construction-scheme/agents/openai.yaml"
|
|
183
|
+
}
|
|
184
|
+
],
|
|
136
185
|
"workflows": [
|
|
137
186
|
{
|
|
138
187
|
"id": "architecture-review",
|
|
@@ -170,11 +219,15 @@
|
|
|
170
219
|
"id": "frontend-generation",
|
|
171
220
|
"path": "workflows/frontend-generation.md"
|
|
172
221
|
},
|
|
173
|
-
{
|
|
174
|
-
"id": "rag-pipeline",
|
|
175
|
-
"path": "workflows/rag-pipeline.md"
|
|
176
|
-
}
|
|
177
|
-
|
|
222
|
+
{
|
|
223
|
+
"id": "rag-pipeline",
|
|
224
|
+
"path": "workflows/rag-pipeline.md"
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
"id": "site-daily-loop",
|
|
228
|
+
"path": "workflows/site-daily-loop.md"
|
|
229
|
+
}
|
|
230
|
+
],
|
|
178
231
|
"routes": [
|
|
179
232
|
{
|
|
180
233
|
"taskType": "建筑行业软件 / 系统深度评价、项目立项、产品定位、商业目标、范围取舍",
|
|
@@ -212,17 +265,23 @@
|
|
|
212
265
|
"agent": "hephaestus",
|
|
213
266
|
"workflow": "bug-fixing"
|
|
214
267
|
},
|
|
215
|
-
{
|
|
216
|
-
"taskType": "BIM / IFC / 建筑规范 / 审图规则",
|
|
217
|
-
"skill": "aios-knowledge",
|
|
218
|
-
"agent": "vitruvius",
|
|
219
|
-
"workflow": "rag-pipeline"
|
|
220
|
-
},
|
|
221
|
-
{
|
|
222
|
-
"taskType": "
|
|
223
|
-
"skill": "aios-
|
|
224
|
-
"agent": "
|
|
225
|
-
"workflow": "architecture-review"
|
|
268
|
+
{
|
|
269
|
+
"taskType": "BIM / IFC / 建筑规范 / 审图规则",
|
|
270
|
+
"skill": "aios-knowledge",
|
|
271
|
+
"agent": "vitruvius",
|
|
272
|
+
"workflow": "rag-pipeline"
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
"taskType": "结构力学、荷载、FEM、确定性求解和结构计算工具链",
|
|
276
|
+
"skill": "aios-structural",
|
|
277
|
+
"agent": "euclid",
|
|
278
|
+
"workflow": "architecture-review"
|
|
279
|
+
},
|
|
280
|
+
{
|
|
281
|
+
"taskType": "建筑行业项目中的 Prompt / Context / Memory / MCP / Tool",
|
|
282
|
+
"skill": "aios-runtime",
|
|
283
|
+
"agent": "daedalus",
|
|
284
|
+
"workflow": "architecture-review"
|
|
226
285
|
},
|
|
227
286
|
{
|
|
228
287
|
"taskType": "建筑行业知识库 / 工程知识 RAG / GraphRAG Pipeline",
|
|
@@ -230,13 +289,49 @@
|
|
|
230
289
|
"agent": "daedalus",
|
|
231
290
|
"workflow": "rag-pipeline"
|
|
232
291
|
},
|
|
233
|
-
{
|
|
234
|
-
"taskType": "建筑行业项目中的受控代码修改、文档、脚本、测试",
|
|
235
|
-
"skill": "aios-exec",
|
|
236
|
-
"agent": "hephaestus",
|
|
237
|
-
"workflow": "feature-development"
|
|
238
|
-
}
|
|
239
|
-
|
|
292
|
+
{
|
|
293
|
+
"taskType": "建筑行业项目中的受控代码修改、文档、脚本、测试",
|
|
294
|
+
"skill": "aios-exec",
|
|
295
|
+
"agent": "hephaestus",
|
|
296
|
+
"workflow": "feature-development"
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
"taskType": "工程招投标响应、评分点、废标风险和技术标资料矩阵",
|
|
300
|
+
"skill": "aios-commercial-tender",
|
|
301
|
+
"agent": "mason",
|
|
302
|
+
"workflow": "review"
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
"taskType": "工程合同履约节点、付款条件、责任边界和资料缺口",
|
|
306
|
+
"skill": "aios-commercial-contract",
|
|
307
|
+
"agent": "argus",
|
|
308
|
+
"workflow": "review"
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
"taskType": "施工日报、现场异常、项目群记录和问题追踪台账",
|
|
312
|
+
"skill": "aios-construction-daily",
|
|
313
|
+
"agent": "mason",
|
|
314
|
+
"workflow": "site-daily-loop"
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"taskType": "工程会议纪要、待办闭环、遗留争议和下次追踪",
|
|
318
|
+
"skill": "aios-construction-meeting",
|
|
319
|
+
"agent": "mason",
|
|
320
|
+
"workflow": "site-daily-loop"
|
|
321
|
+
},
|
|
322
|
+
{
|
|
323
|
+
"taskType": "工程变更签证资料链、联系单、图纸变更和索赔线索",
|
|
324
|
+
"skill": "aios-commercial-variation",
|
|
325
|
+
"agent": "argus",
|
|
326
|
+
"workflow": "site-daily-loop"
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
"taskType": "专项施工方案、危险源、交底要点和规范/计算书复核清单",
|
|
330
|
+
"skill": "aios-construction-scheme",
|
|
331
|
+
"agent": "vitruvius",
|
|
332
|
+
"workflow": "review"
|
|
333
|
+
}
|
|
334
|
+
],
|
|
240
335
|
"projectTemplate": {
|
|
241
336
|
"path": "templates/project-ai",
|
|
242
337
|
"requiredFiles": [
|
|
@@ -278,24 +373,31 @@
|
|
|
278
373
|
}
|
|
279
374
|
],
|
|
280
375
|
"installTargets": {
|
|
281
|
-
"codexSkills": "~/.codex/skills",
|
|
282
|
-
"codexWorkflows": "~/.codex/workflows/aios",
|
|
283
|
-
"
|
|
376
|
+
"codexSkills": "~/.codex/skills",
|
|
377
|
+
"codexWorkflows": "~/.codex/workflows/aios",
|
|
378
|
+
"workBuddySkills": "~/.workbuddy/skills",
|
|
379
|
+
"sharedAgentSkills": "~/.agents/skills",
|
|
284
380
|
"sharedAgentWorkflows": "~/.agents/workflows/aios",
|
|
285
381
|
"geminiInstructions": "~/.gemini/GEMINI.md",
|
|
286
382
|
"antigravityPlugin": "~/.gemini/config/plugins/archsight-aios",
|
|
287
383
|
"antigravityLegacySkills": "~/.gemini/antigravity/skills",
|
|
288
384
|
"geminiSupportAssets": "~/.gemini/archsight-aios"
|
|
289
385
|
},
|
|
290
|
-
"hermes": {
|
|
291
|
-
"registryPath": "runtime/hermes/agent-registry.md",
|
|
292
|
-
"syncPolicyPath": "runtime/hermes/sync-policy.md",
|
|
293
|
-
"syncRecordTemplatePath": "runtime/hermes/sync-record-template.md"
|
|
294
|
-
},
|
|
295
|
-
"
|
|
296
|
-
"
|
|
297
|
-
"
|
|
298
|
-
"
|
|
386
|
+
"hermes": {
|
|
387
|
+
"registryPath": "runtime/hermes/agent-registry.md",
|
|
388
|
+
"syncPolicyPath": "runtime/hermes/sync-policy.md",
|
|
389
|
+
"syncRecordTemplatePath": "runtime/hermes/sync-record-template.md"
|
|
390
|
+
},
|
|
391
|
+
"capabilityRegistry": {
|
|
392
|
+
"schemaPath": "runtime/capability-registry.schema.json",
|
|
393
|
+
"registryPath": "runtime/capability-registry.json",
|
|
394
|
+
"adapterPath": "runtime/capability-adapters.json"
|
|
395
|
+
},
|
|
396
|
+
"requiredAssets": [
|
|
397
|
+
"governance/arbitration-protocol.md",
|
|
398
|
+
"governance/ai-review-policy.md",
|
|
399
|
+
"governance/security-policy.md",
|
|
400
|
+
"governance/agent-boundary.md",
|
|
299
401
|
"governance/context-policy.md",
|
|
300
402
|
"governance/memory-policy.md",
|
|
301
403
|
"governance/delivery-policy.md",
|
|
@@ -320,7 +422,10 @@
|
|
|
320
422
|
"infra/environment-policy.md",
|
|
321
423
|
"infra/permissions.md",
|
|
322
424
|
"infra/service-boundaries.md",
|
|
323
|
-
"runtime/hermes/sync-policy.md",
|
|
324
|
-
"runtime/hermes/sync-record-template.md"
|
|
325
|
-
|
|
326
|
-
|
|
425
|
+
"runtime/hermes/sync-policy.md",
|
|
426
|
+
"runtime/hermes/sync-record-template.md",
|
|
427
|
+
"runtime/capability-adapters.json",
|
|
428
|
+
"runtime/capability-registry.schema.json",
|
|
429
|
+
"runtime/capability-registry.json"
|
|
430
|
+
]
|
|
431
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": 1,
|
|
3
|
+
"description": "ArchSight AIOS 本地 Capability Adapter 映射。当前只声明 stdio MCP 本地调用,不开放网络服务。",
|
|
4
|
+
"adapters": [
|
|
5
|
+
{
|
|
6
|
+
"id": "archsight-solver.local-mcp",
|
|
7
|
+
"transport": "stdio-mcp",
|
|
8
|
+
"capabilityIds": [
|
|
9
|
+
"solver.beam_deflection",
|
|
10
|
+
"solver.beam_deflection_serviceability_check",
|
|
11
|
+
"solver.frame_displacement",
|
|
12
|
+
"solver.truss_member_force"
|
|
13
|
+
],
|
|
14
|
+
"command": "python",
|
|
15
|
+
"args": ["-m", "backend.capabilities.mcp_server"],
|
|
16
|
+
"cwdEnv": "ARCHSIGHT_SOLVER_HOME",
|
|
17
|
+
"defaultSiblingDir": "archsight-solver",
|
|
18
|
+
"timeoutMs": 30000,
|
|
19
|
+
"toolNameMap": {
|
|
20
|
+
"solver.beam_deflection": "beam_deflection",
|
|
21
|
+
"solver.beam_deflection_serviceability_check": "beam_deflection_serviceability_check",
|
|
22
|
+
"solver.frame_displacement": "frame_displacement",
|
|
23
|
+
"solver.truss_member_force": "truss_member_force"
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
]
|
|
27
|
+
}
|