Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ For contexts where the manifest is unavailable (e.g., standalone scripts without
{base_dir}/projects/{project-slug}/tickets/{ticket-id}/
```

Ticket-level artifacts and run directories both live here. Use `get-ticket-id` for the ticket ID.
Ticket-level artifacts and run directories both live here. Use `get-session-context` to obtain `ticket_id`.

### Run paths

Expand Down
1 change: 0 additions & 1 deletion packages/agents/content/subagents/aspect-code-reviewer.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ maxTurns: 20
skills:
- anti-patterns
- common-mistakes
- get-session-context
- review-criteria
---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ tools: [Read, Grep, Glob, Bash, Write]
maxTurns: 20
skills:
- anti-patterns
- get-session-context
- review-criteria
---

Expand Down
1 change: 0 additions & 1 deletion packages/agents/content/subagents/aspect-test-reviewer.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ maxTurns: 20
skills:
- anti-patterns
- common-mistakes
- get-session-context
- review-criteria
---

Expand Down
3 changes: 1 addition & 2 deletions packages/agents/content/subagents/orchestrated-reviewer.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ maxTurns: 30
skills:
- anti-patterns
- common-mistakes
- get-session-context
- review-criteria
- software-engineering
---
Expand All @@ -29,7 +28,7 @@ You will receive:

## Process

1. **Get the diff**: run `git diff <merge-base-sha>..HEAD` to see all changes in scope, where `<merge-base-sha>` is the pre-resolved SHA provided in your task prompt. If none was provided, compute it yourself: invoke `get-session-context`, then run `git merge-base HEAD <default-branch>` to get the SHA.
1. **Get the diff**: run `git diff <merge-base-sha>..HEAD` to see all changes in scope, using the merge-base SHA provided in your task prompt.
2. **Read changed files**: read the full files, not just diffs, to understand context
3. **Evaluate against criteria**: apply review-criteria skill
4. **Form preliminary findings**: classify each finding into the F/W/T/R/S/L scheme and determine overall criticality
Expand Down
Loading