You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Stakeholder review and research do NOT run automatically as part of `/cat:work`.
15
+
They only run if the user explicitly invokes them (e.g., `/cat:stakeholder-review-agent` directly).
16
+
17
+
Suitable for highly-trusted teams with established code review processes who find the automated review
18
+
cycle adds friction without value.
19
+
20
+
### medium — automatic, scoped to immediate issue (current default behavior)
21
+
22
+
Stakeholder review and research run automatically as part of `/cat:work`.
23
+
24
+
Scope is limited to:
25
+
- Files changed in the implementation
26
+
- Direct dependencies referenced in the changed files
27
+
- The issue's own plan.md post-conditions and goal
28
+
29
+
Reviewers are instructed to focus on: "Does this change correctly and completely implement its stated
30
+
goal without introducing regressions in the changed files and their direct dependencies?"
31
+
32
+
This is the current behavior.
33
+
34
+
### high — automatic, holistic system integration
35
+
36
+
Stakeholder review and research run automatically as part of `/cat:work`.
37
+
38
+
Scope is expanded to consider the broader system:
39
+
- How does this change interact with other open issues in the same version?
40
+
- Are there architectural patterns in the rest of the codebase that this change should follow or
41
+
that this change might inadvertently break?
42
+
- Are there cross-cutting concerns (security, performance, accessibility) that need validation
43
+
beyond the immediately changed files?
44
+
45
+
Reviewer prompts include explicit instructions to read surrounding code context (not just the diff)
46
+
and consider downstream impact on consumers of changed APIs or interfaces.
47
+
48
+
Research (`cat:research-agent`) also runs with broader context:
49
+
- Surveys existing patterns in the codebase before proposing an approach
50
+
- Checks whether similar problems have been solved elsewhere in the repo
51
+
52
+
## Pre-conditions
53
+
54
+
(none)
55
+
56
+
## Post-conditions
57
+
58
+
-[ ] curiosity=low: stakeholder review and research are skipped in /cat:work; no automatic invocation
59
+
-[ ] curiosity=low: user can still manually trigger review via explicit skill invocation
60
+
-[ ] curiosity=medium: stakeholder review runs automatically, scoped to changed files and direct deps (current behavior preserved)
61
+
-[ ] curiosity=high: stakeholder review runs with expanded scope; reviewer prompts include explicit instructions to consider broader system context
62
+
-[ ] curiosity=high: research skill (cat:research-agent) is invoked with broader codebase survey context
63
+
-[ ] curiosity=high reviewer prompts: each stakeholder receives instructions to read surrounding files and consider downstream impact
64
+
-[ ] curiosity level read from effective config in work-with-issue orchestration before spawning reviewers
65
+
-[ ] Unit tests for curiosity level routing logic
66
+
-[ ] No regressions in existing curiosity=medium workflows
67
+
-[ ] E2E: run /cat:work at curiosity=low and verify no review runs; curiosity=medium verify scoped review; curiosity=high verify holistic reviewer prompt is used
0 commit comments