add-coder 0.3.26 → 0.3.27
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/README.md +36 -10
- package/dist/index.js +481 -209
- package/package.json +14 -4
- package/templates/.add-coder-src-hash.json +129 -106
- package/templates/adapters/claude/hooks/doc-format-guard.sh +112 -31
- package/templates/adapters/claude/hooks/lib/common.sh +46 -87
- package/templates/adapters/claude/hooks/lib/context-inject.sh +2 -2
- package/templates/adapters/claude/hooks/lib/notify.sh +6 -4
- package/templates/adapters/claude/hooks/lib/preload-templates.sh +27 -2
- package/templates/adapters/claude/hooks/lib/state-detect.sh +8 -112
- package/templates/adapters/claude/hooks/lib/vocabulary.sh +13 -7
- package/templates/adapters/claude/hooks/prompt-submit.sh +1 -1
- package/templates/adapters/claude/hooks/stop-check.sh +9 -0
- package/templates/adapters/codex/config.toml.example +12 -0
- package/templates/adapters/codex/hooks/doc-format-guard.sh +121 -39
- package/templates/adapters/codex/hooks/lib/common.sh +47 -99
- package/templates/adapters/codex/hooks/lib/context-inject.sh +4 -4
- package/templates/adapters/codex/hooks/lib/notify.sh +6 -4
- package/templates/adapters/codex/hooks/lib/preload-templates.sh +27 -6
- package/templates/adapters/codex/hooks/lib/state-detect.sh +5 -114
- package/templates/adapters/codex/hooks/lib/vocabulary.sh +3 -8
- package/templates/adapters/codex/hooks/notification.sh +3 -18
- package/templates/adapters/codex/hooks/post-tool-use.sh +24 -119
- package/templates/adapters/codex/hooks/pre-tool-use.sh +97 -184
- package/templates/adapters/codex/hooks/prompt-submit.sh +8 -3
- package/templates/adapters/codex/hooks/session-start.sh +19 -9
- package/templates/adapters/codex/hooks/stop-check.sh +44 -18
- package/templates/adapters/codex/hooks.json +67 -1
- package/templates/adapters/qoder/hooks/doc-format-guard.sh +119 -38
- package/templates/adapters/qoder/hooks/lib/common.sh +49 -87
- package/templates/adapters/qoder/hooks/lib/context-inject.sh +2 -2
- package/templates/adapters/qoder/hooks/lib/notify.sh +6 -4
- package/templates/adapters/qoder/hooks/lib/preload-templates.sh +27 -2
- package/templates/adapters/qoder/hooks/lib/state-detect.sh +8 -112
- package/templates/adapters/qoder/hooks/lib/vocabulary.sh +13 -7
- package/templates/adapters/qoder/hooks/prompt-submit.sh +1 -1
- package/templates/adapters/qoder/hooks/session-start.sh +1 -1
- package/templates/adapters/qoder/hooks/stop-check.sh +11 -0
- package/templates/adapters/trae/hooks/doc-format-guard.sh +120 -38
- package/templates/adapters/trae/hooks/lib/common.sh +46 -87
- package/templates/adapters/trae/hooks/lib/context-inject.sh +2 -2
- package/templates/adapters/trae/hooks/lib/notify.sh +5 -3
- package/templates/adapters/trae/hooks/lib/preload-templates.sh +27 -2
- package/templates/adapters/trae/hooks/lib/state-detect.sh +8 -115
- package/templates/adapters/trae/hooks/lib/vocabulary.sh +13 -7
- package/templates/adapters/trae/hooks/pre-tool-use.sh +14 -8
- package/templates/adapters/trae/hooks/stop-check.sh +9 -0
- package/templates/adapters/vscode/hooks/doc-format-guard.sh +112 -31
- package/templates/adapters/vscode/hooks/lib/common.sh +46 -87
- package/templates/adapters/vscode/hooks/lib/context-inject.sh +2 -2
- package/templates/adapters/vscode/hooks/lib/notify.sh +6 -4
- package/templates/adapters/vscode/hooks/lib/preload-templates.sh +27 -2
- package/templates/adapters/vscode/hooks/lib/state-detect.sh +8 -112
- package/templates/adapters/vscode/hooks/lib/vocabulary.sh +13 -7
- package/templates/adapters/vscode/hooks/notification.sh +3 -5
- package/templates/adapters/vscode/hooks/prompt-submit.sh +1 -1
- package/templates/adapters/vscode/hooks/stop-check.sh +9 -0
- package/templates/core/docs/ADD-governance-claude-code.md +1 -1
- package/templates/core/docs/ADD-governance-codex.md +1 -1
- package/templates/core/docs/ADD-governance-qoder-cn.md +1 -1
- package/templates/core/docs/ADD-governance-trae.md +1 -1
- package/templates/core/docs/ADD-governance-vscode-copilot.md +1 -1
- package/templates/core/hooks/doc-format-guard.sh +120 -38
- package/templates/core/hooks/lib/common.sh +46 -87
- package/templates/core/hooks/lib/context-inject.sh +2 -2
- package/templates/core/hooks/lib/notify.sh +5 -3
- package/templates/core/hooks/lib/preload-templates.sh +27 -2
- package/templates/core/hooks/lib/state-detect.sh +8 -115
- package/templates/core/hooks/lib/vocabulary.sh +13 -7
- package/templates/core/hooks/pre-tool-use.sh +14 -8
- package/templates/core/hooks/stop-check.sh +9 -0
- package/templates/core/prisma/add.prisma +140 -82
- package/templates/core/rules/project_rules.md +27 -24
- package/templates/core/scripts/db-ensure.sh +8 -0
- package/templates/core/scripts/gen-plan-index.sh +4 -15
- package/templates/core/scripts/mcp-server/notifications/hitl.ts +9 -1
- package/templates/core/scripts/mcp-server/notifications/hook.ts +25 -9
- package/templates/core/scripts/mcp-server/resources/hitl-approval-widget.ts +34 -0
- package/templates/core/scripts/mcp-server/resources/hook-events-report.ts +14 -2
- package/templates/core/scripts/mcp-server/resources/index.ts +2 -0
- package/templates/core/scripts/mcp-server/sampling/review.ts +25 -10
- package/templates/core/scripts/mcp-server/shared/db-types.ts +33 -8
- package/templates/core/scripts/mcp-server/shared/dps-scoring.strategy.ts +1 -1
- package/templates/core/scripts/mcp-server/shared/env.ts +28 -8
- package/templates/core/scripts/mcp-server/shared/fs.ts +3 -0
- package/templates/core/scripts/mcp-server/shared/hitl-interaction.strategy.ts +2 -3
- package/templates/core/scripts/mcp-server/shared/hitl-lifecycle-mutation.ts +129 -0
- package/templates/core/scripts/mcp-server/shared/hitl-proposal-mutation.ts +98 -0
- package/templates/core/scripts/mcp-server/shared/hitl-ui.ts +3 -0
- package/templates/core/scripts/mcp-server/shared/plan-lifecycle-events.ts +62 -0
- package/templates/core/scripts/mcp-server/shared/plan-lifecycle-mutation.ts +78 -0
- package/templates/core/scripts/mcp-server/shared/plan-lifecycle-subscriber.ts +145 -0
- package/templates/core/scripts/mcp-server/shared/plan-lifecycle.ts +153 -0
- package/templates/core/scripts/mcp-server/shared/plan-round-events.ts +56 -0
- package/templates/core/scripts/mcp-server/shared/plan-round-mutation.ts +143 -0
- package/templates/core/scripts/mcp-server/shared/plan-round-store.ts +47 -0
- package/templates/core/scripts/mcp-server/shared/plan-round-subscriber.ts +99 -0
- package/templates/core/scripts/mcp-server/shared/plan-status-store.ts +37 -0
- package/templates/core/scripts/mcp-server/shared/plan-tracking-mutation.ts +71 -0
- package/templates/core/scripts/mcp-server/shared/prisma.ts +12 -6
- package/templates/core/scripts/mcp-server/shared/project-root-strategy.ts +1 -2
- package/templates/core/scripts/mcp-server/shared/quant-recheck.strategy.ts +16 -0
- package/templates/core/scripts/mcp-server/shared/redact.ts +28 -0
- package/templates/core/scripts/mcp-server/shared/response.ts +3 -2
- package/templates/core/scripts/mcp-server/shared/runtime-context.ts +77 -0
- package/templates/core/scripts/mcp-server/shared/schema-topology.ts +159 -0
- package/templates/core/scripts/mcp-server/tools/audit.ts +49 -7
- package/templates/core/scripts/mcp-server/tools/context.ts +117 -121
- package/templates/core/scripts/mcp-server/tools/contract.ts +34 -9
- package/templates/core/scripts/mcp-server/tools/gateway/check_add_route_status.ts +50 -3
- package/templates/core/scripts/mcp-server/tools/gateway/check_doc_similarity.ts +218 -0
- package/templates/core/scripts/mcp-server/tools/gateway/check_dps.ts +22 -7
- package/templates/core/scripts/mcp-server/tools/gateway/check_rahs.ts +75 -4
- package/templates/core/scripts/mcp-server/tools/gateway/check_spec_sync.ts +19 -6
- package/templates/core/scripts/mcp-server/tools/gateway/index.ts +2 -0
- package/templates/core/scripts/mcp-server/tools/hitl.ts +160 -75
- package/templates/core/scripts/mcp-server/tools/hook-event-report.ts +9 -2
- package/templates/core/scripts/mcp-server/tools/index.ts +69 -3
- package/templates/core/scripts/mcp-server/tools/plan.ts +140 -15
- package/templates/core/scripts/mcp-server/tools/review.ts +44 -15
- package/templates/core/scripts/mcp-server.ts +60 -1
- package/templates/core/scripts/plan-status-bridge.ts +26 -0
- package/templates/core/skills/add-paradigm/SKILL.md +2 -2
- package/templates/core/templates/add-route-template.schema.json +24 -56
- package/templates/core/templates/collab-contract-template.md +1 -1
- package/templates/core/templates/handoff-multi-round-template.schema.json +48 -0
- package/templates/core/templates/handoff-single-round-template.schema.json +92 -0
- package/templates/core/templates/handoff-single-round.schema.json +1 -1
- package/templates/core/templates/hitl-approval-widget.html +222 -37
- package/templates/core/templates/spec-template.schema.json +9 -46
- package/templates/core/templates/standard-plan-template.schema.json +1 -1
- package/templates/core/templates/tasks-template.schema.json +13 -54
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
#!/bin/bash
|
|
2
2
|
# stop-check.sh — Claude Code Stop:四象限分流 + 验收检查(few-shot 上下文注入)
|
|
3
3
|
# 治理卡位 #7: 验收检查 + devlog + 阻断
|
|
4
|
+
# DB lifecycle 真相源(协议层):DB 不可用时 fail-closed,禁止回退 Handoff/add-route 猜测
|
|
4
5
|
set -euo pipefail
|
|
5
6
|
|
|
6
7
|
HOOK_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
7
8
|
export CURRENT_MAGIC=$(basename "$(dirname "$HOOK_DIR")")
|
|
9
|
+
export MAGIC_DIR=$(basename "$(dirname "$HOOK_DIR")")
|
|
8
10
|
COMMON_LIB="$HOOK_DIR/lib/common.sh"
|
|
9
11
|
[ -f "$COMMON_LIB" ] && source "$COMMON_LIB"
|
|
10
12
|
|
|
@@ -13,6 +15,13 @@ export PROJECT_DIR="${CLAUDE_PROJECT_DIR:-$PWD}"
|
|
|
13
15
|
state=$(detect_active_add 2>/dev/null || true)
|
|
14
16
|
has_dev=$(has_dev_action 2>/dev/null && echo "true" || echo "false")
|
|
15
17
|
|
|
18
|
+
# ═══════ Q0: DB 不可用 → fail closed(禁止当“无 Plan”) ═══════
|
|
19
|
+
if [ "${state%%::*}" = "__STATUS_UNAVAILABLE__" ]; then
|
|
20
|
+
reason=$(echo "$state" | awk -F'::' '{print $2}')
|
|
21
|
+
echo "[ADD Stop] ⛔ Plan status 暂不可用(${reason})。未回退 Handoff/add-route 猜测,请恢复数据库或 MCP resolver 后重试。" >&2
|
|
22
|
+
exit "${EXIT_BLOCK:-2}"
|
|
23
|
+
fi
|
|
24
|
+
|
|
16
25
|
# ═══════ Q1: 无 ADD + 无 dev → 正常停 ═══════
|
|
17
26
|
if [ -z "$state" ] && [ "$has_dev" != "true" ]; then
|
|
18
27
|
exit 0
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# Codex 项目级 MCP 配置模板(adapter 真源)
|
|
2
|
+
# add-coder init/sync --adapter codex 会把该 server table 合并到 .codex/config.toml。
|
|
3
|
+
# 只写项目配置;不会自动修改 ~/.codex/config.toml。
|
|
4
|
+
|
|
5
|
+
[mcp_servers.add_coder]
|
|
6
|
+
command = {{codexCommandToml}}
|
|
7
|
+
args = {{codexArgsToml}}
|
|
8
|
+
cwd = {{codexProjectRootToml}}
|
|
9
|
+
startup_timeout_sec = 30
|
|
10
|
+
|
|
11
|
+
[mcp_servers.add_coder.env]
|
|
12
|
+
PROJECT_ROOT = {{codexProjectRootToml}}
|
|
@@ -52,7 +52,7 @@ CONTENT=$(echo "$input" | jq -r '
|
|
|
52
52
|
elif .tool_input.replacements then .tool_input.replacements[0].new_text
|
|
53
53
|
else "" end')
|
|
54
54
|
# L24: PostToolUse 不可阻断(仅反馈),PreToolUse exit 2 + ask 可拦截
|
|
55
|
-
# L24: 文件在 .
|
|
55
|
+
# L24: 文件在 .codex/(plans|specs)/ 下但 Write 工具未传 content → 无法校验,阻断
|
|
56
56
|
if [ -z "$CONTENT" ]; then
|
|
57
57
|
echo "⛔ 拒绝:Write 工具未传 file_content,无法校验手写文档格式" >&2
|
|
58
58
|
echo '{"hookSpecificOutput":{"hookEventName":"PreToolUse","permissionDecision":"ask","permissionDecisionReason":"Write 工具未传 file_content,无法校验手写文档。请用 SearchReplace 改写已有文件,或用 Write 工具重试。"}}'
|
|
@@ -63,45 +63,54 @@ fi
|
|
|
63
63
|
PROJECT_DIR="$PWD"
|
|
64
64
|
TEMPLATES_DIR="$PROJECT_DIR/$MAGIC_DIR/templates"
|
|
65
65
|
|
|
66
|
-
#
|
|
66
|
+
# 文件名类型 token 匹配(特异性排序,取代子串 grep;R5/Task 1.4)
|
|
67
|
+
# review/handoff 不在此层绑定(需内容特征细分单多轮/运行时),留给下方探测链
|
|
67
68
|
TEMPLATE_NAME=""
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
69
|
+
base=$(basename "$file_path")
|
|
70
|
+
base=${base%-v[0-9]*}
|
|
71
|
+
case "$base" in
|
|
72
|
+
*add-route*heavy*) TEMPLATE_NAME="add-route-template-heavyweight.md" ;;
|
|
73
|
+
*add-route*) TEMPLATE_NAME="add-route-template.md" ;;
|
|
74
|
+
*hitl*) TEMPLATE_NAME="hitl-template.md" ;;
|
|
75
|
+
*handoff*) : ;; # R15: 跳过 token 层,交内容探测链(单/多轮细分);必须在 *report* 前,防文件名含 report 的 handoff 被误吞
|
|
76
|
+
*checklist*) TEMPLATE_NAME="checklist-template.md" ;;
|
|
77
|
+
*fix-verif*) TEMPLATE_NAME="fix-verification-template.md" ;;
|
|
78
|
+
*report*runtime*) TEMPLATE_NAME="runtime-report-template.md" ;;
|
|
79
|
+
*report*) TEMPLATE_NAME="report-template.md" ;;
|
|
80
|
+
*tasks*) TEMPLATE_NAME="tasks-template.md" ;;
|
|
81
|
+
*spec*) TEMPLATE_NAME="spec-template.md" ;;
|
|
82
|
+
*plan*) TEMPLATE_NAME="standard-plan-template.md" ;;
|
|
83
|
+
esac
|
|
75
84
|
|
|
76
85
|
# 退一步:根据文件内容特征猜测模板类型
|
|
77
86
|
if [ -z "$TEMPLATE_NAME" ]; then
|
|
78
|
-
if
|
|
87
|
+
if grep -q "## PLAN 元信息" <<< "$CONTENT"; then
|
|
79
88
|
TEMPLATE_NAME="standard-plan-template.md"
|
|
80
|
-
elif
|
|
89
|
+
elif grep -q "## 一、Plan 概述" <<< "$CONTENT"; then
|
|
81
90
|
TEMPLATE_NAME="simple-plan-template.md"
|
|
82
|
-
elif
|
|
91
|
+
elif grep -q "## 四、Handoff" <<< "$CONTENT"; then
|
|
83
92
|
TEMPLATE_NAME="simple-plan-template.md"
|
|
84
|
-
elif
|
|
85
|
-
if
|
|
93
|
+
elif grep -q "## Review 元信息" <<< "$CONTENT"; then
|
|
94
|
+
if grep -q "运行时验证" <<< "$CONTENT"; then
|
|
86
95
|
TEMPLATE_NAME="review-runtime-template.md"
|
|
87
|
-
elif
|
|
96
|
+
elif grep -q "跨仓库格式契约" <<< "$CONTENT"; then
|
|
88
97
|
TEMPLATE_NAME="review-implementation-template.md"
|
|
89
98
|
else
|
|
90
99
|
TEMPLATE_NAME="review-template.md"
|
|
91
100
|
fi
|
|
92
|
-
elif
|
|
101
|
+
elif grep -q "## Why" <<< "$CONTENT"; then
|
|
93
102
|
TEMPLATE_NAME="spec-template.md"
|
|
94
|
-
elif
|
|
103
|
+
elif grep -q "## Preconditions" <<< "$CONTENT"; then
|
|
95
104
|
TEMPLATE_NAME="tasks-template.md"
|
|
96
|
-
elif
|
|
105
|
+
elif grep -q "审计链(证据→devlog→checklist)" <<< "$CONTENT"; then
|
|
97
106
|
TEMPLATE_NAME="checklist-template.md"
|
|
98
107
|
else
|
|
99
108
|
case "$file_path" in
|
|
100
109
|
*handoff*)
|
|
101
110
|
# ★ 按内容特征区分单/多轮 handoff,不依赖文件名
|
|
102
|
-
if
|
|
111
|
+
if grep -qF "## 全局元信息" <<< "$CONTENT"; then
|
|
103
112
|
TEMPLATE_NAME="handoff-multi-round-template.md"
|
|
104
|
-
elif
|
|
113
|
+
elif grep -qF "## 1. 交接前状态" <<< "$CONTENT"; then
|
|
105
114
|
TEMPLATE_NAME="handoff-single-round-template.md"
|
|
106
115
|
else
|
|
107
116
|
echo "⛔ handoff 文件内容无法识别模板类型(缺 '## 全局元信息' 或 '## 1. 交接前状态'),拒绝写入" >&2
|
|
@@ -110,9 +119,9 @@ if [ -z "$TEMPLATE_NAME" ]; then
|
|
|
110
119
|
exit 2
|
|
111
120
|
fi
|
|
112
121
|
;;
|
|
113
|
-
*plan*) TEMPLATE_NAME="standard-plan-template.md" ;;
|
|
114
122
|
*add-route*heavy*) TEMPLATE_NAME="add-route-template-heavyweight.md" ;;
|
|
115
123
|
*add-route*) TEMPLATE_NAME="add-route-template.md" ;;
|
|
124
|
+
*plan*) TEMPLATE_NAME="standard-plan-template.md" ;;
|
|
116
125
|
*tasks*) TEMPLATE_NAME="tasks-template.md" ;;
|
|
117
126
|
*spec*) TEMPLATE_NAME="spec-template.md" ;;
|
|
118
127
|
*checklist*) TEMPLATE_NAME="checklist-template.md" ;;
|
|
@@ -122,7 +131,7 @@ if [ -z "$TEMPLATE_NAME" ]; then
|
|
|
122
131
|
*hitl*) TEMPLATE_NAME="hitl-template.md" ;;
|
|
123
132
|
*)
|
|
124
133
|
# 增量修订识别:包含 ~~删除线~~ / → 新增标记 / [修订日期] 任意一个 → 视为增量更新,放行
|
|
125
|
-
if
|
|
134
|
+
if grep -qE '~~.+~~|→|\[[0-9]{4}-[0-9]{2}-[0-9]{2}\s+修订' <<< "$CONTENT"; then
|
|
126
135
|
echo "[doc-format-guard] 检测到增量修订格式,跳过完整章节校验" >&2
|
|
127
136
|
exit 0
|
|
128
137
|
fi
|
|
@@ -154,17 +163,56 @@ ISSUES=""
|
|
|
154
163
|
TMPFILE="$PROJECT_DIR/$MAGIC_DIR/.doc-guard-issues.tmp"
|
|
155
164
|
: > "$TMPFILE"
|
|
156
165
|
trap "rm -f $TMPFILE" EXIT
|
|
166
|
+
|
|
167
|
+
# ── 锚定校验(锚定制:schema 声明 anchor,参照内容从模板现场提取;Task 1.2)──
|
|
168
|
+
# 锚点不在模板 → 跳过该规则 + stderr 告警(不阻塞写入,冒烟巡检兑底)
|
|
169
|
+
# within 前缀匹配;heading 缺失 → 跳过规则 + 告警(不误拦)
|
|
170
|
+
if [ "$IS_SEARCH_REPLACE" != "true" ]; then
|
|
171
|
+
jq -r '.sections[] | select(.anchor != null) | .id + "|" + .anchor + "|" + (.within // "")' "$SCHEMA_FILE" 2>/dev/null | while IFS='|' read -r aid anchor within; do
|
|
172
|
+
[ -z "$anchor" ] && continue
|
|
173
|
+
ref_line=$(grep -m1 -F "$anchor" "$TEMPLATES_DIR/$TEMPLATE_NAME" 2>/dev/null || true)
|
|
174
|
+
if [ -z "$ref_line" ]; then
|
|
175
|
+
echo "[doc-format-guard] anchor_miss: schema ${aid} 声明的 anchor '${anchor}' 在 ${TEMPLATE_NAME} 中未定位,跳过该规则(冒烟巡检兑底)" >&2
|
|
176
|
+
continue
|
|
177
|
+
fi
|
|
178
|
+
# 参照行剖 token:去 markdown 符号与括号 → 空白切分 → 去空 → 去占位符 token → 去重
|
|
179
|
+
tokens=$(echo "$ref_line" | tr '#*`|(){' ' ' | tr -s ' ' '\n' | grep -v '^$' | grep -vF '{' | sort -u)
|
|
180
|
+
[ -z "$tokens" ] && continue
|
|
181
|
+
# within 作用域(前缀匹配,heading 缺失 → 跳过该规则 + 告警)
|
|
182
|
+
scope="$CONTENT"
|
|
183
|
+
if [ -n "$within" ]; then
|
|
184
|
+
if grep -q "^${within}" <<< "$CONTENT"; then
|
|
185
|
+
scope=$(sed -n "/^${within}/,/^## /p" <<< "$CONTENT")
|
|
186
|
+
else
|
|
187
|
+
echo "[doc-format-guard] within_miss: schema ${aid} 的 within '${within}' 在文档中未定位,跳过该规则" >&2
|
|
188
|
+
continue
|
|
189
|
+
fi
|
|
190
|
+
fi
|
|
191
|
+
# 声明级缺失统计:一个锚点声明的必选 token 有任一缺失即记 1 条规则缺失(struct_score 精确语义)
|
|
192
|
+
miss_tokens=""
|
|
193
|
+
for tok in $tokens; do
|
|
194
|
+
if ! grep -qF "$tok" <<< "$scope"; then
|
|
195
|
+
miss_tokens="${miss_tokens}${tok} "
|
|
196
|
+
fi
|
|
197
|
+
done
|
|
198
|
+
# if 语句(非 && 链):miss_tokens 为空时返回 0,避免 while 管道退出码非零触发 set -e
|
|
199
|
+
if [ -n "$miss_tokens" ]; then
|
|
200
|
+
echo " 缺锚点(${aid}): ${miss_tokens}"
|
|
201
|
+
fi
|
|
202
|
+
done >> "$TMPFILE"
|
|
203
|
+
fi
|
|
204
|
+
|
|
157
205
|
# SearchReplace 只传 patch → 跳过章节/子章节校验(无法从 patch 推断完整文档结构)
|
|
158
206
|
if [ "$IS_SEARCH_REPLACE" != "true" ]; then
|
|
159
|
-
jq -r '.sections[] | select(.required == true) | .heading' "$SCHEMA_FILE" 2>/dev/null | while IFS= read -r heading; do
|
|
160
|
-
if !
|
|
207
|
+
jq -r '.sections[] | select(.required == true) | select(.heading != null) | .heading' "$SCHEMA_FILE" 2>/dev/null | while IFS= read -r heading; do
|
|
208
|
+
if ! grep -qF "$heading" <<< "$CONTENT"; then
|
|
161
209
|
echo " 缺章节: $heading"
|
|
162
210
|
fi
|
|
163
|
-
done
|
|
211
|
+
done >> "$TMPFILE"
|
|
164
212
|
|
|
165
213
|
# 子章节
|
|
166
|
-
jq -r '.sections[].subsections[]
|
|
167
|
-
if !
|
|
214
|
+
jq -r '.sections[].subsections[]? | select(.heading != null) | .heading' "$SCHEMA_FILE" 2>/dev/null | while IFS= read -r sub; do
|
|
215
|
+
if ! grep -qF "$sub" <<< "$CONTENT"; then
|
|
168
216
|
echo " 缺子章节: $sub"
|
|
169
217
|
fi
|
|
170
218
|
done >> "$TMPFILE"
|
|
@@ -172,15 +220,22 @@ fi
|
|
|
172
220
|
|
|
173
221
|
# ── 占位符校验 ──
|
|
174
222
|
jq -r '.placeholders[]?' "$SCHEMA_FILE" 2>/dev/null | while IFS= read -r ph; do
|
|
175
|
-
if
|
|
223
|
+
if grep -qF "$ph" <<< "$CONTENT"; then
|
|
176
224
|
echo " 未替换占位符: $ph"
|
|
177
225
|
fi
|
|
178
226
|
done >> "$TMPFILE"
|
|
179
227
|
|
|
180
|
-
# ──
|
|
228
|
+
# ── 结构位禁词校验(仅标题行 + schema 声明的 groupColumn;正文叙述免疫;Task 1.2)──
|
|
229
|
+
struct_text=$(grep -E '^#{2,}[[:space:]]' <<< "$CONTENT")
|
|
230
|
+
col=$(jq -r '.groupColumn // empty' "$SCHEMA_FILE" 2>/dev/null)
|
|
231
|
+
if [ -n "$col" ]; then
|
|
232
|
+
struct_text="${struct_text}
|
|
233
|
+
$(awk -F'|' -v c="$col" 'NF>c {gsub(/^[[:space:]]+|[[:space:]]+$/, "", $(c+1)); print $(c+1)}' <<< "$CONTENT")"
|
|
234
|
+
fi
|
|
181
235
|
jq -r '.forbidden_terms[]?' "$SCHEMA_FILE" 2>/dev/null | while IFS= read -r term; do
|
|
182
|
-
|
|
183
|
-
|
|
236
|
+
# 结构位(标题行/分组列)是原子单元:定串匹配即可命中;正文不参与(豁免由提取范围保证)
|
|
237
|
+
if grep -qF "$term" <<< "$struct_text"; then
|
|
238
|
+
echo " 结构位禁词: $term"
|
|
184
239
|
fi
|
|
185
240
|
done >> "$TMPFILE"
|
|
186
241
|
|
|
@@ -192,29 +247,29 @@ ALGO_ISSUES=""
|
|
|
192
247
|
# 规则1: 精简版 Plan 反作弊
|
|
193
248
|
if echo "$TEMPLATE_NAME" | grep -q 'simple-plan'; then
|
|
194
249
|
# 1a. 文件数 ≤ 3
|
|
195
|
-
file_count=$(
|
|
250
|
+
file_count=$(grep -cP '^\|\s*`[^`]+`' <<< "$CONTENT" 2>/dev/null || echo "0")
|
|
196
251
|
if [ "$file_count" -gt 3 ] 2>/dev/null; then
|
|
197
252
|
ALGO_ISSUES="${ALGO_ISSUES} ❌ 精简版反作弊: 涉及 ${file_count} 个文件(超过 3 个限制),应改用 standard-plan-template.md\n"
|
|
198
253
|
fi
|
|
199
254
|
# 1b. HITL 表不能写 "等 N 个文件"
|
|
200
|
-
if
|
|
255
|
+
if grep -qP '等\s*\d*\s*个文件|等\s*若干' <<< "$CONTENT"; then
|
|
201
256
|
ALGO_ISSUES="${ALGO_ISSUES} ❌ 精简版反作弊: HITL 表文件清单使用模糊描述('等 N 个文件'),必须列出实际完整路径\n"
|
|
202
257
|
fi
|
|
203
258
|
# 1c. HITL 方案/设计决策不能写 "等若干决策"
|
|
204
|
-
if
|
|
259
|
+
if grep -qP '等\s*若干\s*(决策|方案|设计)' <<< "$CONTENT"; then
|
|
205
260
|
ALGO_ISSUES="${ALGO_ISSUES} ❌ 精简版反作弊: HITL 表方案/设计决策使用模糊描述('等若干决策'),必须逐条列出\n"
|
|
206
261
|
fi
|
|
207
262
|
# 1d. 不能包含架构设计章节(精简版无架构设计)
|
|
208
|
-
if
|
|
263
|
+
if grep -q '## 三、架构设计' <<< "$CONTENT"; then
|
|
209
264
|
ALGO_ISSUES="${ALGO_ISSUES} ❌ 精简版反作弊: 包含 '## 三、架构设计' 章节,精简版不应有架构设计——应改用 standard-plan-template.md\n"
|
|
210
265
|
fi
|
|
211
266
|
fi
|
|
212
267
|
|
|
213
268
|
# 规则2: HITL 表非空校验(所有 Plan + Review 模板)
|
|
214
269
|
if echo "$TEMPLATE_NAME" | grep -qE 'plan|review'; then
|
|
215
|
-
if
|
|
270
|
+
if grep -q '## HITL' <<< "$CONTENT"; then
|
|
216
271
|
# HITL 表至少要有 1 行非占位符内容(不包含 { } 占位符)
|
|
217
|
-
hitl_rows=$(
|
|
272
|
+
hitl_rows=$(sed -n '/## HITL/,/^## /p' <<< "$CONTENT" | grep -cP '^\|\s*[^|{]*\s*\|' 2>/dev/null || echo "0")
|
|
218
273
|
# rows 包含表头行和分隔行,实际数据行 = rows - 2
|
|
219
274
|
hitl_data=$((hitl_rows - 2))
|
|
220
275
|
if [ "$hitl_data" -lt 1 ] 2>/dev/null; then
|
|
@@ -242,12 +297,36 @@ fi
|
|
|
242
297
|
|
|
243
298
|
ISSUES=$(cat "$TMPFILE" 2>/dev/null)
|
|
244
299
|
|
|
300
|
+
# ── 判定回流 extra(Task 1.5 数据契约:anchor_hit/struct_score 精确语义;override 由上层 hook 在人类推翻时追加)──
|
|
301
|
+
# struct_score = (适用规则数 - 缺失规则数) / 适用规则数 × 100,适用规则从 schema 实况计数
|
|
302
|
+
anchor_total=$(jq -r '[.sections[] | select(.anchor != null)] | length' "$SCHEMA_FILE" 2>/dev/null || echo 0)
|
|
303
|
+
heading_total=$(jq -r '[.sections[] | select(.required == true and .heading != null)] | length' "$SCHEMA_FILE" 2>/dev/null || echo 0)
|
|
304
|
+
sub_total=$(jq -r '[.sections[].subsections[]? | select(.heading != null)] | length' "$SCHEMA_FILE" 2>/dev/null || echo 0)
|
|
305
|
+
term_total=$(jq -r '.forbidden_terms | length' "$SCHEMA_FILE" 2>/dev/null || echo 0)
|
|
306
|
+
if [ "$IS_SEARCH_REPLACE" = "true" ]; then
|
|
307
|
+
applied=$term_total # patch 路径仅禁词规则适用
|
|
308
|
+
else
|
|
309
|
+
applied=$(( anchor_total + heading_total + sub_total + term_total ))
|
|
310
|
+
fi
|
|
311
|
+
missed=$(wc -l < "$TMPFILE" 2>/dev/null | tr -d ' ')
|
|
312
|
+
missed=${missed:-0}
|
|
313
|
+
anchor_hit=true
|
|
314
|
+
grep -q "缺锚点" "$TMPFILE" 2>/dev/null && anchor_hit=false
|
|
315
|
+
struct_score=100
|
|
316
|
+
if [ "$applied" -gt 0 ] 2>/dev/null && [ "$missed" -gt 0 ] 2>/dev/null; then
|
|
317
|
+
struct_score=$(( (applied - missed) * 100 / applied ))
|
|
318
|
+
[ "$struct_score" -lt 0 ] && struct_score=0
|
|
319
|
+
fi
|
|
320
|
+
BACKFLOW_EXTRA="\"anchor_hit\":${anchor_hit},\"struct_score\":${struct_score}"
|
|
321
|
+
|
|
245
322
|
# ── 阻断或放行 ──
|
|
246
323
|
if [ -n "$ISSUES" ]; then
|
|
247
324
|
echo "⛔ $TEMPLATE_NAME 校验不通过:
|
|
248
325
|
$ISSUES" >&2
|
|
249
|
-
|
|
250
|
-
|
|
326
|
+
# 明细注入 stdout reason(去引号防 JSON 破坏,截断 180 字),让被拦方第一时间知道改什么
|
|
327
|
+
ISSUES_BRIEF=$(printf '%s' "$ISSUES" | tr '\n' ' ' | tr -d '"' | tr -s ' ' | cut -c1-180)
|
|
328
|
+
echo "{\"hookSpecificOutput\":{\"hookEventName\":\"PreToolUse\",\"permissionDecision\":\"ask\",\"permissionDecisionReason\":\"文档格式校验不通过: ${ISSUES_BRIEF}\"}}"
|
|
329
|
+
write_hook_event "doc-format-guard" "deny" "$file_path" "文档格式校验不通过" "$PLAN_KEYWORD" "$PLAN_STATUS" "$BACKFLOW_EXTRA" 2>/dev/null || true
|
|
251
330
|
exit 2
|
|
252
331
|
fi
|
|
253
332
|
|
|
@@ -258,4 +337,7 @@ if echo "$file_path" | grep -q "$MAGIC_DIR/plans/"; then
|
|
|
258
337
|
fi
|
|
259
338
|
fi
|
|
260
339
|
|
|
340
|
+
# 放行回流(Task 1.5:anchor_hit/struct_score 正样本底座)
|
|
341
|
+
write_hook_event "doc-format-guard" "allow" "$file_path" "校验通过" "$PLAN_KEYWORD" "$PLAN_STATUS" "$BACKFLOW_EXTRA" 2>/dev/null || true
|
|
342
|
+
|
|
261
343
|
exit 0
|
|
@@ -4,17 +4,25 @@
|
|
|
4
4
|
# @Date : 2026-07-17 13:14:46
|
|
5
5
|
# @LastEditors : xiaomingming wujixmm@gmail.com
|
|
6
6
|
# @LastEditTime : 2026-07-17 13:21:36
|
|
7
|
-
# @FilePath : /add-coder/templates/
|
|
8
|
-
# @Description : ADD Hook
|
|
7
|
+
# @FilePath : /add-coder/templates/adapters/codex/hooks/lib/common.sh
|
|
8
|
+
# @Description : Codex ADD Hook 自治库
|
|
9
9
|
###
|
|
10
|
-
# ADD Hook
|
|
11
|
-
#
|
|
12
|
-
# 路径: templates/core/hooks/lib/common.sh
|
|
10
|
+
# Codex ADD Hook 自治库
|
|
11
|
+
# 路径: templates/adapters/codex/hooks/lib/common.sh
|
|
13
12
|
|
|
14
13
|
# 退出码常量,目前适配的ide都一样
|
|
15
14
|
export EXIT_PASS=0 # 放行
|
|
16
15
|
export EXIT_BLOCK=2 # 阻断
|
|
17
16
|
|
|
17
|
+
# ── 当前 adapter 自治目录 ──
|
|
18
|
+
# 每个 adapter 只读取、写入自己的 magicDir;禁止跨 adapter fallback。
|
|
19
|
+
if [ -z "${PROJECT_DIR:-}" ]; then
|
|
20
|
+
PROJECT_DIR="$(git rev-parse --show-toplevel 2>/dev/null || pwd)"
|
|
21
|
+
fi
|
|
22
|
+
export PROJECT_DIR
|
|
23
|
+
export MAGIC_DIR=".codex"
|
|
24
|
+
export PLANS_DIR="$PROJECT_DIR/$MAGIC_DIR/plans"
|
|
25
|
+
|
|
18
26
|
# ── 输入解析 ──
|
|
19
27
|
|
|
20
28
|
# 从 stdin 解析 JSON 输入(hook 事件通过 stdin 传入 JSON)
|
|
@@ -32,101 +40,41 @@ json_get() {
|
|
|
32
40
|
echo "$1" | grep -o "\"$2\"[[:space:]]*:[[:space:]]*\"[^\"]*\"" | head -1 | sed 's/.*: *"\([^"]*\)".*/\1/'
|
|
33
41
|
}
|
|
34
42
|
|
|
35
|
-
# ── ADD 活跃 Plan
|
|
36
|
-
#
|
|
37
|
-
#
|
|
38
|
-
#
|
|
39
|
-
# 2. 索引优先: 先读 plans/index.md 匹配 → 无匹配才 glob *-handoff*.md
|
|
40
|
-
# 3. 活跃定义: add-route 中存在 [ ] 未勾选项 = 活跃;全部 [x] = 已收敛
|
|
41
|
-
# 4. 多 Plan 冲突: 取 add-route 最近 mtime
|
|
42
|
-
# 5. 无 add-route: Plan 初始态,视为活跃
|
|
43
|
-
#
|
|
44
|
-
# 前置条件: 调用方需设置 PROJECT_DIR 环境变量(项目根目录)
|
|
45
|
-
# 返回: "plan_keyword::step_n/total::round_n/total::handoff_path::add_route_path" 或 ""
|
|
46
|
-
|
|
47
|
-
detect_active_add() {
|
|
48
|
-
local plans_dir=""
|
|
49
|
-
|
|
50
|
-
# 1. magicDir 回退: 当前 IDE(CURRENT_MAGIC)→ 目录检测 → .add → 提示全局搜索
|
|
51
|
-
local magic_dirs=()
|
|
52
|
-
if [ -n "${CURRENT_MAGIC:-}" ]; then
|
|
53
|
-
magic_dirs+=("$CURRENT_MAGIC")
|
|
54
|
-
else
|
|
55
|
-
# 兜底: 检测 PROJECT_DIR 下哪个 magicDir 存在
|
|
56
|
-
for m in ".claude" ".qoder" ".vscode" ".trae"; do
|
|
57
|
-
[ -d "${PROJECT_DIR:-$PWD}/$m" ] && { magic_dirs+=("$m"); break; }
|
|
58
|
-
done
|
|
59
|
-
fi
|
|
60
|
-
magic_dirs+=(".add")
|
|
61
|
-
|
|
62
|
-
for magic in "${magic_dirs[@]}"; do
|
|
63
|
-
if [ -d "${PROJECT_DIR:-$PWD}/$magic/plans" ]; then
|
|
64
|
-
plans_dir="${PROJECT_DIR:-$PWD}/$magic/plans"
|
|
65
|
-
break
|
|
66
|
-
fi
|
|
67
|
-
done
|
|
68
|
-
|
|
69
|
-
if [ -z "$plans_dir" ]; then
|
|
70
|
-
echo "[ADD detect] 未在当前 IDE magicDir 和 .add 中找到 plans 目录。是否需要全局搜索所有 magicDir?" >&2
|
|
71
|
-
return 1
|
|
72
|
-
fi
|
|
73
|
-
|
|
74
|
-
local handoff=""
|
|
75
|
-
local add_route=""
|
|
76
|
-
|
|
77
|
-
# 2. 索引优先: 先读 index.md
|
|
78
|
-
if [ -f "$plans_dir/index.md" ]; then
|
|
79
|
-
# 从 index.md 表格提取最近一个 handoff 相对路径
|
|
80
|
-
# 表格格式: | YYYY-MM/DD/path-to-handoff.md | ...
|
|
81
|
-
handoff=$(grep -oE '[0-9]{4}-[0-9]{2}/[0-9]{2}/[^|]*handoff[^|]*\.md' "$plans_dir/index.md" 2>/dev/null | head -1 | xargs)
|
|
82
|
-
if [ -n "$handoff" ] && [ -f "$plans_dir/$handoff" ]; then
|
|
83
|
-
handoff="$plans_dir/$handoff"
|
|
84
|
-
else
|
|
85
|
-
handoff=""
|
|
86
|
-
fi
|
|
87
|
-
fi
|
|
43
|
+
# ── ADD 活跃 Plan 检测 ──
|
|
44
|
+
# lifecycle 的唯一真相源是 scoped DB。短生命周期 Hook 不常驻 LISTEN;每次触发
|
|
45
|
+
# 都通过当前 adapter 生成态的机器桥调用 shared resolver。Handoff/add-route 不参与
|
|
46
|
+
# active 裁决,也不允许跨 adapter 或文件系统 fallback。
|
|
88
47
|
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
48
|
+
query_plan_status() {
|
|
49
|
+
local bridge="${PROJECT_DIR:-$PWD}/${MAGIC_DIR:-.codex}/scripts/plan-status-bridge.ts"
|
|
50
|
+
if [ ! -f "$bridge" ]; then
|
|
51
|
+
echo '{"availability":"STATUS_UNAVAILABLE","source":"database","reason":"plan-status bridge missing"}'
|
|
52
|
+
return 3
|
|
94
53
|
fi
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
# 提取 plan keyword
|
|
98
|
-
local plan_kw=$(basename "$handoff" | sed 's/-handoff.*//')
|
|
99
|
-
|
|
100
|
-
# 查找 add-route
|
|
101
|
-
local handoff_dir=$(dirname "$handoff")
|
|
102
|
-
add_route=$(find "$handoff_dir" -name "*add-route*.md" -type f 2>/dev/null | head -1)
|
|
103
|
-
[ -z "$add_route" ] && add_route=$(find "$plans_dir" -name "*add-route*.md" -type f 2>/dev/null | head -1)
|
|
54
|
+
node --import tsx "$bridge"
|
|
55
|
+
}
|
|
104
56
|
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
step_info="init"
|
|
57
|
+
# 兼容既有 Hook 字段协议:
|
|
58
|
+
# "planName::done/total::approvalStatus::none::none";后两个路径不参与 active 判定。
|
|
59
|
+
# DB 不可用时返回特殊首字段,调用方必须 fail closed,不能当作“无 Plan”。
|
|
60
|
+
detect_active_add() {
|
|
61
|
+
local snapshot="" rc=0
|
|
62
|
+
snapshot="$(query_plan_status 2>/dev/null)" || rc=$?
|
|
63
|
+
if [ "$rc" -ne 0 ]; then
|
|
64
|
+
local reason
|
|
65
|
+
reason=$(printf '%s' "$snapshot" | jq -r '.reason // "database status unavailable"' 2>/dev/null || echo "database status unavailable")
|
|
66
|
+
echo "__STATUS_UNAVAILABLE__::${reason}::database::none::none"
|
|
67
|
+
return 0
|
|
117
68
|
fi
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
local round_info="?"
|
|
121
|
-
if grep -q '<第[0-9]轮>' "$handoff" 2>/dev/null; then
|
|
122
|
-
local ck=$(grep -c '\[x\]' "$handoff" 2>/dev/null || true); ck=${ck:-0}
|
|
123
|
-
local total=$(grep -c '<第[0-9]轮>' "$handoff" 2>/dev/null || true); total=${total:-0}
|
|
124
|
-
[ "$total" -gt 0 ] && round_info="${ck}/${total}"
|
|
125
|
-
else
|
|
126
|
-
round_info="1/1"
|
|
69
|
+
if ! printf '%s' "$snapshot" | jq -e '.availability == "READY" and .isActive == true' >/dev/null 2>&1; then
|
|
70
|
+
return 1
|
|
127
71
|
fi
|
|
128
|
-
|
|
129
|
-
|
|
72
|
+
local plan done total approval
|
|
73
|
+
plan=$(printf '%s' "$snapshot" | jq -r '.planName')
|
|
74
|
+
done=$(printf '%s' "$snapshot" | jq -r '.progress.doneTasks // 0')
|
|
75
|
+
total=$(printf '%s' "$snapshot" | jq -r '.progress.totalTasks // 0')
|
|
76
|
+
approval=$(printf '%s' "$snapshot" | jq -r '.approvalStatus // "none"')
|
|
77
|
+
echo "${plan}::${done}/${total}::${approval}::none::none"
|
|
130
78
|
}
|
|
131
79
|
|
|
132
80
|
# ── Dev Action 追踪 ──
|
|
@@ -202,7 +150,7 @@ build_stop_context() {
|
|
|
202
150
|
echo "[ADD Stop] 无活跃 Plan,无代码改动。正常结束。"
|
|
203
151
|
;;
|
|
204
152
|
"no_add_has_dev")
|
|
205
|
-
cat <<
|
|
153
|
+
cat <<EOF
|
|
206
154
|
[ADD Stop] ⚠️ 检测到代码修改但无活跃 ADD Plan。
|
|
207
155
|
|
|
208
156
|
Plan 不是"文档开销"——它是代码治理的基础设施。跳过 Plan 的后果:
|
|
@@ -213,7 +161,7 @@ Plan 不是"文档开销"——它是代码治理的基础设施。跳过 Plan
|
|
|
213
161
|
你必须立即补救,二选一:
|
|
214
162
|
|
|
215
163
|
方案 A — 补 ADD 流程(招安):
|
|
216
|
-
Step 0: 读
|
|
164
|
+
Step 0: 读 ${MAGIC_DIR}/templates/standard-plan-template.md → 生成 Plan
|
|
217
165
|
生成 add-route → check_dps ≥ {{dpsPass}}
|
|
218
166
|
Step 1: 扩展 AgentAuditPhase(如需要)
|
|
219
167
|
Step 2: 确认 agentAudit() 通道
|
|
@@ -223,8 +171,8 @@ Plan 不是"文档开销"——它是代码治理的基础设施。跳过 Plan
|
|
|
223
171
|
方案 B — 补不上则回滚:
|
|
224
172
|
如果改动太复杂无法追溯生成 Plan,则:
|
|
225
173
|
① git diff 确认改动范围
|
|
226
|
-
②
|
|
227
|
-
③
|
|
174
|
+
② 仅对已确认属于本轮的文件生成反向 apply_patch
|
|
175
|
+
③ 无法安全确认改动所有权时停止,并请求用户决定
|
|
228
176
|
|
|
229
177
|
无论选 A 还是 B,完成后告诉用户下次执行 session-init 恢复上下文。
|
|
230
178
|
EOF
|
|
@@ -24,7 +24,7 @@ build_stop_context() {
|
|
|
24
24
|
echo "[ADD Stop] 无活跃 Plan,无代码改动。正常结束。"
|
|
25
25
|
;;
|
|
26
26
|
"no_add_has_dev")
|
|
27
|
-
cat <<
|
|
27
|
+
cat <<EOF
|
|
28
28
|
[ADD Stop] ⚠️ 检测到代码修改但无活跃 ADD Plan。
|
|
29
29
|
|
|
30
30
|
Plan 不是"文档开销"——它是代码治理的基础设斻。跳过 Plan 的后果:
|
|
@@ -35,7 +35,7 @@ Plan 不是"文档开销"——它是代码治理的基础设斻。跳过 Plan
|
|
|
35
35
|
你必须立即补救,二选一:
|
|
36
36
|
|
|
37
37
|
方案 A — 补 ADD 流程(招安):
|
|
38
|
-
Step 0: 读
|
|
38
|
+
Step 0: 读 ${MAGIC_DIR}/templates/standard-plan-template.md → 生成 Plan → ${MAGIC_DIR}/plans/{today}/{keyword}-plan-v1.md
|
|
39
39
|
生成 add-route → check_dps ≥ {{dpsPass}}
|
|
40
40
|
Step 1: 扩展 AgentAuditPhase(如需要)
|
|
41
41
|
Step 2: 确认 agentAudit() 通道
|
|
@@ -45,8 +45,8 @@ Plan 不是"文档开销"——它是代码治理的基础设斻。跳过 Plan
|
|
|
45
45
|
方案 B — 补不上则回滚:
|
|
46
46
|
如果改动太复杂无法追溯生成 Plan,则:
|
|
47
47
|
① git diff 确认改动范围
|
|
48
|
-
②
|
|
49
|
-
③
|
|
48
|
+
② 仅对已确认属于本轮的文件生成反向 apply_patch
|
|
49
|
+
③ 无法安全确认改动所有权时停止,并请求用户决定
|
|
50
50
|
|
|
51
51
|
无论选 A 还是 B,完成后告诉用户下次执行 session-init 恢复上下文。
|
|
52
52
|
EOF
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
# - MCP Server 宕机不丢事件,重启后从文件恢复消费
|
|
12
12
|
|
|
13
13
|
write_hook_event() {
|
|
14
|
-
local hook="$1" decision="$2" cmd="$3" reason="$4" plan="${5:-unknown}" status="${6:-none}"
|
|
15
|
-
local dir="
|
|
14
|
+
local hook="$1" decision="$2" cmd="$3" reason="$4" plan="${5:-unknown}" status="${6:-none}" extra="${7:-}"
|
|
15
|
+
local dir=".codex/reports"
|
|
16
16
|
mkdir -p "$dir" 2>/dev/null || true
|
|
17
17
|
local file="$dir/hook-events.jsonl"
|
|
18
18
|
|
|
@@ -23,12 +23,14 @@ write_hook_event() {
|
|
|
23
23
|
[ "$sz" -gt 262144 ] && mv "$file" "${file}.old" 2>/dev/null || true
|
|
24
24
|
fi
|
|
25
25
|
|
|
26
|
-
|
|
26
|
+
# extra 为可选 JSON 片段(Task 1.5 数据契约:anchor_hit/struct_score/override 等),非空时以逗号拼接
|
|
27
|
+
printf '{"ts":"%s","hook":"%s","decision":"%s","cmd":"%s","reason":"%s","planKeyword":"%s","planStatus":"%s"%s}\n' \
|
|
27
28
|
"$(date -u +%Y-%m-%dT%H:%M:%SZ)" \
|
|
28
29
|
"$hook" \
|
|
29
30
|
"$decision" \
|
|
30
31
|
"$cmd" \
|
|
31
32
|
"$reason" \
|
|
32
33
|
"$plan" \
|
|
33
|
-
"$status"
|
|
34
|
+
"$status" \
|
|
35
|
+
"${extra:+,$extra}" >> "$file"
|
|
34
36
|
}
|
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
# @Date : 2026-07-17 13:19:01
|
|
5
5
|
# @LastEditors : xiaomingming wujixmm@gmail.com
|
|
6
6
|
# @LastEditTime : 2026-07-17 13:21:29
|
|
7
|
-
# @FilePath : /add-coder/templates/
|
|
7
|
+
# @FilePath : /add-coder/templates/adapters/codex/hooks/lib/preload-templates.sh
|
|
8
8
|
# @Description : ADD 模板预读脚本
|
|
9
9
|
###
|
|
10
10
|
# preload-templates.sh — ADD 模板预读脚本
|
|
11
|
-
# 路径: templates/
|
|
11
|
+
# 路径: templates/adapters/codex/hooks/lib/preload-templates.sh
|
|
12
12
|
#
|
|
13
13
|
# 用法:
|
|
14
14
|
# preload-templates.sh --index # 输出模板清单(文件名 + 用途)
|
|
@@ -16,14 +16,14 @@
|
|
|
16
16
|
# preload-templates.sh --full --top 5 # 输出前 5 个最常用模板全文
|
|
17
17
|
# preload-templates.sh --full --mark # 全文输出 + 落 tpl-injected 标记
|
|
18
18
|
#
|
|
19
|
-
#
|
|
19
|
+
# 可由 Codex 生命周期 hook 或人工按需调用。
|
|
20
20
|
# tpl-injected 标记文件用于去重——同会话二次命中时不重复注入。
|
|
21
21
|
|
|
22
22
|
set -euo pipefail
|
|
23
23
|
|
|
24
|
-
#
|
|
24
|
+
# core 标准模板在分发期物化到 `.codex/templates`;生成态只读取当前 adapter 本地副本。
|
|
25
25
|
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
26
|
-
TEMPLATES_DIR="${SCRIPT_DIR}
|
|
26
|
+
TEMPLATES_DIR="${SCRIPT_DIR}/../../templates"
|
|
27
27
|
|
|
28
28
|
# tpl-injected 标记文件路径(项目级,/tmp 下按项目 hash 区分)
|
|
29
29
|
PROJECT_HASH=$(echo "${PROJECT_DIR:-$PWD}" | md5sum 2>/dev/null | cut -c1-8 || echo "default")
|
|
@@ -74,6 +74,25 @@ PRIORITY_ORDER=(
|
|
|
74
74
|
"TERMINOLOGY.md"
|
|
75
75
|
)
|
|
76
76
|
|
|
77
|
+
validate_templates_dir() {
|
|
78
|
+
if [ ! -d "$TEMPLATES_DIR" ]; then
|
|
79
|
+
echo "[ADD preload] 模板目录不存在: $TEMPLATES_DIR" >&2
|
|
80
|
+
exit 1
|
|
81
|
+
fi
|
|
82
|
+
|
|
83
|
+
local available=0
|
|
84
|
+
local tmpl
|
|
85
|
+
for tmpl in "${PRIORITY_ORDER[@]}"; do
|
|
86
|
+
if [ -f "$TEMPLATES_DIR/$tmpl" ]; then
|
|
87
|
+
available=$((available + 1))
|
|
88
|
+
fi
|
|
89
|
+
done
|
|
90
|
+
if [ "$available" -eq 0 ]; then
|
|
91
|
+
echo "[ADD preload] 模板目录中未找到 ADD 标准模板: $TEMPLATES_DIR" >&2
|
|
92
|
+
exit 1
|
|
93
|
+
fi
|
|
94
|
+
}
|
|
95
|
+
|
|
77
96
|
# 读取模板文件内容(strip frontmatter)
|
|
78
97
|
read_template_content() {
|
|
79
98
|
local file="$1"
|
|
@@ -99,7 +118,7 @@ output_index() {
|
|
|
99
118
|
for tmpl in "${PRIORITY_ORDER[@]}"; do
|
|
100
119
|
if [ -f "$TEMPLATES_DIR/$tmpl" ]; then
|
|
101
120
|
echo "| $i | $tmpl | ${TEMPLATES[$tmpl]:-模板文件} |"
|
|
102
|
-
((i
|
|
121
|
+
i=$((i + 1))
|
|
103
122
|
fi
|
|
104
123
|
done
|
|
105
124
|
}
|
|
@@ -165,6 +184,8 @@ main() {
|
|
|
165
184
|
esac
|
|
166
185
|
done
|
|
167
186
|
|
|
187
|
+
validate_templates_dir
|
|
188
|
+
|
|
168
189
|
case "$mode" in
|
|
169
190
|
index)
|
|
170
191
|
output_index
|