@hupan56/wlkj 2.7.12 → 3.1.2
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/bin/cli.js +1435 -1107
- package/package.json +29 -29
- package/templates/qoder/agents/insight-planning.md +1 -1
- package/templates/qoder/agents/insight-research.md +28 -15
- package/templates/qoder/commands/optional/wl-insight.md +161 -161
- package/templates/qoder/commands/optional/wl-report.md +20 -39
- package/templates/qoder/commands/optional/wl-status.md +4 -4
- package/templates/qoder/commands/wl-code.md +2 -2
- package/templates/qoder/commands/wl-design.md +6 -6
- package/templates/qoder/commands/wl-init.md +3 -3
- package/templates/qoder/commands/wl-prd.md +26 -13
- package/templates/qoder/commands/wl-req.md +43 -0
- package/templates/qoder/commands/wl-search.md +78 -47
- package/templates/qoder/commands/wl-task.md +343 -40
- package/templates/qoder/commands/wl-test.md +43 -17
- package/templates/qoder/config.yaml +52 -14
- package/templates/qoder/hooks/post-tool-use.py +181 -0
- package/templates/qoder/hooks/session-start.py +94 -23
- package/templates/qoder/hooks/stop-eval.py +207 -0
- package/templates/qoder/hooks/user-prompt-submit.py +139 -0
- package/templates/qoder/rules/wl-pipeline.md +85 -49
- package/templates/qoder/scripts/README.md +102 -0
- package/templates/qoder/scripts/capability/__init__.py +26 -0
- package/templates/qoder/scripts/capability/__main__.py +72 -0
- package/templates/qoder/scripts/capability/adapters/__init__.py +29 -0
- package/templates/qoder/scripts/capability/adapters/cli.py +316 -0
- package/templates/qoder/scripts/capability/adapters/mcp.py +334 -0
- package/templates/qoder/scripts/capability/adapters/qw.py +271 -0
- package/templates/qoder/scripts/capability/caps/__init__.py +27 -0
- package/templates/qoder/scripts/capability/caps/context.py +36 -0
- package/templates/qoder/scripts/capability/caps/cron.py +50 -0
- package/templates/qoder/scripts/capability/caps/identity.py +43 -0
- package/templates/qoder/scripts/capability/caps/memory.py +71 -0
- package/templates/qoder/scripts/capability/caps/notify.py +41 -0
- package/templates/qoder/scripts/capability/caps/present.py +48 -0
- package/templates/qoder/scripts/capability/caps/repo.py +31 -0
- package/templates/qoder/scripts/capability/caps/sandbox.py +43 -0
- package/templates/qoder/scripts/capability/chain.py +92 -0
- package/templates/qoder/scripts/capability/memory_chain.py +41 -0
- package/templates/qoder/scripts/capability/registry.py +246 -0
- package/templates/qoder/scripts/capability/registry_mcp.py +250 -0
- package/templates/qoder/scripts/capability/smoke_test.py +211 -0
- package/templates/qoder/scripts/capability/smoke_test_report.json +94 -0
- package/templates/qoder/scripts/deployment/setup/__init__.py +11 -0
- package/templates/qoder/scripts/deployment/setup/carriers.py +669 -0
- package/templates/qoder/scripts/deployment/setup/carriers_verify.py +148 -0
- package/templates/qoder/scripts/{init_doctor.py → deployment/setup/init_doctor.py} +100 -39
- package/templates/qoder/scripts/{install_qoderwork.py → deployment/setup/install_qoderwork.py} +48 -30
- package/templates/qoder/scripts/{platform_doctor.py → deployment/setup/platform_doctor.py} +271 -259
- package/templates/qoder/scripts/{repo_root.py → deployment/setup/repo_root.py} +9 -2
- package/templates/qoder/scripts/{setup.py → deployment/setup/setup.py} +143 -14
- package/templates/qoder/scripts/{setup_lanhu.py → deployment/setup/setup_lanhu.py} +979 -963
- package/templates/qoder/scripts/domain/design/__init__.py +0 -0
- package/templates/qoder/scripts/{fill_prototype.py → domain/design/fill_prototype.py} +17 -5
- package/templates/qoder/scripts/{gen_design_doc.py → domain/design/gen_design_doc.py} +406 -394
- package/templates/qoder/scripts/domain/kg/__init__.py +11 -0
- package/templates/qoder/scripts/domain/kg/build/__init__.py +0 -0
- package/templates/qoder/scripts/domain/kg/build/build_entity_registry.py +201 -0
- package/templates/qoder/scripts/domain/kg/build/build_relations.py +132 -0
- package/templates/qoder/scripts/{build_style_index.py → domain/kg/build/build_style_index.py} +50 -15
- package/templates/qoder/scripts/domain/kg/build/build_workflows.py +149 -0
- package/templates/qoder/scripts/{kg_build.py → domain/kg/build/kg_build.py} +685 -612
- package/templates/qoder/scripts/{kg_build_db.py → domain/kg/build/kg_build_db.py} +338 -327
- package/templates/qoder/scripts/{kg_incremental.py → domain/kg/build/kg_incremental.py} +425 -393
- package/templates/qoder/scripts/{learn_aggregate.py → domain/kg/build/learn_aggregate.py} +212 -201
- package/templates/qoder/scripts/domain/kg/extract/__init__.py +0 -0
- package/templates/qoder/scripts/{common → domain/kg/extract}/extract.py +430 -419
- package/templates/qoder/scripts/domain/kg/extract/test_extract.py +115 -0
- package/templates/qoder/scripts/{common → domain/kg/extract}/ts_extract.py +614 -536
- package/templates/qoder/scripts/domain/kg/graph/__init__.py +0 -0
- package/templates/qoder/scripts/{kg_link_db.py → domain/kg/graph/kg_link_db.py} +235 -224
- package/templates/qoder/scripts/domain/kg/graph/kg_semantic.py +683 -0
- package/templates/qoder/scripts/{kg.py → domain/kg/kg.py} +871 -708
- package/templates/qoder/scripts/domain/kg/kg_capabilities.py +182 -0
- package/templates/qoder/scripts/domain/kg/search/__init__.py +0 -0
- package/templates/qoder/scripts/{context_pack.py → domain/kg/search/context_pack.py} +45 -17
- package/templates/qoder/scripts/{enrich_prompt.py → domain/kg/search/enrich_prompt.py} +238 -226
- package/templates/qoder/scripts/domain/kg/search/prefetch.py +384 -0
- package/templates/qoder/scripts/{common → domain/kg/search}/search_engine.py +207 -205
- package/templates/qoder/scripts/{search_index.py → domain/kg/search/search_index.py} +210 -88
- package/templates/qoder/scripts/domain/kg/server/__init__.py +0 -0
- package/templates/qoder/scripts/domain/kg/server/kgd.py +549 -0
- package/templates/qoder/scripts/domain/kg/server/perf_bench.py +197 -0
- package/templates/qoder/scripts/domain/kg/storage/__init__.py +0 -0
- package/templates/qoder/scripts/{kg_duckdb.py → domain/kg/storage/kg_duckdb.py} +70 -45
- package/templates/qoder/scripts/domain/learning/__init__.py +0 -0
- package/templates/qoder/scripts/{learn.py → domain/learning/learn.py} +157 -146
- package/templates/qoder/scripts/domain/report/__init__.py +11 -0
- package/templates/qoder/scripts/{add_session.py → domain/report/add_session.py} +256 -244
- package/templates/qoder/scripts/{export.py → domain/report/export.py} +72 -4
- package/templates/qoder/scripts/{report.py → domain/report/report.py} +292 -281
- package/templates/qoder/scripts/domain/report/report_snapshot.py +261 -0
- package/templates/qoder/scripts/domain/report/role.py +39 -0
- package/templates/qoder/scripts/{status.py → domain/report/status.py} +737 -628
- package/templates/qoder/scripts/domain/report/status_snapshot.py +191 -0
- package/templates/qoder/scripts/domain/requirement/__init__.py +0 -0
- package/templates/qoder/scripts/{archive_prd.py → domain/requirement/archive_prd.py} +389 -377
- package/templates/qoder/scripts/domain/requirement/req.py +228 -0
- package/templates/qoder/scripts/domain/task/__init__.py +11 -0
- package/templates/qoder/scripts/{git_sync.py → domain/task/git_sync.py} +90 -50
- package/templates/qoder/scripts/{syncgate.py → domain/task/syncgate.py} +18 -7
- package/templates/qoder/scripts/domain/task/task.py +229 -0
- package/templates/qoder/scripts/domain/task/task_lifecycle.py +606 -0
- package/templates/qoder/scripts/domain/task/task_query.py +162 -0
- package/templates/qoder/scripts/domain/task/task_relations.py +425 -0
- package/templates/qoder/scripts/{team_sync.py → domain/task/team_sync.py} +101 -23
- package/templates/qoder/scripts/domain/task/zentao_sync.py +370 -0
- package/templates/qoder/scripts/foundation/__init__.py +0 -0
- package/templates/qoder/scripts/foundation/bootstrap.py +145 -0
- package/templates/qoder/scripts/foundation/core/__init__.py +0 -0
- package/templates/qoder/scripts/foundation/core/cmd_registry.py +112 -0
- package/templates/qoder/scripts/foundation/core/config.py +187 -0
- package/templates/qoder/scripts/{common → foundation/core}/paths.py +706 -400
- package/templates/qoder/scripts/foundation/data/__init__.py +0 -0
- package/templates/qoder/scripts/foundation/data/contract.py +317 -0
- package/templates/qoder/scripts/{common → foundation/data}/events.py +2 -2
- package/templates/qoder/scripts/foundation/data/result.py +223 -0
- package/templates/qoder/scripts/{common → foundation/data}/task_utils.py +427 -392
- package/templates/qoder/scripts/foundation/identity/__init__.py +0 -0
- package/templates/qoder/scripts/foundation/identity/check_publish.py +103 -0
- package/templates/qoder/scripts/{common → foundation/identity}/developer.py +239 -238
- package/templates/qoder/scripts/foundation/identity/guard.py +159 -0
- package/templates/qoder/scripts/{common → foundation/identity}/identity.py +132 -9
- package/templates/qoder/scripts/foundation/identity/roles.py +60 -0
- package/templates/qoder/scripts/foundation/integrations/__init__.py +0 -0
- package/templates/qoder/scripts/{common → foundation/integrations}/active_task.py +30 -15
- package/templates/qoder/scripts/{common → foundation/integrations}/feishu.py +11 -10
- package/templates/qoder/scripts/{common → foundation/integrations}/terms.py +3 -3
- package/templates/qoder/scripts/foundation/integrations/zentao_client.py +220 -0
- package/templates/qoder/scripts/foundation/io/__init__.py +0 -0
- package/templates/qoder/scripts/{common → foundation/io}/filelock.py +1 -1
- package/templates/qoder/scripts/{common → foundation/io}/reqid.py +1 -1
- package/templates/qoder/scripts/foundation/protocol/__init__.py +0 -0
- package/templates/qoder/scripts/foundation/protocol/duckdb_conn.py +39 -0
- package/templates/qoder/scripts/foundation/protocol/mcp_base.py +268 -0
- package/templates/qoder/scripts/foundation/utils/__init__.py +0 -0
- package/templates/qoder/scripts/{common → foundation/utils}/eval_api.py +12 -1
- package/templates/qoder/scripts/{common → foundation/utils}/pip_install.py +23 -6
- package/templates/qoder/scripts/{common → foundation/utils}/platform_guard.py +1 -1
- package/templates/qoder/scripts/orchestration/__init__.py +0 -0
- package/templates/qoder/scripts/orchestration/wlkj.py +185 -0
- package/templates/qoder/scripts/protocol/__init__.py +0 -0
- package/templates/qoder/scripts/protocol/browser/README.md +207 -0
- package/templates/qoder/scripts/protocol/browser/SKILL.md +265 -0
- package/templates/qoder/scripts/protocol/browser/config.env +9 -0
- package/templates/qoder/scripts/protocol/browser/references/cdp-api.md +110 -0
- package/templates/qoder/scripts/protocol/browser/references/migration-2.5.3.md +72 -0
- package/templates/qoder/scripts/protocol/browser/references/site-patterns/.gitkeep +0 -0
- package/templates/qoder/scripts/protocol/browser/scripts/browser-discovery.mjs +138 -0
- package/templates/qoder/scripts/protocol/browser/scripts/cdp-proxy.mjs +672 -0
- package/templates/qoder/scripts/protocol/browser/scripts/check-deps.mjs +206 -0
- package/templates/qoder/scripts/protocol/browser/scripts/find-url.mjs +253 -0
- package/templates/qoder/scripts/protocol/browser/scripts/match-site.mjs +46 -0
- package/templates/qoder/scripts/protocol/browser/templates/config.env.template +9 -0
- package/templates/qoder/scripts/protocol/mcp/__init__.py +11 -0
- package/templates/qoder/scripts/protocol/mcp/kg_mcp_server.py +478 -0
- package/templates/qoder/scripts/{lanhu_stdio_wrapper.py → protocol/mcp/lanhu_stdio_wrapper.py} +131 -119
- package/templates/qoder/scripts/protocol/mcp/mcp_doctor.py +548 -0
- package/templates/qoder/scripts/protocol/mcp/mcp_launcher.py +600 -0
- package/templates/qoder/scripts/protocol/mcp/mysql_mcp_server.py +461 -0
- package/templates/qoder/scripts/protocol/mcp/zentao_mcp_server.py +1920 -0
- package/templates/qoder/scripts/protocol/transports/__init__.py +56 -0
- package/templates/qoder/scripts/protocol/transports/base.py +87 -0
- package/templates/qoder/scripts/protocol/transports/cli.py +132 -0
- package/templates/qoder/scripts/protocol/transports/http.py +141 -0
- package/templates/qoder/scripts/protocol/transports/stdio.py +293 -0
- package/templates/qoder/scripts/run_weekly_update.bat +27 -18
- package/templates/qoder/scripts/run_weekly_update.sh +22 -13
- package/templates/qoder/scripts/validation/__init__.py +0 -0
- package/templates/qoder/scripts/validation/eval/__init__.py +0 -0
- package/templates/qoder/scripts/validation/eval/perf-report-2026-06-24.md +139 -0
- package/templates/qoder/scripts/validation/eval/qwork_harness.py +617 -0
- package/templates/qoder/scripts/validation/eval/report-commands.md +220 -0
- package/templates/qoder/scripts/validation/eval/transcript_timing.py +386 -0
- package/templates/qoder/scripts/validation/metrics/__init__.py +0 -0
- package/templates/qoder/scripts/{eval_prd.py → validation/metrics/eval_prd.py} +84 -15
- package/templates/qoder/scripts/validation/metrics/usability_score.py +750 -0
- package/templates/qoder/scripts/validation/test/__init__.py +11 -0
- package/templates/qoder/scripts/validation/test/assertion_gen.py +551 -0
- package/templates/qoder/scripts/{autotest.py → validation/test/autotest.py} +1234 -1751
- package/templates/qoder/scripts/validation/test/autotest_auth.py +109 -0
- package/templates/qoder/scripts/{autotest_batch.py → validation/test/autotest_batch.py} +255 -224
- package/templates/qoder/scripts/validation/test/autotest_data.py +680 -0
- package/templates/qoder/scripts/validation/test/autotest_opencli.py +646 -0
- package/templates/qoder/scripts/{autotest_run.py → validation/test/autotest_run.py} +323 -297
- package/templates/qoder/scripts/validation/test/autotest_webaccess.py +571 -0
- package/templates/qoder/scripts/{benchmark.py → validation/test/benchmark.py} +17 -5
- package/templates/qoder/scripts/{kg_auto_login.py → validation/test/kg_auto_login.py} +208 -196
- package/templates/qoder/scripts/{kg_test_runner.py → validation/test/kg_test_runner.py} +13 -2
- package/templates/qoder/scripts/{page_probe.py → validation/test/page_probe.py} +470 -459
- package/templates/qoder/scripts/validation/test/smoke_all_commands.py +170 -0
- package/templates/qoder/settings.json +23 -2
- package/templates/qoder/skills/design-import/SKILL.md +235 -226
- package/templates/qoder/skills/design-review/SKILL.md +91 -82
- package/templates/qoder/skills/prd-generator/SKILL.md +38 -24
- package/templates/qoder/skills/prd-review/SKILL.md +8 -6
- package/templates/qoder/skills/prototype-generator/SKILL.md +296 -247
- package/templates/qoder/skills/spec-coder/SKILL.md +24 -15
- package/templates/qoder/skills/spec-generator/SKILL.md +24 -12
- package/templates/qoder/skills/test-generator/SKILL.md +9 -7
- package/templates/qoder/skills/wl-code/SKILL.md +25 -13
- package/templates/qoder/skills/wl-commit/SKILL.md +10 -9
- package/templates/qoder/skills/wl-design/SKILL.md +7 -5
- package/templates/qoder/skills/wl-init/SKILL.md +8 -8
- package/templates/qoder/skills/wl-insight/SKILL.md +25 -12
- package/templates/qoder/skills/wl-prd-full/SKILL.md +59 -8
- package/templates/qoder/skills/wl-prd-quick/SKILL.md +7 -7
- package/templates/qoder/skills/wl-prd-review/SKILL.md +18 -6
- package/templates/qoder/skills/wl-report/SKILL.md +27 -25
- package/templates/qoder/skills/wl-search/SKILL.md +151 -80
- package/templates/qoder/skills/wl-spec/SKILL.md +9 -7
- package/templates/qoder/skills/wl-status/SKILL.md +50 -18
- package/templates/qoder/skills/wl-task/SKILL.md +94 -12
- package/templates/qoder/skills/wl-test/SKILL.md +154 -45
- package/templates/qoder/templates/prd-full-template.md +7 -0
- package/templates/root/AGENTS.md +275 -237
- package/templates/root/requirements.txt +3 -0
- package/templates/root//344/275/277/347/224/250/350/257/264/346/230/216.md +3 -3
- package/templates/root//346/226/260/346/211/213/346/214/207/345/215/227.md +2 -2
- package/templates/qoder/hooks/inject-workflow-state.py +0 -169
- package/templates/qoder/scripts/__pycache__/check_mcp_launch.cpython-39.pyc +0 -0
- package/templates/qoder/scripts/__pycache__/install_qoderwork.cpython-39.pyc +0 -0
- package/templates/qoder/scripts/__pycache__/mcp_launcher.cpython-39.pyc +0 -0
- package/templates/qoder/scripts/__pycache__/platform_doctor.cpython-39.pyc +0 -0
- package/templates/qoder/scripts/check_carriers.py +0 -238
- package/templates/qoder/scripts/check_mcp.py +0 -298
- package/templates/qoder/scripts/check_mcp_launch.py +0 -183
- package/templates/qoder/scripts/check_qoderwork_consistency.py +0 -166
- package/templates/qoder/scripts/collect_prds.py +0 -31
- package/templates/qoder/scripts/common/mentions.py +0 -134
- package/templates/qoder/scripts/common/utf8.py +0 -38
- package/templates/qoder/scripts/extract_api_params.py +0 -246
- package/templates/qoder/scripts/extract_routes.py +0 -54
- package/templates/qoder/scripts/extract_routes_tree.py +0 -78
- package/templates/qoder/scripts/handoff.py +0 -22
- package/templates/qoder/scripts/init_developer.py +0 -76
- package/templates/qoder/scripts/kg_mcp_server.py +0 -801
- package/templates/qoder/scripts/kg_semantic.py +0 -150
- package/templates/qoder/scripts/mcp_launcher.py +0 -414
- package/templates/qoder/scripts/mysql_mcp_server.py +0 -396
- package/templates/qoder/scripts/parse_prds.py +0 -33
- package/templates/qoder/scripts/role.py +0 -51
- package/templates/qoder/scripts/sync_carriers.py +0 -259
- package/templates/qoder/scripts/task.py +0 -1261
- package/templates/qoder/scripts/workspace_init.py +0 -102
- package/templates/qoder/scripts/zentao_mcp_server.py +0 -424
- package/templates/qoder/skills/prompt-enrich/SKILL.md +0 -90
- /package/templates/qoder/scripts/{common → deployment}/__init__.py +0 -0
- /package/templates/qoder/{skills/prototype-generator/SKILL.md.zcode-79180-2af4721f-f9a6-412c-88db-c0af680d211b.tmp → scripts/domain/__init__.py} +0 -0
- /package/templates/qoder/scripts/{common → domain/kg/graph}/graph_traverse.py +0 -0
- /package/templates/qoder/scripts/{common → domain/kg/server}/repowiki.py +0 -0
- /package/templates/qoder/scripts/{common → foundation/io}/atomicio.py +0 -0
- /package/templates/qoder/scripts/{secure-ls.js → validation/test/secure-ls.js} +0 -0
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
#!/usr/bin/env python3
|
|
2
2
|
# -*- coding: utf-8 -*-
|
|
3
|
+
# v3.0 路径自举: 向上搜索 foundation/bootstrap.py (深度无关)
|
|
4
|
+
import os as _o, sys as _s
|
|
5
|
+
_f = _o.path.abspath(__file__)
|
|
6
|
+
for _ in range(10):
|
|
7
|
+
_f = _o.path.dirname(_f)
|
|
8
|
+
_cp = _o.path.join(_f, 'foundation')
|
|
9
|
+
if _o.path.isfile(_o.path.join(_cp, 'bootstrap.py')):
|
|
10
|
+
break
|
|
11
|
+
if _cp not in _s.path: _s.path.insert(0, _cp)
|
|
12
|
+
from bootstrap import setup; setup()
|
|
13
|
+
from foundation.core.paths import get_repo_root
|
|
14
|
+
|
|
3
15
|
"""
|
|
4
16
|
QODER EVA - PRD/原型 自动评估 (快且准的"准"侧自动指标)
|
|
5
17
|
|
|
@@ -14,12 +26,12 @@ Usage:
|
|
|
14
26
|
A3 模板完整 (30分): PRD 包含团队模板必需章节的比例
|
|
15
27
|
-> 保证团队章程的模板结构不丢
|
|
16
28
|
|
|
17
|
-
结果追加到
|
|
29
|
+
结果追加到 data/learning/eval-history.jsonl (本机), 供 /wl-status 趋势展示。
|
|
18
30
|
Exit: 0 = 总分>=80, 1 = 不达标 (发布前应修复)
|
|
19
31
|
"""
|
|
20
32
|
|
|
21
33
|
import os
|
|
22
|
-
from
|
|
34
|
+
from foundation.core.paths import BUILD_CACHE_DIR
|
|
23
35
|
import sys
|
|
24
36
|
import json
|
|
25
37
|
import re
|
|
@@ -33,10 +45,11 @@ if sys.platform == 'win32':
|
|
|
33
45
|
|
|
34
46
|
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
|
|
35
47
|
|
|
36
|
-
BASE =
|
|
48
|
+
BASE = get_repo_root()
|
|
37
49
|
INDEX_DIR = os.path.join(BASE, 'data', 'index')
|
|
38
50
|
TPL_DIR = os.path.join(BASE, '.qoder', 'templates')
|
|
39
|
-
|
|
51
|
+
from foundation.core.paths import EVAL_HISTORY_PATH # 统一真源: 防止写路径再漂移 (历史 bug: 曾写成 .qoder/learning/)
|
|
52
|
+
HISTORY = str(EVAL_HISTORY_PATH)
|
|
40
53
|
|
|
41
54
|
# 完整模板必需章节 (prd-full-template.md) / Mini 模板必需章节
|
|
42
55
|
FULL_SECTIONS = ['版本信息', '变更日志', '名词解释', '需求背景', '需求来源', '产品现状',
|
|
@@ -185,10 +198,17 @@ def score_reality(prd_text):
|
|
|
185
198
|
if checked == 0:
|
|
186
199
|
return 1.0, '未引用具体字段/API (零星文案类需求正常)', []
|
|
187
200
|
ratio = hits / checked
|
|
201
|
+
# 图谱覆盖度感知: 防止"认真写 API 引用但图谱没覆盖"比"啥都不写"分还低。
|
|
202
|
+
kg_api_count = len(api_paths)
|
|
203
|
+
if kg_api_count < 10 and ratio < 0.5 and hits == 0:
|
|
204
|
+
ratio = max(ratio, 0.5)
|
|
205
|
+
note_suffix = '(图谱API稀疏, 已软保底)'
|
|
206
|
+
else:
|
|
207
|
+
note_suffix = ''
|
|
188
208
|
db_note = (',其中 %d 个由数据库层确认' % db_bonus) if db_bonus else ''
|
|
189
209
|
layer_note = ('(双层: 代码+数据库)' if db_cols else '(代码层)')
|
|
190
|
-
return ratio, '{}/{} 个字段/API 引用可在图谱中找到{}{}'.format(
|
|
191
|
-
hits, checked, layer_note, db_note), misses[:8]
|
|
210
|
+
return ratio, '{}/{} 个字段/API 引用可在图谱中找到{}{}{}'.format(
|
|
211
|
+
hits, checked, layer_note, db_note, note_suffix), misses[:8]
|
|
192
212
|
|
|
193
213
|
|
|
194
214
|
# ============================================================
|
|
@@ -257,6 +277,13 @@ def score_template(prd_text):
|
|
|
257
277
|
# ============================================================
|
|
258
278
|
|
|
259
279
|
def main():
|
|
280
|
+
"""v3.0: 接入 Result + contract 校验 (让设计模式真落地)。
|
|
281
|
+
|
|
282
|
+
改动:
|
|
283
|
+
1. 评估前先 validate_contract (软校验, 无契约头降级不阻塞)
|
|
284
|
+
2. 用 Result 表达三级结果 (PASS/WARN/FAIL), 替代裸 return 0/1
|
|
285
|
+
3. graceful_error 装饰器统一输出
|
|
286
|
+
"""
|
|
260
287
|
if len(sys.argv) < 2:
|
|
261
288
|
print(__doc__)
|
|
262
289
|
return 1
|
|
@@ -264,11 +291,37 @@ def main():
|
|
|
264
291
|
html_path = sys.argv[2] if len(sys.argv) > 2 else None
|
|
265
292
|
|
|
266
293
|
if not os.path.isfile(prd_path):
|
|
267
|
-
print('PRD 不存在: ' + prd_path)
|
|
294
|
+
print('[FAIL] PRD 不存在: ' + prd_path)
|
|
268
295
|
return 1
|
|
269
296
|
|
|
297
|
+
# v3.0 接入: 角色边界校验 (guard.py, 软提示不阻塞)
|
|
298
|
+
# eval_prd 是 PRD 发布的必经质量门, 在这里检查"当前角色能否产出 prd"
|
|
299
|
+
# 越权 → 打印提示但不 return(降级, 让用户自己决定是否继续)
|
|
300
|
+
try:
|
|
301
|
+
from foundation.identity.guard import check_produce
|
|
302
|
+
gr = check_produce('prd')
|
|
303
|
+
if gr.is_warn:
|
|
304
|
+
print(gr.msg)
|
|
305
|
+
if gr.hint:
|
|
306
|
+
print(' -> ' + gr.hint)
|
|
307
|
+
except Exception:
|
|
308
|
+
pass # guard 不可用不影响评估
|
|
309
|
+
|
|
310
|
+
# v3.0 接入: 契约校验 (软, 无@contract头则降级不阻塞)
|
|
311
|
+
try:
|
|
312
|
+
from foundation.data.contract import validate_contract
|
|
313
|
+
cr = validate_contract(prd_path)
|
|
314
|
+
if cr.is_warn:
|
|
315
|
+
print(cr.msg) # WARN: 无契约头或字段警告, 提示但不阻塞
|
|
316
|
+
elif cr.ok and cr.code not in ('no_contract', 'no_schema', 'ok'):
|
|
317
|
+
print(cr.msg)
|
|
318
|
+
if cr.hint:
|
|
319
|
+
print(' -> ' + cr.hint)
|
|
320
|
+
except Exception:
|
|
321
|
+
pass # 契约校验失败不影响评估
|
|
322
|
+
|
|
270
323
|
# 用程序化 API 评估 (重构后 main 只是 CLI 包装)
|
|
271
|
-
from
|
|
324
|
+
from foundation.utils.eval_api import evaluate, format_report
|
|
272
325
|
try:
|
|
273
326
|
result = evaluate(prd_path, html_path)
|
|
274
327
|
except FileNotFoundError as e:
|
|
@@ -278,14 +331,27 @@ def main():
|
|
|
278
331
|
# 打印人类可读报告
|
|
279
332
|
print(format_report(result))
|
|
280
333
|
|
|
281
|
-
#
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
334
|
+
# v3.0 接入: 用 Result 表达三级 (PASS ≥80 / WARN 60-80 / FAIL <60)
|
|
335
|
+
# 现状是二值 passed, 这里加 WARN 中间档, 让"差一点的 PRD"能带警告发布
|
|
336
|
+
from foundation.data.result import Result, CODE
|
|
337
|
+
pct = result.get('pct', 0)
|
|
338
|
+
if result['passed']:
|
|
339
|
+
verdict = Result.success(msg='✓ PASS ({}%)'.format(pct), data=result)
|
|
340
|
+
elif pct >= 60:
|
|
341
|
+
verdict = Result.warning(
|
|
342
|
+
'⚠ WARN ({}%): 低于80但有内容, 可带警告发布'.format(pct),
|
|
343
|
+
code=CODE.BELOW_THRESH, data=result,
|
|
344
|
+
)
|
|
345
|
+
else:
|
|
346
|
+
verdict = Result.failure(
|
|
347
|
+
'✗ FAIL ({}%): 低于60, 需修复'.format(pct),
|
|
348
|
+
code=CODE.BELOW_THRESH,
|
|
349
|
+
hint='检查字段锚定(A1)和模板完整(A3)',
|
|
350
|
+
)
|
|
285
351
|
|
|
286
352
|
# 记录历史 (原子追加, 防并发损坏)
|
|
287
353
|
try:
|
|
288
|
-
from
|
|
354
|
+
from foundation.io.atomicio import atomic_append_jsonl
|
|
289
355
|
os.makedirs(os.path.dirname(HISTORY), exist_ok=True)
|
|
290
356
|
atomic_append_jsonl(HISTORY, {
|
|
291
357
|
'time': datetime.now().isoformat(),
|
|
@@ -295,11 +361,12 @@ def main():
|
|
|
295
361
|
'a3_template': result['r3'],
|
|
296
362
|
'score_pct': result['pct'],
|
|
297
363
|
'passed': result['passed'],
|
|
364
|
+
'verdict': verdict.code, # v3.0: 记录三级判定
|
|
298
365
|
}, timeout=10)
|
|
299
366
|
except Exception:
|
|
300
367
|
pass # 历史记录失败不影响评估结果
|
|
301
368
|
|
|
302
|
-
# 埋点: PRD 评估结果反馈给 learning 引擎
|
|
369
|
+
# 埋点: PRD 评估结果反馈给 learning 引擎
|
|
303
370
|
try:
|
|
304
371
|
from learn import record_feedback
|
|
305
372
|
event = 'prd_accepted' if result['passed'] else 'prd_rejected'
|
|
@@ -311,7 +378,9 @@ def main():
|
|
|
311
378
|
except Exception:
|
|
312
379
|
pass # 埋点失败不影响评估
|
|
313
380
|
|
|
314
|
-
|
|
381
|
+
# exit code: PASS=0, WARN=0(可继续), FAIL=1
|
|
382
|
+
# (WARN 不阻塞发布, 与方案"eval_prd 三级门禁"一致)
|
|
383
|
+
return 0 if verdict.ok else 1
|
|
315
384
|
|
|
316
385
|
|
|
317
386
|
if __name__ == '__main__':
|