@archsight/aios 1.3.2 → 1.5.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 +6 -1
- package/.claude-plugin/plugin.json +5 -1
- package/CHANGELOG.md +53 -0
- package/README.md +90 -3
- package/RELEASE_NOTES.md +51 -0
- package/bin/archsight-aios.mjs +932 -15
- package/delivery/README.md +1 -0
- package/delivery/v1.4.0-release-readiness.md +64 -0
- package/delivery/v1.5.0-release-readiness.md +62 -0
- package/docs/PUBLIC_DISCOVERY.md +1 -1
- package/docs/industry-user-trial-guide.md +343 -0
- package/docs/quickstart.md +10 -0
- package/docs/v1.4.0-writing-boundary.md +42 -0
- package/docs/v1.4.0-writing-workflow-quickstart.md +83 -0
- package/docs/v1.5.0-knowledge-pack-runtime.md +100 -0
- package/gemini-extension.json +1 -1
- package/knowledge/README.md +6 -3
- package/package.json +10 -1
- package/prompts/README.md +4 -0
- package/prompts/evaluation-policy.md +33 -0
- package/prompts/evaluations/engineering-document-writing-fixtures.json +129 -0
- package/prompts/evaluations/engineering-document-writing-scorecard.json +108 -0
- package/prompts/evaluations/engineering-knowledge-pack-scorecard.json +57 -0
- package/prompts/evaluations/skill-runtime/README.md +15 -0
- package/prompts/evaluations/skill-runtime/raw/codex-scheme-writing-sample.md +111 -0
- package/prompts/evaluations/skill-runtime/raw/codex-tender-writing-sample.md +108 -0
- package/prompts/evaluations/skill-runtime/raw/workbuddy-scheme-writing-sample.md +228 -0
- package/prompts/evaluations/skill-runtime/raw/workbuddy-tender-writing-sample.md +143 -0
- package/prompts/evaluations/skill-runtime/v1.4.0-writing-host-scorecard-review.md +29 -0
- package/prompts/evaluations/skill-runtime/v1.4.0-writing-host-validation.json +112 -0
- package/prompts/evaluations/skill-runtime/v1.4.0-writing-host-validation.md +43 -0
- package/prompts/prompt-registry.md +8 -2
- package/rag/README.md +4 -0
- package/runtime/archsight-aios.manifest.json +227 -8
- package/runtime/capability-adapters.json +13 -0
- package/runtime/capability-registry.json +23 -2
- package/runtime/skill-routing.md +19 -4
- package/scripts/build-prompt-run-pack.mjs +27 -9
- package/scripts/validate-knowledge-pack.mjs +96 -0
- package/scripts/validate-prompt-fixtures.mjs +31 -10
- package/scripts/validate-prompt-scorecard.mjs +22 -6
- package/scripts/validate-skill-runtime-evidence.mjs +125 -0
- package/skills/README.md +29 -3
- package/skills/aios/SKILL.md +24 -10
- package/skills/aios-commercial-tender/SKILL.md +2 -0
- package/skills/aios-construction-scheme/SKILL.md +7 -3
- package/skills/aios-contract-audit/SKILL.md +121 -0
- package/skills/aios-contract-audit/agents/openai.yaml +4 -0
- package/skills/aios-contract-audit/prompts/basic-prompt.md +85 -0
- package/skills/aios-contract-draft/SKILL.md +130 -0
- package/skills/aios-contract-draft/agents/openai.yaml +4 -0
- package/skills/aios-contract-draft/prompts/basic-prompt.md +76 -0
- package/skills/aios-daily/SKILL.md +51 -0
- package/skills/aios-daily/agents/openai.yaml +4 -0
- package/skills/aios-daily-write/SKILL.md +116 -0
- package/skills/aios-daily-write/agents/openai.yaml +4 -0
- package/skills/aios-daily-write/prompts/basic-prompt.md +72 -0
- package/skills/aios-knowledge/SKILL.md +14 -3
- package/skills/aios-meeting/SKILL.md +52 -0
- package/skills/aios-meeting/agents/openai.yaml +4 -0
- package/skills/aios-meeting-write/SKILL.md +117 -0
- package/skills/aios-meeting-write/agents/openai.yaml +4 -0
- package/skills/aios-meeting-write/prompts/basic-prompt.md +72 -0
- package/skills/aios-review/SKILL.md +9 -6
- package/skills/aios-runtime/SKILL.md +17 -7
- package/skills/aios-scheme/SKILL.md +50 -0
- package/skills/aios-scheme/agents/openai.yaml +4 -0
- package/skills/aios-scheme-audit/SKILL.md +113 -0
- package/skills/aios-scheme-audit/agents/openai.yaml +4 -0
- package/skills/aios-scheme-audit/prompts/basic-prompt.md +90 -0
- package/skills/aios-scheme-write/SKILL.md +132 -0
- package/skills/aios-scheme-write/agents/openai.yaml +4 -0
- package/skills/aios-scheme-write/prompts/basic-prompt.md +83 -0
- package/skills/aios-tender/SKILL.md +50 -0
- package/skills/aios-tender/agents/openai.yaml +4 -0
- package/skills/aios-tender-audit/SKILL.md +119 -0
- package/skills/aios-tender-audit/agents/openai.yaml +4 -0
- package/skills/aios-tender-audit/prompts/basic-prompt.md +94 -0
- package/skills/aios-tender-write/SKILL.md +130 -0
- package/skills/aios-tender-write/agents/openai.yaml +4 -0
- package/skills/aios-tender-write/prompts/basic-prompt.md +82 -0
- package/skills/archsight-aios/SKILL.md +17 -5
- package/skills/engineering-business-starter-kit.md +21 -7
- package/templates/README.md +29 -4
- package/templates/document-writing/draft.md +15 -0
- package/templates/document-writing/final.md +16 -0
- package/templates/document-writing/material-index.md +18 -0
- package/templates/document-writing/review-notes.md +18 -0
- package/templates/document-writing/source-normalized.md +20 -0
- package/templates/document-writing/writing-brief.md +23 -0
- package/templates/document-writing-samples/scheme/README.md +16 -0
- package/templates/document-writing-samples/scheme/draft.md +25 -0
- package/templates/document-writing-samples/scheme/final.md +20 -0
- package/templates/document-writing-samples/scheme/material-index.md +23 -0
- package/templates/document-writing-samples/scheme/review-notes.md +23 -0
- package/templates/document-writing-samples/scheme/source-normalized.md +35 -0
- package/templates/document-writing-samples/scheme/writing-brief.md +26 -0
- package/templates/document-writing-samples/tender/README.md +16 -0
- package/templates/document-writing-samples/tender/draft.md +27 -0
- package/templates/document-writing-samples/tender/final.md +20 -0
- package/templates/document-writing-samples/tender/material-index.md +23 -0
- package/templates/document-writing-samples/tender/review-notes.md +23 -0
- package/templates/document-writing-samples/tender/source-normalized.md +34 -0
- package/templates/document-writing-samples/tender/writing-brief.md +26 -0
- package/templates/knowledge-pack/README.md +30 -0
- package/templates/knowledge-pack/clause-map.md +11 -0
- package/templates/knowledge-pack/entity-relation-map.md +18 -0
- package/templates/knowledge-pack/eval-questions.md +13 -0
- package/templates/knowledge-pack/knowledge-pack.source.json +107 -0
- package/templates/knowledge-pack/review-notes.md +14 -0
- package/templates/knowledge-pack/source-register.md +13 -0
- package/templates/knowledge-pack/standard-register.md +10 -0
- package/templates/knowledge-pack-samples/scheme-review/README.md +18 -0
- package/templates/knowledge-pack-samples/scheme-review/clause-map.md +8 -0
- package/templates/knowledge-pack-samples/scheme-review/entity-relation-map.md +17 -0
- package/templates/knowledge-pack-samples/scheme-review/eval-questions.md +9 -0
- package/templates/knowledge-pack-samples/scheme-review/knowledge-pack.source.json +251 -0
- package/templates/knowledge-pack-samples/scheme-review/review-notes.md +8 -0
- package/templates/knowledge-pack-samples/scheme-review/source-register.md +9 -0
- package/templates/knowledge-pack-samples/scheme-review/standard-register.md +9 -0
- package/templates/project-ai/.ai/agent-routing.md +6 -2
- package/templates/project-ai/.ai/skills.md +29 -3
- package/vision/README.md +1 -0
- package/vision/roadmap.md +22 -3
- package/vision/v1.4.0-engineering-document-workflow.md +205 -0
- package/workflows/rag-pipeline.md +14 -9
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
# v1.5.0 Knowledge Pack 与本地 Reference Runtime
|
|
2
|
+
|
|
3
|
+
v1.5.0 的主线是把 AIOS 从“能写工程文档”推进到“能治理工程知识”。核心交付不是新增一批松散 Prompt,而是引入 AIOS 原生知识资产:`Knowledge Pack`。
|
|
4
|
+
|
|
5
|
+
## 版本定位
|
|
6
|
+
|
|
7
|
+
Knowledge Pack 是可编译、可查询、可评估的工程知识资产。它把规范摘录、企业标准、项目资料、历史审查口径和人工复核记录治理为一个统一对象,再交给 Skill、RAG / GraphRAG 流程和 Capability Runtime 使用。
|
|
8
|
+
|
|
9
|
+
本版本同时提供本地 Reference Runtime:`knowledge.norm_lookup` 可以查询编译后的 Knowledge Pack,返回 `status`、`citations`、`applicability`、`sourceVersion` 和 `notes`,并按 Capability 仲裁规则决定是否 `proceed`、`hold` 或升级人工复核。
|
|
10
|
+
|
|
11
|
+
## Knowledge Pack 文件链
|
|
12
|
+
|
|
13
|
+
```text
|
|
14
|
+
knowledge-pack.source.json
|
|
15
|
+
source-register.md
|
|
16
|
+
standard-register.md
|
|
17
|
+
clause-map.md
|
|
18
|
+
entity-relation-map.md
|
|
19
|
+
eval-questions.md
|
|
20
|
+
review-notes.md
|
|
21
|
+
|
|
|
22
|
+
v
|
|
23
|
+
compiled/knowledge-pack.json
|
|
24
|
+
|
|
|
25
|
+
v
|
|
26
|
+
knowledge:lookup / knowledge:eval / knowledge.norm_lookup
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
`knowledge-pack.source.json` 是结构化源,Markdown 文件用于业务人员阅读、复核和交接。编译产物 `compiled/knowledge-pack.json` 是 Runtime 消费对象。
|
|
30
|
+
|
|
31
|
+
## CLI
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
archsight-aios knowledge:init --sample --name scheme-review
|
|
35
|
+
archsight-aios knowledge:validate --name scheme-review
|
|
36
|
+
archsight-aios knowledge:compile --name scheme-review
|
|
37
|
+
archsight-aios knowledge:inspect --name scheme-review
|
|
38
|
+
archsight-aios knowledge:lookup --pack scheme-review/compiled/knowledge-pack.json --query "高支模方案是否应检查计算书"
|
|
39
|
+
archsight-aios knowledge:eval --name scheme-review
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
发布验证入口:
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
npm run validate:knowledge-pack
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
该命令会验证样板工作台、编译 Knowledge Pack、检查 inspect 摘要、执行 lookup、跑 eval gate,并通过 `capability:call` 验证本地 `knowledge.norm_lookup` MCP Reference Runtime。
|
|
49
|
+
|
|
50
|
+
## Reference Runtime 结果契约
|
|
51
|
+
|
|
52
|
+
```json
|
|
53
|
+
{
|
|
54
|
+
"status": "found",
|
|
55
|
+
"citations": [
|
|
56
|
+
{
|
|
57
|
+
"sourceId": "SRC-SYN-SCHEME",
|
|
58
|
+
"standardId": "STD-SYN-SCHEME",
|
|
59
|
+
"sourceVersion": "SYN-2026.01",
|
|
60
|
+
"clauseId": "CLAUSE-HIGH-FORMWORK",
|
|
61
|
+
"clauseNo": "S-2.1",
|
|
62
|
+
"title": "高支模方案计算书要求",
|
|
63
|
+
"pageRange": "p.7",
|
|
64
|
+
"reviewStatus": "reviewed"
|
|
65
|
+
}
|
|
66
|
+
],
|
|
67
|
+
"applicability": "applicable",
|
|
68
|
+
"sourceVersion": "SYN-2026.01",
|
|
69
|
+
"notes": "命中高支模计算书口径;缺计算书时不得判断方案通过。"
|
|
70
|
+
}
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
`status` 支持:
|
|
74
|
+
|
|
75
|
+
- `found`:命中 Knowledge Pack。
|
|
76
|
+
- `not_found`:未命中,不得用模型常识补成规范结论。
|
|
77
|
+
- `conflict`:命中冲突口径,应阻断自动结论。
|
|
78
|
+
- `inapplicable`:版本、地区、专业或条件不适用。
|
|
79
|
+
- `error`:Runtime 或数据错误。
|
|
80
|
+
|
|
81
|
+
`applicability` 支持:
|
|
82
|
+
|
|
83
|
+
- `applicable`
|
|
84
|
+
- `not_applicable`
|
|
85
|
+
- `need_context`
|
|
86
|
+
|
|
87
|
+
## 与 Skill 的关系
|
|
88
|
+
|
|
89
|
+
- `aios-knowledge`:生产和维护 Knowledge Pack。
|
|
90
|
+
- `aios-runtime`:设计 Knowledge Pack 进入 RAG / GraphRAG / Tool Calling 的方式。
|
|
91
|
+
- `aios-review`:审查引用、版本、越权结论和 eval gate。
|
|
92
|
+
- `aios-scheme-audit`:在专项施工方案复核中优先使用 Knowledge Pack 和 `knowledge.norm_lookup` 证据;缺工具证据时标注 `需核验`。已使用 `aios-construction-scheme` 的团队可继续使用原领域型入口。
|
|
93
|
+
|
|
94
|
+
## 边界
|
|
95
|
+
|
|
96
|
+
- v1.5.0 不提供生产级法规 / 规范数据库。
|
|
97
|
+
- v1.5.0 不承诺自动合规判定。
|
|
98
|
+
- 未授权规范全文不得进入仓库。
|
|
99
|
+
- 合成样板只验证知识治理结构和 Runtime 契约,不代表真实规范条文。
|
|
100
|
+
- `published` 只表示包内资料通过本项目复核,不替代法务、总工、专家、审图或注册人员签审。
|
package/gemini-extension.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "archsight-aios",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.0",
|
|
4
4
|
"description": "面向建筑行业知识工作从业者与 AI 研发团队的 Skills、Workflow 与多 Agent 工具包 / Building-industry AI agent skills for BIM, IFC, RAG, GraphRAG, project evidence work, code review, and runtime governance.",
|
|
5
5
|
"contextFileName": "GEMINI.md"
|
|
6
6
|
}
|
package/knowledge/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Knowledge
|
|
2
2
|
|
|
3
|
-
`knowledge/`
|
|
3
|
+
`knowledge/` 保存建筑行业知识体系和治理政策。v1.5.0 后,真正可运行的知识资产以 `Knowledge Pack` 为核心对象,模板和样板位于 `templates/knowledge-pack/` 与 `templates/knowledge-pack-samples/`。
|
|
4
4
|
|
|
5
5
|
推荐方向:
|
|
6
6
|
|
|
@@ -12,9 +12,12 @@
|
|
|
12
12
|
- 结构知识
|
|
13
13
|
- 审查规则
|
|
14
14
|
|
|
15
|
-
该目录未来应支撑 GraphRAG、知识图谱、条文结构化和智能审查。
|
|
16
|
-
|
|
17
15
|
当前入口:
|
|
18
16
|
|
|
19
17
|
- [领域分类](domain-taxonomy.md)
|
|
20
18
|
- [知识来源登记](source-register.md)
|
|
19
|
+
- [v1.5.0 Knowledge Pack 与本地 Reference Runtime](../docs/v1.5.0-knowledge-pack-runtime.md)
|
|
20
|
+
|
|
21
|
+
## Knowledge Pack 关系
|
|
22
|
+
|
|
23
|
+
Knowledge Pack 把来源、版本、条文、实体、关系、查询规则、评估问题和人工复核状态编译成 `archsight-aios.knowledge-pack`,再交给 `knowledge.norm_lookup`、RAG / GraphRAG 管线和专项 Skill 使用。
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@archsight/aios",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.0",
|
|
4
4
|
"description": "面向建筑行业知识工作从业者与 AI 研发团队的 Skills、Workflow 与多 Agent 工具包 / Building-industry AI agent skills for BIM, IFC, RAG, GraphRAG, project evidence work, code review, and runtime governance.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"homepage": "https://github.com/ArchSightLabs/archsight-aios#readme",
|
|
@@ -23,7 +23,11 @@
|
|
|
23
23
|
"construction-ai",
|
|
24
24
|
"building-ai",
|
|
25
25
|
"aec",
|
|
26
|
+
"tender",
|
|
27
|
+
"technical-bid",
|
|
28
|
+
"scheme-audit",
|
|
26
29
|
"building-code",
|
|
30
|
+
"knowledge-pack",
|
|
27
31
|
"project-evidence-work",
|
|
28
32
|
"agent-skills",
|
|
29
33
|
"ai-agent",
|
|
@@ -51,11 +55,16 @@
|
|
|
51
55
|
"validate:prompts": "node ./scripts/validate-prompt-fixtures.mjs",
|
|
52
56
|
"validate:prompt-run-pack": "node ./scripts/build-prompt-run-pack.mjs --check",
|
|
53
57
|
"validate:public-advisory-run-pack": "node ./scripts/build-prompt-run-pack.mjs --fixture prompts/evaluations/engineering-business-public-advisory-fixtures.json --check",
|
|
58
|
+
"validate:document-writing-run-pack": "node ./scripts/build-prompt-run-pack.mjs --fixture prompts/evaluations/engineering-document-writing-fixtures.json --check",
|
|
54
59
|
"validate:prompt-run-results": "node ./scripts/validate-prompt-run-results.mjs --check-template",
|
|
55
60
|
"validate:prompt-outputs": "node ./scripts/validate-prompt-model-outputs.mjs",
|
|
56
61
|
"validate:prompt-scorecard": "node ./scripts/validate-prompt-scorecard.mjs",
|
|
62
|
+
"validate:document-writing-scorecard": "node ./scripts/validate-prompt-scorecard.mjs",
|
|
63
|
+
"validate:skill-runtime-evidence": "node ./scripts/validate-skill-runtime-evidence.mjs",
|
|
64
|
+
"validate:knowledge-pack": "node ./scripts/validate-knowledge-pack.mjs",
|
|
57
65
|
"build:prompt-run-pack": "node ./scripts/build-prompt-run-pack.mjs --out prompts/evaluations/engineering-business-basic-run-pack.generated.json",
|
|
58
66
|
"build:public-advisory-run-pack": "node ./scripts/build-prompt-run-pack.mjs --fixture prompts/evaluations/engineering-business-public-advisory-fixtures.json --out prompts/evaluations/engineering-business-public-advisory-run-pack.generated.json",
|
|
67
|
+
"build:document-writing-run-pack": "node ./scripts/build-prompt-run-pack.mjs --fixture prompts/evaluations/engineering-document-writing-fixtures.json --out prompts/evaluations/engineering-document-writing-run-pack.generated.json",
|
|
59
68
|
"analyze:prompt-run-results": "node ./scripts/analyze-prompt-run-results.mjs",
|
|
60
69
|
"test": "node ./tests/cli.test.mjs"
|
|
61
70
|
},
|
package/prompts/README.md
CHANGED
|
@@ -16,7 +16,11 @@ Prompt 会腐化,因此不能只保存文本本身,必须保存评估和维
|
|
|
16
16
|
对比验证记录见 [工程业务管理基础提示词对比验证](evaluations/engineering-business-basic-prompts-2026-06-16.md)。
|
|
17
17
|
advisory 来源信号复核见 [工程业务基础提示词 advisory 复核说明](evaluations/engineering-business-basic-advisory-validation-2026-06-16.md)。
|
|
18
18
|
结构化评分卡见 [工程业务管理基础提示词评分卡](evaluations/engineering-business-basic-scorecard.json),可用 `npm run validate:prompt-scorecard` 校验。
|
|
19
|
+
写作型评分卡见 [工程文档写作评分卡](evaluations/engineering-document-writing-scorecard.json),同样由 `npm run validate:prompt-scorecard` 或 `npm run validate:document-writing-scorecard` 校验。
|
|
20
|
+
Knowledge Pack 评分卡见 [工程知识包评分卡](evaluations/engineering-knowledge-pack-scorecard.json),由 `npm run validate:knowledge-pack` 校验,并覆盖来源治理、版本适用性、Runtime 查询和 eval gate。
|
|
19
21
|
weak/basic 运行包可用 `npm run build:prompt-run-pack` 生成,生成前可用 `npm run validate:prompt-run-pack` 校验。
|
|
22
|
+
写作型 Skill 运行包使用 `npm run build:document-writing-run-pack` 生成,生成前可用 `npm run validate:document-writing-run-pack` 校验。
|
|
23
|
+
真实宿主触发证据见 [Skill Runtime Evidence](evaluations/skill-runtime/),可用 `npm run validate:skill-runtime-evidence` 校验归档结构。
|
|
20
24
|
weak/basic 运行结果模板可用 `node ./scripts/validate-prompt-run-results.mjs --init <file>` 生成,模板和真实结果可用 `npm run validate:prompt-run-results` 或 `--file` 校验。
|
|
21
25
|
weak/basic 运行结果报告可用 `npm run analyze:prompt-run-results -- --file <results> --out <report>` 生成。
|
|
22
26
|
输出结构样例见 [工程业务管理基础模型输出样例](evaluations/engineering-business-basic-model-output.example.json),可用 `npm run validate:prompt-outputs` 校验。
|
|
@@ -30,6 +30,39 @@ npm run validate:prompts
|
|
|
30
30
|
|
|
31
31
|
该检查不替代真实模型输出评估,但能保证 6 类基础场景、抽象来源信号、必备输出结构、禁止结论和敏感信息边界没有被破坏。
|
|
32
32
|
|
|
33
|
+
## 工程文档写作提示词回归
|
|
34
|
+
|
|
35
|
+
工程文档写作型提示词使用 `prompts/evaluations/engineering-document-writing-fixtures.json` 作为脱敏回归基线,当前覆盖 `aios-tender-write` 和 `aios-scheme-write` 两类生成 / 改写任务;`aios-contract-draft`、`aios-daily-write` 和 `aios-meeting-write` 先按 Skill 结构测试纳入边界,后续可补充独立 fixture。
|
|
36
|
+
|
|
37
|
+
该 fixture 不验证模型真实文采,也不证明可以直接交付客户;它只检查写作型 Skill 是否稳定保留:
|
|
38
|
+
|
|
39
|
+
- Markdown 工作母版。
|
|
40
|
+
- 资料来源、写作 brief 和历史素材复用判断。
|
|
41
|
+
- 章节初稿 / 改写稿和待补占位。
|
|
42
|
+
- 禁止编造、禁止越权结论和人工复核边界。
|
|
43
|
+
- 生成后交回对应审核门禁:`aios-tender-audit`、`aios-contract-audit`、`aios-construction-daily`、`aios-construction-meeting` 或 `aios-scheme-audit`;历史流程中的 `aios-commercial-tender`、`aios-commercial-contract`、`aios-construction-daily`、`aios-construction-meeting` 和 `aios-construction-scheme` 继续保留。
|
|
44
|
+
|
|
45
|
+
若需要批量运行写作 weak/basic 对照输入,使用:
|
|
46
|
+
|
|
47
|
+
```bash
|
|
48
|
+
npm run validate:document-writing-run-pack
|
|
49
|
+
npm run build:document-writing-run-pack
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
写作运行包包含 2 个 case 的普通提示词和基础提示词两组输入,共 4 条 run item。该步骤只组织脱敏 / 虚构输入和 prompt 文本,不调用模型。
|
|
53
|
+
|
|
54
|
+
写作型评分卡保存在 `prompts/evaluations/engineering-document-writing-scorecard.json`,用于固定来源链、历史素材复用、初稿可操作性、边界安全、审核门禁和交接可读性 6 个维度。修改写作 fixture、写作 prompt 或评分维度后,运行:
|
|
55
|
+
|
|
56
|
+
```bash
|
|
57
|
+
npm run validate:document-writing-scorecard
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
真实宿主触发证据保存在 `prompts/evaluations/skill-runtime/`。该目录允许记录 blocked / uncertain 状态,但不能把 blocked case 写成通过;只有原始输出已归档且能确认真实触发对应 Skill 时,才允许标记 `skillRuntimeConfirmed=yes`。
|
|
61
|
+
|
|
62
|
+
```bash
|
|
63
|
+
npm run validate:skill-runtime-evidence
|
|
64
|
+
```
|
|
65
|
+
|
|
33
66
|
普通提示词与基础提示词的结构化比较保存在 `prompts/evaluations/engineering-business-basic-scorecard.json`。修改 fixture、基础提示词或评分维度后,运行:
|
|
34
67
|
|
|
35
68
|
```bash
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": 1,
|
|
3
|
+
"name": "engineering-document-writing-fixtures",
|
|
4
|
+
"version": "0.1",
|
|
5
|
+
"dataBoundary": "De-identified engineering document writing fixtures. Customer names, people, locations, dates, amounts, project numbers, and raw source documents are synthetic or abstracted.",
|
|
6
|
+
"sourceBoundary": "Source signals preserve writing-task shape only: source normalization, historical material reuse, draft generation, and review-gate handoff.",
|
|
7
|
+
"cases": [
|
|
8
|
+
{
|
|
9
|
+
"id": "tender-writing-historical-material-reuse",
|
|
10
|
+
"skillId": "aios-tender-write",
|
|
11
|
+
"promptPath": "skills/aios-tender-write/prompts/basic-prompt.md",
|
|
12
|
+
"scenario": "基于招标要求、评分点、用户初稿和历史标书素材生成技术标章节工作母版",
|
|
13
|
+
"sourceSignals": [
|
|
14
|
+
"source-shape:technical bid writing task with scoring points and historical material snippets",
|
|
15
|
+
"source-shape:user draft needs rewriting into a markdown working draft",
|
|
16
|
+
"boundary-shape:historical project facts cannot be copied into the new project without evidence"
|
|
17
|
+
],
|
|
18
|
+
"advisoryComparison": [
|
|
19
|
+
"普通提示词容易直接扩写成顺滑正文,忽略来源链和本项目事实缺口。",
|
|
20
|
+
"写作型基础提示词要求先建立资料来源、写作 brief、素材复用判断和审核门禁。"
|
|
21
|
+
],
|
|
22
|
+
"weakPrompt": "请根据这些招标要求和历史标书,帮我写一版技术标章节。",
|
|
23
|
+
"inputSummary": [
|
|
24
|
+
"输入包含技术标要求、评分点摘要、用户初稿和历史标书片段。",
|
|
25
|
+
"历史标书含有旧项目名称、工期、人员和设备表述,需要先判断是否可复用。",
|
|
26
|
+
"缺少本项目图纸、组织机构、资源计划和证明材料时,只能输出待补占位。"
|
|
27
|
+
],
|
|
28
|
+
"sampleInput": [
|
|
29
|
+
"资料类型:技术标章节生成任务。",
|
|
30
|
+
"招标要求摘要:需说明施工总体部署、进度计划、质量安全文明施工和资源配置;评分点要求章节与措施一一对应。",
|
|
31
|
+
"用户初稿:希望复用历史项目中的总体部署和安全文明施工段落,但本项目施工组织、设备、人员和工期尚未确认。",
|
|
32
|
+
"历史素材片段:旧项目写有项目名称、管理人员、设备型号、工期安排和现场布置描述。",
|
|
33
|
+
"资料缺口:未提供招标原文页码、图纸、项目组织架构、资源计划、证明材料和最终投标格式要求。"
|
|
34
|
+
],
|
|
35
|
+
"requiredPromptTerms": [
|
|
36
|
+
"Markdown",
|
|
37
|
+
"复用级别",
|
|
38
|
+
"评分点到章节映射",
|
|
39
|
+
"审核门禁交接",
|
|
40
|
+
"aios-commercial-tender"
|
|
41
|
+
],
|
|
42
|
+
"expectedOutputShape": [
|
|
43
|
+
"先列资料来源和写作 brief。",
|
|
44
|
+
"把历史素材按可复用改写、仅参考、不可套用、需人工确认分级。",
|
|
45
|
+
"输出评分点到章节映射和 Markdown 章节初稿。",
|
|
46
|
+
"缺少依据时写待补占位,并交给审核 Skill 复核。"
|
|
47
|
+
],
|
|
48
|
+
"expectedStrongSections": [
|
|
49
|
+
"资料来源清单",
|
|
50
|
+
"写作 brief",
|
|
51
|
+
"历史素材匹配表",
|
|
52
|
+
"评分点到章节映射",
|
|
53
|
+
"章节初稿 / 改写稿",
|
|
54
|
+
"审核门禁交接"
|
|
55
|
+
],
|
|
56
|
+
"weakFailureModes": [
|
|
57
|
+
"直接套用旧项目事实。",
|
|
58
|
+
"不区分评分点、章节草稿和待补资料。",
|
|
59
|
+
"把生成内容当成正式投标定稿。"
|
|
60
|
+
],
|
|
61
|
+
"bannedClaims": [
|
|
62
|
+
"中标概率",
|
|
63
|
+
"评标结论",
|
|
64
|
+
"最终投标决策"
|
|
65
|
+
]
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"id": "scheme-writing-expert-comments",
|
|
69
|
+
"skillId": "aios-scheme-write",
|
|
70
|
+
"promptPath": "skills/aios-scheme-write/prompts/basic-prompt.md",
|
|
71
|
+
"scenario": "基于方案初稿、历史方案、工程概况和专家意见生成专项施工方案章节工作母版",
|
|
72
|
+
"sourceSignals": [
|
|
73
|
+
"source-shape:special construction scheme writing task with expert comments and historical scheme material",
|
|
74
|
+
"source-shape:scheme draft needs rewriting into a markdown working draft",
|
|
75
|
+
"boundary-shape:calculation correctness and approval outcomes require professional review"
|
|
76
|
+
],
|
|
77
|
+
"advisoryComparison": [
|
|
78
|
+
"普通提示词容易把专家意见改成完整正文,并默认计算、附图和审批已经满足。",
|
|
79
|
+
"写作型基础提示词要求保留危险源、计算书缺口、专家意见回查和审核门禁。"
|
|
80
|
+
],
|
|
81
|
+
"weakPrompt": "请根据方案初稿、专家意见和历史方案,帮我写一版专项施工方案。",
|
|
82
|
+
"inputSummary": [
|
|
83
|
+
"输入包含工程概况、专项施工方案初稿、历史方案素材和专家意见。",
|
|
84
|
+
"历史方案中的旧项目条件、设备参数和验收口径不能自动套入新项目。",
|
|
85
|
+
"缺少计算书、附图、危大工程审批或专业复核时,只能输出待补占位。"
|
|
86
|
+
],
|
|
87
|
+
"sampleInput": [
|
|
88
|
+
"资料类型:专项施工方案章节生成任务。",
|
|
89
|
+
"工程概况摘要:本项目需要补充关键工序、危险源控制、检查验收、应急措施和交底要点。",
|
|
90
|
+
"专家意见摘要:需回查危险源识别、计算书目录、附图一致性、验收要求和应急措施。",
|
|
91
|
+
"历史方案片段:旧项目包含设备型号、荷载参数、平面布置和验收流程。",
|
|
92
|
+
"资料缺口:未提供本项目计算书全文、附图、设备厂家资料、专项审批记录和安全负责人确认意见。"
|
|
93
|
+
],
|
|
94
|
+
"requiredPromptTerms": [
|
|
95
|
+
"Markdown",
|
|
96
|
+
"复用级别",
|
|
97
|
+
"方案章节结构",
|
|
98
|
+
"危险源和控制措施占位表",
|
|
99
|
+
"aios-construction-scheme"
|
|
100
|
+
],
|
|
101
|
+
"expectedOutputShape": [
|
|
102
|
+
"先列资料来源和写作 brief。",
|
|
103
|
+
"把历史方案按可复用改写、仅参考、不可套用、需人工确认分级。",
|
|
104
|
+
"输出方案章节结构、Markdown 章节初稿、危险源占位表和待补资料。",
|
|
105
|
+
"不确认计算正确或审批通过,并交给审核 Skill 复核。"
|
|
106
|
+
],
|
|
107
|
+
"expectedStrongSections": [
|
|
108
|
+
"资料来源清单",
|
|
109
|
+
"写作 brief",
|
|
110
|
+
"历史素材匹配表",
|
|
111
|
+
"方案章节结构",
|
|
112
|
+
"方案章节初稿 / 改写稿",
|
|
113
|
+
"危险源和控制措施占位表",
|
|
114
|
+
"审核门禁交接"
|
|
115
|
+
],
|
|
116
|
+
"weakFailureModes": [
|
|
117
|
+
"直接套用旧项目参数和设备配置。",
|
|
118
|
+
"忽略专家意见、危险源和计算书缺口。",
|
|
119
|
+
"把方案初稿写成已经通过审批的定稿。"
|
|
120
|
+
],
|
|
121
|
+
"bannedClaims": [
|
|
122
|
+
"方案合格",
|
|
123
|
+
"计算正确",
|
|
124
|
+
"专家论证通过",
|
|
125
|
+
"审批通过"
|
|
126
|
+
]
|
|
127
|
+
}
|
|
128
|
+
]
|
|
129
|
+
}
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": 1,
|
|
3
|
+
"name": "engineering-document-writing-scorecard",
|
|
4
|
+
"version": "0.1",
|
|
5
|
+
"fixture": "prompts/evaluations/engineering-document-writing-fixtures.json",
|
|
6
|
+
"dataBoundary": "Structured comparison derived from de-identified engineering document writing fixtures. Do not include customer names, contacts, project names, exact amounts, or raw source documents.",
|
|
7
|
+
"minimumWeightedDelta": 1.2,
|
|
8
|
+
"criteria": [
|
|
9
|
+
{
|
|
10
|
+
"id": "source_traceability",
|
|
11
|
+
"weight": 20,
|
|
12
|
+
"description": "Keeps source list, provenance comments, and missing evidence visible instead of writing unsupported facts."
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"id": "material_reuse",
|
|
16
|
+
"weight": 18,
|
|
17
|
+
"description": "Classifies historical material reuse and prevents old project facts, parameters, people, equipment, dates, or claims from being copied."
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"id": "draft_actionability",
|
|
21
|
+
"weight": 17,
|
|
22
|
+
"description": "Produces a Markdown working draft and tables that engineering staff can continue editing."
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"id": "boundary_safety",
|
|
26
|
+
"weight": 18,
|
|
27
|
+
"description": "Avoids tender decisions, approval outcomes, calculation correctness, compliance conclusions, and other over-claims."
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"id": "review_gate",
|
|
31
|
+
"weight": 17,
|
|
32
|
+
"description": "Hands the generated draft to the correct review Skill with concrete issues to verify."
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"id": "handoff_readability",
|
|
36
|
+
"weight": 10,
|
|
37
|
+
"description": "Keeps the output readable for project, tender, technical, safety, and reviewer roles."
|
|
38
|
+
}
|
|
39
|
+
],
|
|
40
|
+
"cases": [
|
|
41
|
+
{
|
|
42
|
+
"caseId": "tender-writing-historical-material-reuse",
|
|
43
|
+
"winner": "basic",
|
|
44
|
+
"decisionBasis": "The basic writing prompt turns loose source material into a traceable Markdown workbench with scoring-point mapping, material reuse judgment, blocked old facts, and a tender review gate.",
|
|
45
|
+
"observedWeakFailures": [
|
|
46
|
+
"直接套用旧项目事实。",
|
|
47
|
+
"不区分评分点、章节草稿和待补资料。",
|
|
48
|
+
"把生成内容当成正式投标定稿。"
|
|
49
|
+
],
|
|
50
|
+
"basicPromptGains": [
|
|
51
|
+
"Keeps source list, writing brief, and historical material matching table before drafting.",
|
|
52
|
+
"Requires reuse levels and removes old project facts.",
|
|
53
|
+
"Hands scoring point response and bid-risk review to aios-commercial-tender."
|
|
54
|
+
],
|
|
55
|
+
"weakScores": {
|
|
56
|
+
"source_traceability": 2,
|
|
57
|
+
"material_reuse": 1,
|
|
58
|
+
"draft_actionability": 3,
|
|
59
|
+
"boundary_safety": 2,
|
|
60
|
+
"review_gate": 1,
|
|
61
|
+
"handoff_readability": 3
|
|
62
|
+
},
|
|
63
|
+
"basicScores": {
|
|
64
|
+
"source_traceability": 5,
|
|
65
|
+
"material_reuse": 5,
|
|
66
|
+
"draft_actionability": 4,
|
|
67
|
+
"boundary_safety": 5,
|
|
68
|
+
"review_gate": 5,
|
|
69
|
+
"handoff_readability": 4
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"caseId": "scheme-writing-expert-comments",
|
|
74
|
+
"winner": "basic",
|
|
75
|
+
"decisionBasis": "The basic writing prompt keeps calculations, drawings, expert comments, hazard controls, and approvals as evidence-bound placeholders, then routes the draft through the scheme review gate.",
|
|
76
|
+
"observedWeakFailures": [
|
|
77
|
+
"直接套用旧项目参数和设备配置。",
|
|
78
|
+
"忽略专家意见、危险源和计算书缺口。",
|
|
79
|
+
"把方案初稿写成已经通过审批的定稿。"
|
|
80
|
+
],
|
|
81
|
+
"basicPromptGains": [
|
|
82
|
+
"Separates reusable wording from project-specific equipment and calculation facts.",
|
|
83
|
+
"Forces hazard-control placeholders and missing calculation evidence into the draft.",
|
|
84
|
+
"Hands calculation gaps, expert comments, and safety review to aios-construction-scheme."
|
|
85
|
+
],
|
|
86
|
+
"weakScores": {
|
|
87
|
+
"source_traceability": 2,
|
|
88
|
+
"material_reuse": 1,
|
|
89
|
+
"draft_actionability": 3,
|
|
90
|
+
"boundary_safety": 1,
|
|
91
|
+
"review_gate": 1,
|
|
92
|
+
"handoff_readability": 3
|
|
93
|
+
},
|
|
94
|
+
"basicScores": {
|
|
95
|
+
"source_traceability": 5,
|
|
96
|
+
"material_reuse": 5,
|
|
97
|
+
"draft_actionability": 4,
|
|
98
|
+
"boundary_safety": 5,
|
|
99
|
+
"review_gate": 5,
|
|
100
|
+
"handoff_readability": 4
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
],
|
|
104
|
+
"overallDecision": {
|
|
105
|
+
"winner": "basic",
|
|
106
|
+
"notAClaim": "This scorecard validates deterministic fixture design and prompt guardrails; it does not prove real model performance or customer-ready document quality without skill-runtime output review."
|
|
107
|
+
}
|
|
108
|
+
}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": 1,
|
|
3
|
+
"name": "engineering-knowledge-pack-scorecard",
|
|
4
|
+
"version": "0.1",
|
|
5
|
+
"dataBoundary": "Quality gate for synthetic or authorized AIOS Knowledge Packs. It evaluates source governance, traceability, runtime lookup behavior, and eval coverage; it does not certify real regulatory compliance.",
|
|
6
|
+
"criteria": [
|
|
7
|
+
{
|
|
8
|
+
"id": "source_authority",
|
|
9
|
+
"weight": 15,
|
|
10
|
+
"description": "Every source has authorization, version, hash or locator, review status, and clear boundary text."
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"id": "version_applicability",
|
|
14
|
+
"weight": 15,
|
|
15
|
+
"description": "Standards and clauses preserve region, discipline, sourceVersion, effective status, and inapplicable version behavior."
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"id": "clause_structure",
|
|
19
|
+
"weight": 15,
|
|
20
|
+
"description": "Clauses are decomposed into objects, conditions, requirement, exceptions, applicability, evidence, and review status."
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"id": "graph_traceability",
|
|
24
|
+
"weight": 12,
|
|
25
|
+
"description": "Graph entities and relations retain source references and confidence, and never rely on unmarked model inference."
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"id": "runtime_lookup",
|
|
29
|
+
"weight": 18,
|
|
30
|
+
"description": "Reference Runtime returns status, citations, applicability, sourceVersion, and notes through the knowledge.norm_lookup contract."
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"id": "eval_gate",
|
|
34
|
+
"weight": 15,
|
|
35
|
+
"description": "Eval questions cover answerable, unanswerable, conflict, version mismatch, and need-context cases."
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"id": "human_review_boundary",
|
|
39
|
+
"weight": 10,
|
|
40
|
+
"description": "The pack keeps draft/reviewed/blocked/published states explicit and does not replace formal expert review."
|
|
41
|
+
}
|
|
42
|
+
],
|
|
43
|
+
"sampleCase": {
|
|
44
|
+
"packId": "scheme-review-reference",
|
|
45
|
+
"minimumPassingWeightedScore": 4.5,
|
|
46
|
+
"scores": {
|
|
47
|
+
"source_authority": 5,
|
|
48
|
+
"version_applicability": 5,
|
|
49
|
+
"clause_structure": 5,
|
|
50
|
+
"graph_traceability": 5,
|
|
51
|
+
"runtime_lookup": 5,
|
|
52
|
+
"eval_gate": 5,
|
|
53
|
+
"human_review_boundary": 5
|
|
54
|
+
},
|
|
55
|
+
"decisionBasis": "The sample pack is synthetic but complete: it declares source boundaries, compiles traceable clauses, exposes a local lookup runtime, and passes all deterministic eval cases."
|
|
56
|
+
}
|
|
57
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Skill Runtime Evidence
|
|
2
|
+
|
|
3
|
+
本目录保存真实宿主触发 Skill 的证据归档。
|
|
4
|
+
|
|
5
|
+
`skill-runtime` 只能来自宿主工具实际加载并触发 `$aios-*` Skill 后的原始输出,不接受把 `SKILL.md` 或 `basic-prompt.md` 当普通 prompt 粘贴运行的结果。
|
|
6
|
+
|
|
7
|
+
每次归档至少包含:
|
|
8
|
+
|
|
9
|
+
- 宿主名称、版本或可用性检查。
|
|
10
|
+
- AIOS 版本或 commit。
|
|
11
|
+
- 输入样板路径。
|
|
12
|
+
- 触发短指令。
|
|
13
|
+
- 是否能确认真实 Skill 触发。
|
|
14
|
+
- 原始输出全文路径。
|
|
15
|
+
- 若无法确认,写明 blocker,不得伪造 raw output。
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
# Codex Raw Output: aios-scheme-write
|
|
2
|
+
|
|
3
|
+
Host: Codex desktop current thread
|
|
4
|
+
Captured at: 2026-06-19
|
|
5
|
+
Skill loaded from: `C:\Users\white\.codex\skills\aios-scheme-write\SKILL.md`
|
|
6
|
+
Triggered skill: `aios-scheme-write`
|
|
7
|
+
Expected gate skill: `aios-construction-scheme`
|
|
8
|
+
Sample workspace: `templates/document-writing-samples/scheme`
|
|
9
|
+
Trigger prompt:
|
|
10
|
+
|
|
11
|
+
```text
|
|
12
|
+
$aios-scheme-write 请基于该工作台生成或改写 draft.md,并保留交给 aios-construction-scheme 的审核门禁。
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## 1. 写作任务判断
|
|
16
|
+
|
|
17
|
+
这是专项施工方案章节生成 / 改写任务,输入包含工程概况摘要、专家意见摘要、历史方案素材和素材复用索引,适用 `aios-scheme-write`。本输出只形成 Markdown 工作母版,不输出“方案合格 / 不合格 / 已通过审查”,也不替代总工、专家论证、危大工程审批、结构计算、监理或安全负责人。
|
|
18
|
+
|
|
19
|
+
## 2. 资料来源清单
|
|
20
|
+
|
|
21
|
+
| 序号 | 资料 | 版本 / 定位 | 当前用途 | 缺口 |
|
|
22
|
+
|---:|---|---|---|---|
|
|
23
|
+
| 1 | 工程概况摘要 | 示例版,方案概况 | 形成关键工序、危险源、验收和交底章节结构 | 缺少图纸编号 |
|
|
24
|
+
| 2 | 专家意见摘要 | 示例版,修改意见 | 回查危险源、计算书、附图、验收和交底要点 | 缺少专家签认页 |
|
|
25
|
+
| 3 | 历史方案素材 | 示例版,设备参数、验收流程 | 判断可复用章节表达 | 旧项目设备参数、图号和验收口径不得直接套用 |
|
|
26
|
+
|
|
27
|
+
## 3. 写作 brief
|
|
28
|
+
|
|
29
|
+
| 项目 | 内容 |
|
|
30
|
+
|---|---|
|
|
31
|
+
| 目标章节 | 关键工序、危险源控制、检查验收和交底要点 |
|
|
32
|
+
| 输出格式 | Markdown 工作母版 |
|
|
33
|
+
| 写作口径 | 只使用已提供资料,缺证据处保留 `待补` / `需核验` / `转人工复核` |
|
|
34
|
+
| 禁止结论 | 不输出方案合格、计算正确、专家论证通过、审批通过或现场安全满足 |
|
|
35
|
+
| 人工复核 | 技术负责人、总工、安全负责人、质量负责人、资料负责人 |
|
|
36
|
+
|
|
37
|
+
## 4. 历史素材匹配表
|
|
38
|
+
|
|
39
|
+
| 素材来源 | 原章节 / 原段落 | 本次可用位置 | 复用级别 | 需要删除的旧项目事实 | 需要补充的本项目证据 | 建议复核岗位 |
|
|
40
|
+
|---|---|---|---|---|---|---|
|
|
41
|
+
| 历史方案素材 | 关键工序描述 | 工艺流程 | 可复用改写 | 旧项目部位名称 | 本项目工序划分 | 技术负责人 |
|
|
42
|
+
| 历史方案素材 | 设备参数 | 计算和设备能力 | 不可套用 | 设备型号、荷载参数 | 本项目设备资料和计算书 | 总工 |
|
|
43
|
+
| 历史方案素材 | 验收流程 | 检查验收章节 | 仅参考 | 旧项目验收口径 | 本项目规范依据和验收要求 | 质量负责人 |
|
|
44
|
+
|
|
45
|
+
## 5. 方案章节结构
|
|
46
|
+
|
|
47
|
+
1. 工程概况与编制边界
|
|
48
|
+
2. 施工准备与关键工序
|
|
49
|
+
3. 危险源识别与控制措施
|
|
50
|
+
4. 检查验收与资料留痕
|
|
51
|
+
5. 应急措施
|
|
52
|
+
6. 班组交底要点
|
|
53
|
+
7. 待补资料和人工复核清单
|
|
54
|
+
|
|
55
|
+
## 6. 施工方案 Markdown 初稿 / 改写稿
|
|
56
|
+
|
|
57
|
+
### 工程概况与编制边界
|
|
58
|
+
|
|
59
|
+
本方案章节基于已提供的工程概况摘要、专家意见摘要和历史方案素材进行工作母版整理。当前资料能够支持章节框架、回查清单和通用管理表达,但不能支持具体图纸编号、设备参数、荷载取值、计算结论或审批状态。
|
|
60
|
+
|
|
61
|
+
图纸编号、计算书全文、设备厂家资料、专项审批记录和安全负责人确认意见均应作为 `待补` 项列入后续复核。
|
|
62
|
+
|
|
63
|
+
### 关键工序
|
|
64
|
+
|
|
65
|
+
关键工序章节建议围绕施工准备、工艺流程、过程控制、检查验收和应急处置展开。历史方案中的工艺流程表达可参考并改写,但必须删除旧项目部位名称、设备型号、参数和图号。
|
|
66
|
+
|
|
67
|
+
建议正文写法:
|
|
68
|
+
|
|
69
|
+
> 施工前应完成技术交底、作业条件确认、设备材料进场核查和安全防护准备。施工过程中按工序划分设置质量控制点、安全控制点和验收节点。具体工序划分、图纸编号、设备参数和检查频次待本项目资料补齐后确认。
|
|
70
|
+
|
|
71
|
+
### 危险源控制
|
|
72
|
+
|
|
73
|
+
危险源控制章节应把专家意见中的“危险源识别覆盖关键工序”拆成清单。每项危险源需绑定已有资料依据、控制措施、检查频次、责任岗位和待补资料;缺少本项目资料时不得写成已确认安全措施。
|
|
74
|
+
|
|
75
|
+
## 7. 危险源和控制措施占位表
|
|
76
|
+
|
|
77
|
+
| 序号 | 危险源 / 回查点 | 当前依据 | 控制措施草稿 | 待补资料 | 建议复核岗位 |
|
|
78
|
+
|---:|---|---|---|---|---|
|
|
79
|
+
| 1 | 关键工序危险源识别 | 专家意见摘要 | 按工序拆分危险源、控制措施和责任岗位 | 本项目工序划分 | 安全负责人 |
|
|
80
|
+
| 2 | 设备能力和参数 | 历史方案素材提示有设备参数 | 不写具体参数,仅列复核项 | 设备厂家资料、计算书全文 | 总工 |
|
|
81
|
+
| 3 | 检查验收 | 历史方案验收流程仅参考 | 建立检查验收清单和资料留痕 | 本项目规范依据、验收要求 | 质量负责人 |
|
|
82
|
+
|
|
83
|
+
## 8. 待补资料和人工复核清单
|
|
84
|
+
|
|
85
|
+
| 序号 | 待补内容 | 影响章节 | 建议复核岗位 |
|
|
86
|
+
|---:|---|---|---|
|
|
87
|
+
| 1 | 当前图纸编号 | 工程概况、附图引用 | 技术负责人 |
|
|
88
|
+
| 2 | 计算书全文 | 设备能力和安全系数 | 总工 |
|
|
89
|
+
| 3 | 设备厂家资料 | 机械设备参数 | 安全负责人 |
|
|
90
|
+
| 4 | 专家签认页和专项审批记录 | 专家意见回查、审批状态说明 | 项目负责人 / 资料负责人 |
|
|
91
|
+
|
|
92
|
+
## 9. 审核门禁交接
|
|
93
|
+
|
|
94
|
+
请将本 `draft.md` 交给 `aios-construction-scheme` 复核,重点检查:
|
|
95
|
+
|
|
96
|
+
- 危险源、控制措施、交底要点是否有方案原文或本项目条件依据。
|
|
97
|
+
- 规范、地方规程、危大工程判断是否缺少工具、项目资料或专家证据。
|
|
98
|
+
- 计算书、荷载、稳定、变形、设备能力和安全系数是否需要 `aios-structural` 或项目计算书复核。
|
|
99
|
+
- 是否把历史方案中的旧项目地点、参数、工艺、设备、图号或工期写成未经证实的本次事实。
|
|
100
|
+
- 是否存在方案合格、计算正确、专家论证通过、审批通过或现场安全满足等越权结论。
|
|
101
|
+
|
|
102
|
+
## 10. 输出自检
|
|
103
|
+
|
|
104
|
+
| 检查项 | 结果 |
|
|
105
|
+
|---|---|
|
|
106
|
+
| 是否包含资料来源清单 | 是 |
|
|
107
|
+
| 是否保留素材复用级别 | 是 |
|
|
108
|
+
| 是否保留 `待补` / `需核验` / `转人工复核` | 是 |
|
|
109
|
+
| 是否避免输出合格、计算正确或审批通过结论 | 是 |
|
|
110
|
+
| 是否明确 `aios-construction-scheme` 审核门禁 | 是 |
|
|
111
|
+
| 是否把 AI 草稿标为正式定稿 | 否 |
|