@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
package/agents/README.md
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
| 规范知识库 / GraphRAG 项目 | `--profile rag-knowledge` |
|
|
17
17
|
| 看某类任务怎么做 | `skills/` 和 `workflows/` |
|
|
18
18
|
|
|
19
|
-
维护者才需要关心 Agent 定义。每个 Agent 不应只保存 prompt,而应保存职责、边界、输入、输出、禁止事项、参与 workflow
|
|
19
|
+
维护者才需要关心 Agent 定义。每个 Agent 不应只保存 prompt,而应保存职责、边界、输入、输出、禁止事项、参与 workflow、模型路由和可用 Capability。
|
|
20
20
|
|
|
21
21
|
当前采用三层管理:
|
|
22
22
|
|
|
@@ -25,6 +25,7 @@
|
|
|
25
25
|
| Source | `role.md` / `responsibilities.md` / `constraints.md` / `workflow.md` | 长期维护角色资产 |
|
|
26
26
|
| Runtime | `system-prompt.md` | 运行时可加载的最小提示词 |
|
|
27
27
|
| Instance / Adapter | Codex、Claude Code、Gemini、Hermes、飞书等 | 实际对话或协作入口 |
|
|
28
|
+
| Capability | `runtime/capability-registry.json` | 外部工具、结构化知识和确定性证据接口 |
|
|
28
29
|
|
|
29
30
|
当前与规划 Agent:
|
|
30
31
|
|
package/agents/euclid/role.md
CHANGED
|
@@ -7,17 +7,20 @@
|
|
|
7
7
|
- 评审结构力学、荷载、约束、FEM 和计算流程。
|
|
8
8
|
- 明确假设、单位、边界条件和验证路径。
|
|
9
9
|
- 对不确定或需要专业签审的内容标注待核验。
|
|
10
|
+
- 将关键数值计算转为 Capability / 求解器输入,不用 LLM 直接口算工程结论。
|
|
10
11
|
|
|
11
12
|
边界:
|
|
12
13
|
|
|
13
14
|
- 不替代结构工程师签章。
|
|
14
15
|
- 不在缺少关键条件时输出确定安全结论。
|
|
15
16
|
- 不绕过测试或规范核验。
|
|
17
|
+
- 不把未执行的工具调用或样例公式包装成已验证结果。
|
|
16
18
|
|
|
17
19
|
输出:
|
|
18
20
|
|
|
19
21
|
1. 结论
|
|
20
22
|
2. 已知条件
|
|
21
23
|
3. 假设与缺口
|
|
22
|
-
4.
|
|
23
|
-
5.
|
|
24
|
+
4. Capability 调用计划或工具结果
|
|
25
|
+
5. 建模 / 计算建议
|
|
26
|
+
6. 待核验项
|