@tea-agent/loop-agent 0.14.0 → 0.15.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/CHANGELOG.md +48 -9
- package/README.md +23 -4
- package/dist/workflows/dag/init-hybrid.js +27 -11
- package/docs/README.md +1 -0
- package/docs/init-surface.manifest.json +4 -7
- package/docs/templates/branch-merge-report.md +0 -1
- package/harness.json +1 -1
- package/package.json +6 -16
- package/skills/browser-tools/SKILL.md +2 -2
- package/skills/frontend-design-review/references/review-checklist.md +27 -45
- package/skills/frontend-implementation/references/node-contracts.md +4 -4
- package/skills/frontend-review/SKILL.md +3 -1
- package/skills/frontend-review/references/review-findings.md +2 -1
- package/skills/frontend-verification/SKILL.md +3 -1
- package/skills/frontend-verification/references/verification-checklist.md +13 -22
- package/skills/loop-agent/references/hybrid-dag.md +1 -1
- package/docs/agent-dag-recovery-playbook.md +0 -195
- package/docs/agent-dag-runner.md +0 -67
- package/docs/cursor-prompt-sidecar.md +0 -36
- package/docs/decisions/README.md +0 -18
- package/docs/design/README.md +0 -167
- package/docs/development-principles.md +0 -73
- package/docs/exec-plans/README.md +0 -6
- package/docs/exec-plans/active/README.md +0 -13
- package/docs/exec-plans/completed/README.md +0 -108
- package/docs/feature-workflow.md +0 -414
- package/docs/loop-agent-harness.md +0 -142
- package/docs/production-readiness.md +0 -96
- package/docs/progress/README.md +0 -81
- package/docs/reports/README.md +0 -163
- package/docs/verification-matrix.md +0 -70
- package/scripts/check-product-line-docs.sh +0 -29
- package/scripts/check-task-pool-root.sh +0 -32
- package/scripts/kb-graph-incremental-prepare.sh +0 -5
- package/scripts/kb-graph-materialize.sh +0 -4
- package/scripts/kb-graph-promote.sh +0 -4
- package/scripts/kb-query.sh +0 -5
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env bash
|
|
2
|
-
set -euo pipefail
|
|
3
|
-
|
|
4
|
-
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
|
5
|
-
cd "${ROOT_DIR}"
|
|
6
|
-
|
|
7
|
-
scan_paths=(
|
|
8
|
-
src
|
|
9
|
-
test
|
|
10
|
-
scripts
|
|
11
|
-
.github
|
|
12
|
-
README.md
|
|
13
|
-
AGENTS.md
|
|
14
|
-
harness.json
|
|
15
|
-
docs/architecture
|
|
16
|
-
docs/README.md
|
|
17
|
-
docs/loop-agent-harness.md
|
|
18
|
-
docs/init-surface.manifest.json
|
|
19
|
-
skills
|
|
20
|
-
website/docs
|
|
21
|
-
)
|
|
22
|
-
|
|
23
|
-
matches="$(rg -n --path-separator / '[.]task-pool' "${scan_paths[@]}" 2>/dev/null || true)"
|
|
24
|
-
matches="$(printf '%s\n' "${matches}" | rg -v '^(README\.md|AGENTS\.md):.*gitignore|^src/commands/init\.ts:.*("[.]task-pool/"|legacy [.]task-pool residue)|^test/init-command\.test\.ts:.*toContain\("[.]task-pool/"\)|^website/docs/reference/cli\.md:.*旧顶层.*[.]task-pool' || true)"
|
|
25
|
-
|
|
26
|
-
if [[ -n "${matches}" ]]; then
|
|
27
|
-
echo "Task Pool root 检查失败:活跃源码、测试、脚本或用户文档仍引用已废弃的顶层 runtime path:" >&2
|
|
28
|
-
printf '%s\n' "${matches}" >&2
|
|
29
|
-
exit 1
|
|
30
|
-
fi
|
|
31
|
-
|
|
32
|
-
echo "Task Pool root 检查通过:活跃 surface 只使用 .harness/task-pool"
|