@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.
Files changed (37) hide show
  1. package/CHANGELOG.md +48 -9
  2. package/README.md +23 -4
  3. package/dist/workflows/dag/init-hybrid.js +27 -11
  4. package/docs/README.md +1 -0
  5. package/docs/init-surface.manifest.json +4 -7
  6. package/docs/templates/branch-merge-report.md +0 -1
  7. package/harness.json +1 -1
  8. package/package.json +6 -16
  9. package/skills/browser-tools/SKILL.md +2 -2
  10. package/skills/frontend-design-review/references/review-checklist.md +27 -45
  11. package/skills/frontend-implementation/references/node-contracts.md +4 -4
  12. package/skills/frontend-review/SKILL.md +3 -1
  13. package/skills/frontend-review/references/review-findings.md +2 -1
  14. package/skills/frontend-verification/SKILL.md +3 -1
  15. package/skills/frontend-verification/references/verification-checklist.md +13 -22
  16. package/skills/loop-agent/references/hybrid-dag.md +1 -1
  17. package/docs/agent-dag-recovery-playbook.md +0 -195
  18. package/docs/agent-dag-runner.md +0 -67
  19. package/docs/cursor-prompt-sidecar.md +0 -36
  20. package/docs/decisions/README.md +0 -18
  21. package/docs/design/README.md +0 -167
  22. package/docs/development-principles.md +0 -73
  23. package/docs/exec-plans/README.md +0 -6
  24. package/docs/exec-plans/active/README.md +0 -13
  25. package/docs/exec-plans/completed/README.md +0 -108
  26. package/docs/feature-workflow.md +0 -414
  27. package/docs/loop-agent-harness.md +0 -142
  28. package/docs/production-readiness.md +0 -96
  29. package/docs/progress/README.md +0 -81
  30. package/docs/reports/README.md +0 -163
  31. package/docs/verification-matrix.md +0 -70
  32. package/scripts/check-product-line-docs.sh +0 -29
  33. package/scripts/check-task-pool-root.sh +0 -32
  34. package/scripts/kb-graph-incremental-prepare.sh +0 -5
  35. package/scripts/kb-graph-materialize.sh +0 -4
  36. package/scripts/kb-graph-promote.sh +0 -4
  37. 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"
@@ -1,5 +0,0 @@
1
- #!/usr/bin/env bash
2
- # Incremental knowledge-graph update prepare (narrowed scope for bootstrap DAG).
3
- set -euo pipefail
4
- ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
5
- exec node "${ROOT_DIR}/scripts/kb-graph-incremental-prepare.mjs" "$@"
@@ -1,4 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
4
- exec node "${ROOT_DIR}/scripts/kb-graph-materialize.mjs" "$@"
@@ -1,4 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
4
- exec node "${ROOT_DIR}/scripts/kb-graph-promote.mjs" "$@"
@@ -1,5 +0,0 @@
1
- #!/usr/bin/env bash
2
- # Phase A knowledge query wrapper (by_id / by_feature / search).
3
- set -euo pipefail
4
- ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
5
- exec node "${ROOT_DIR}/scripts/kb-query.mjs" "$@"