agent-army 0.1.15 → 0.1.16
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.
|
@@ -2,29 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
## Always
|
|
4
4
|
|
|
5
|
-
- [ ] If `BOOTSTRAP.md` exists in workspace, follow it first.
|
|
6
|
-
- [ ] Check Linear for tickets assigned to me in "Todo" or "Backlog"
|
|
7
|
-
- [ ]
|
|
8
|
-
|
|
9
|
-
- **Bug** → Research the codebase and related tools, expand the description with findings, then run `linear-ticket-prep` to prep for implementation
|
|
10
|
-
- **Plan** → Full `linear-ticket-prep` flow (research + break down into sub-tickets if needed + assign to Titus)
|
|
11
|
-
- **No label / other labels** → Standard `linear-ticket-prep` flow (prep and assign to Titus)
|
|
12
|
-
- [ ] If any assigned ticket is missing a description or acceptance criteria, flag it and ask the assigner for clarification
|
|
13
|
-
- [ ] **Slow modifier**: If the ticket has a "Slow" label or "Slow" directive in the description, it modifies the routing above — follow the label's normal process to completion, but assign back to Boss (Stepan) instead of forwarding to Titus
|
|
14
|
-
|
|
15
|
-
## Label Quick Reference
|
|
16
|
-
|
|
17
|
-
### Routing Labels (pick highest priority if multiple)
|
|
18
|
-
|
|
19
|
-
| Label | Process | Assign To When Done |
|
|
20
|
-
|-------|---------|-------------------|
|
|
21
|
-
| Research Needed | Research only (no implementation prep) | Stepan (Boss) |
|
|
22
|
-
| Bug | Research codebase + expand description + `linear-ticket-prep` | Titus |
|
|
23
|
-
| Plan | Full `linear-ticket-prep` (research + split + context + prompt) | Titus |
|
|
24
|
-
| (none/other) | Standard `linear-ticket-prep` flow | Titus |
|
|
25
|
-
|
|
26
|
-
### Modifier Labels
|
|
27
|
-
|
|
28
|
-
| Label | Effect |
|
|
29
|
-
|-------|--------|
|
|
30
|
-
| Slow | Complete the routing process above, then assign to Stepan (Boss) instead of the usual assignee |
|
|
5
|
+
- [ ] If `BOOTSTRAP.md` exists in workspace, follow it first. Stop here until complete.
|
|
6
|
+
- [ ] Check Linear for tickets assigned to me in "Todo" or "Backlog" that haven't been prepped yet
|
|
7
|
+
- [ ] For each unprepped ticket, run the `linear-ticket-routing` skill to determine process and assignee
|
|
8
|
+
- [ ] If any ticket is missing a description or acceptance criteria, flag it and ask the assigner for clarification
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: linear-ticket-routing
|
|
3
|
+
description: Route Linear tickets based on labels. Use when processing unprepped tickets during heartbeat to determine the correct workflow and assignee. Handles Research Needed, Bug, Plan, and Slow modifier labels.
|
|
4
|
+
metadata: {"openclaw":{"emoji":"🏷️"}}
|
|
5
|
+
user-invocable: false
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
# Linear Ticket Routing
|
|
9
|
+
|
|
10
|
+
Route unprepped Linear tickets by reading their labels and running the correct process.
|
|
11
|
+
|
|
12
|
+
## Label Priority
|
|
13
|
+
|
|
14
|
+
If multiple routing labels are present, pick the highest priority: **Research Needed > Bug > Plan > default**.
|
|
15
|
+
|
|
16
|
+
## Routing Table
|
|
17
|
+
|
|
18
|
+
| Label | Process | Default Assignee |
|
|
19
|
+
|-------|---------|-----------------|
|
|
20
|
+
| Research Needed | Research only (Phase 2 of `linear-ticket-prep`) | Stepan (Boss) |
|
|
21
|
+
| Bug | Research codebase + expand description + full `linear-ticket-prep` | Titus |
|
|
22
|
+
| Plan | Full `linear-ticket-prep` (research + split + context + prompt) | Titus |
|
|
23
|
+
| (none/other) | Standard `linear-ticket-prep` flow | Titus |
|
|
24
|
+
|
|
25
|
+
## Slow Modifier
|
|
26
|
+
|
|
27
|
+
If the ticket has a **Slow** label or "Slow" directive in the description, complete the routing process above but override the assignee to **Stepan (Boss)** instead of forwarding to Titus.
|
|
28
|
+
|
|
29
|
+
## Steps
|
|
30
|
+
|
|
31
|
+
1. Read the ticket's labels.
|
|
32
|
+
2. Match the highest-priority routing label from the table above.
|
|
33
|
+
3. Run the corresponding process.
|
|
34
|
+
4. Check for the Slow modifier — if present, assign to Stepan instead of the default assignee.
|
|
35
|
+
5. Assign the ticket to the determined assignee.
|