Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
7bbc19a
fix(drive): keep accepted deliverables current under limit
Jul 2, 2026
421abe1
fix(approvals): show latest approval comments
Jul 2, 2026
82fa1b5
fix(audit): fail closed on policy and snapshot audit loss
Jul 2, 2026
2cc3b46
fix(permissions): keep org kill-switches workspace-wide
Jul 2, 2026
4b3838c
fix(work-items): let claimers read archived project work
Jul 2, 2026
a707397
fix(work-items): reuse clarification drafts with file context
Jul 2, 2026
7e205c5
fix(drive): show all loaded recycle items
Jul 2, 2026
ea0e61b
fix(projects): explain hidden project work counts
Jul 2, 2026
5fd84be
fix(drive): preserve upload folders and restore context
Jul 2, 2026
2a7f879
fix(drive): fall back from stale item links
Jul 2, 2026
0011002
fix(web): localize drive previews and disabled budgets
Jul 2, 2026
418f1dd
fix(approvals): surface truncated queue page info
Jul 2, 2026
49d7a25
fix(drive): clean route-owned upload bytes before service handoff
Jul 2, 2026
b2fb61c
fix(desktop): remove fake spotlight resize handles 待真机验证
Jul 2, 2026
0f31209
fix(desktop): exclude text inputs from spotlight drag 待真机验证
Jul 2, 2026
4d35f19
fix(desktop): wire spotlight routes into cuu context 待真机验证
Jul 2, 2026
a2ef86e
fix(desktop): disable hidden svg glass filters 待真机验证
Jul 2, 2026
ba16a58
fix(desktop): gate tauri chrome fallbacks 待真机验证
Jul 2, 2026
850ad7e
fix(cuu): keep proposal names in merge cards
Jul 2, 2026
ad7f7f2
test(db): replace source-grep repository guards
Jul 2, 2026
cd0c336
fix(openapi): align mutation error contracts
Jul 2, 2026
2475b39
docs(r9): record test integrity assertion audit
Jul 2, 2026
becaaee
fix(approvals): preserve committed decisions when learning fails
Jul 6, 2026
956efc8
fix(drive): remove fake upload cleanup fallback
Jul 6, 2026
276f948
fix(drive): rank historical accepted markers by version
Jul 6, 2026
6459bf6
fix(drive): mark missing deep links without selection
Jul 6, 2026
f0231d5
fix(drive): tell the truth on truncated recycle bins
Jul 6, 2026
4aad128
fix(approvals): add real pagination entry for truncated queues
Jul 6, 2026
a1bc982
fix(escalations): wire R9 escape hatch
Jul 2, 2026
ad73c27
feat(task-plans): add R9 plan data contract
Jul 6, 2026
1bacd6d
feat(task-plans): wire R9 meta planner proposal flow
Jul 6, 2026
5d281aa
feat(task-plans): show R9 plans on work items
Jul 6, 2026
5b01899
feat(task-plans): dispatch R9 child runs
Jul 6, 2026
032823a
feat(task-plans): show R9 child run tree
Jul 6, 2026
3772a43
feat(agent-memory): isolate R9 memory promotion
Jul 6, 2026
a844111
feat(agent-judge): add R9 cross-agent arbitration
Jul 6, 2026
4b54b62
feat(agent-judge): add high-risk multi-vote
Jul 6, 2026
90e17c6
feat(objectives): add R9 OKR planning context
Jul 6, 2026
c5f6f28
feat(cost): add R9 task objective budget scopes
Jul 6, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,10 @@ jobs:
# 未鉴权 Page VM 必须 fail-closed
code=$(curl -s -o /dev/null -w '%{http_code}' http://127.0.0.1:8787/api/pages/attention)
test "$code" = "401" -o "$code" = "403"
- name: Smoke R9 agent memory PG concurrency
run: |
set -euxo pipefail
docker compose -f docker-compose.pilot.yml exec -T workhub pnpm --filter @workhub/api qa:r9-agent-memory-pg-smoke
- name: Smoke the sandbox deliverable libraries (R5.11.1)
run: |
set -euxo pipefail
Expand Down
1 change: 1 addition & 0 deletions apps/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"qa:s1-day3-observation": "tsx --tsconfig ../../tsconfig.base.json src/qa/s1-day3-observation-audit.ts",
"qa:r1-pg-smoke": "tsx --tsconfig ../../tsconfig.base.json src/qa/r1-pg-agent-run-smoke.ts",
"qa:r2-pg-redis-smoke": "tsx --tsconfig ../../tsconfig.base.json src/qa/r2-pg-redis-smoke.ts",
"qa:r9-agent-memory-pg-smoke": "tsx --tsconfig ../../tsconfig.base.json src/qa/r9-agent-memory-pg-smoke.ts",
"qa:cuu-r3-launcher-smoke": "tsx --tsconfig ../../tsconfig.base.json src/qa/cuu-r3-launcher-to-run-smoke.ts",
"qa:cuu-r3-dev-server-smoke": "tsx --tsconfig ../../tsconfig.base.json src/qa/cuu-r3-dev-server-launcher-smoke.ts",
"qa:cuu-r3-run-stream-smoke": "tsx --tsconfig ../../tsconfig.base.json src/qa/cuu-r3-run-stream-smoke.ts",
Expand Down
Loading
Loading