@fro.bot/systematic 1.22.8 → 1.23.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.
- package/package.json +1 -1
- package/skills/agent-browser/SKILL.md +511 -170
- package/skills/agent-browser/references/authentication.md +303 -0
- package/skills/agent-browser/references/commands.md +266 -0
- package/skills/agent-browser/references/profiling.md +120 -0
- package/skills/agent-browser/references/proxy-support.md +194 -0
- package/skills/agent-browser/references/session-management.md +193 -0
- package/skills/agent-browser/references/snapshot-refs.md +194 -0
- package/skills/agent-browser/references/video-recording.md +173 -0
- package/skills/agent-browser/templates/authenticated-session.sh +105 -0
- package/skills/agent-browser/templates/capture-workflow.sh +69 -0
- package/skills/agent-browser/templates/form-automation.sh +62 -0
- package/skills/agent-native-audit/SKILL.md +279 -0
- package/skills/ce-brainstorm/SKILL.md +146 -0
- package/skills/ce-compound/SKILL.md +317 -0
- package/skills/ce-plan/SKILL.md +642 -0
- package/skills/ce-review/SKILL.md +559 -0
- package/skills/ce-work/SKILL.md +471 -0
- package/skills/changelog/SKILL.md +139 -0
- package/skills/create-agent-skill/SKILL.md +10 -0
- package/skills/create-agent-skills/SKILL.md +3 -14
- package/skills/deepen-plan/SKILL.md +545 -0
- package/skills/deploy-docs/SKILL.md +113 -0
- package/skills/feature-video/SKILL.md +352 -0
- package/skills/generate_command/SKILL.md +163 -0
- package/skills/heal-skill/SKILL.md +148 -0
- package/skills/lfg/SKILL.md +34 -0
- package/skills/report-bug/SKILL.md +151 -0
- package/skills/reproduce-bug/SKILL.md +101 -0
- package/skills/resolve_parallel/SKILL.md +35 -0
- package/skills/resolve_todo_parallel/SKILL.md +38 -0
- package/skills/slfg/SKILL.md +33 -0
- package/skills/test-browser/SKILL.md +394 -0
- package/skills/test-xcode/SKILL.md +333 -0
- package/skills/triage/SKILL.md +312 -0
- package/skills/workflows-brainstorm/SKILL.md +11 -0
- package/skills/workflows-compound/SKILL.md +10 -0
- package/skills/workflows-plan/SKILL.md +10 -0
- package/skills/workflows-review/SKILL.md +10 -0
- package/skills/workflows-work/SKILL.md +10 -0
|
@@ -0,0 +1,312 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: triage
|
|
3
|
+
description: Triage and categorize findings for the CLI todo system
|
|
4
|
+
argument-hint: '[findings list or source type]'
|
|
5
|
+
disable-model-invocation: true
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
- First set the /model to Haiku
|
|
9
|
+
- Then read all pending todos in the todos/ directory
|
|
10
|
+
|
|
11
|
+
Present all findings, decisions, or issues here one by one for triage. The goal is to go through each item and decide whether to add it to the CLI todo system.
|
|
12
|
+
|
|
13
|
+
**IMPORTANT: DO NOT CODE ANYTHING DURING TRIAGE!**
|
|
14
|
+
|
|
15
|
+
This command is for:
|
|
16
|
+
|
|
17
|
+
- Triaging code review findings
|
|
18
|
+
- Processing security audit results
|
|
19
|
+
- Reviewing performance analysis
|
|
20
|
+
- Handling any other categorized findings that need tracking
|
|
21
|
+
|
|
22
|
+
## Workflow
|
|
23
|
+
|
|
24
|
+
### Step 1: Present Each Finding
|
|
25
|
+
|
|
26
|
+
For each finding, present in this format:
|
|
27
|
+
|
|
28
|
+
```
|
|
29
|
+
---
|
|
30
|
+
Issue #X: [Brief Title]
|
|
31
|
+
|
|
32
|
+
Severity: 🔴 P1 (CRITICAL) / 🟡 P2 (IMPORTANT) / 🔵 P3 (NICE-TO-HAVE)
|
|
33
|
+
|
|
34
|
+
Category: [Security/Performance/Architecture/Bug/Feature/etc.]
|
|
35
|
+
|
|
36
|
+
Description:
|
|
37
|
+
[Detailed explanation of the issue or improvement]
|
|
38
|
+
|
|
39
|
+
Location: [file_path:line_number]
|
|
40
|
+
|
|
41
|
+
Problem Scenario:
|
|
42
|
+
[Step by step what's wrong or could happen]
|
|
43
|
+
|
|
44
|
+
Proposed Solution:
|
|
45
|
+
[How to fix it]
|
|
46
|
+
|
|
47
|
+
Estimated Effort: [Small (< 2 hours) / Medium (2-8 hours) / Large (> 8 hours)]
|
|
48
|
+
|
|
49
|
+
---
|
|
50
|
+
Do you want to add this to the todo list?
|
|
51
|
+
1. yes - create todo file
|
|
52
|
+
2. next - skip this item
|
|
53
|
+
3. custom - modify before creating
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
### Step 2: Handle User Decision
|
|
57
|
+
|
|
58
|
+
**When user says "yes":**
|
|
59
|
+
|
|
60
|
+
1. **Update existing todo file** (if it exists) or **Create new filename:**
|
|
61
|
+
|
|
62
|
+
If todo already exists (from code review):
|
|
63
|
+
|
|
64
|
+
- Rename file from `{id}-pending-{priority}-{desc}.md` → `{id}-ready-{priority}-{desc}.md`
|
|
65
|
+
- Update YAML frontmatter: `status: pending` → `status: ready`
|
|
66
|
+
- Keep issue_id, priority, and description unchanged
|
|
67
|
+
|
|
68
|
+
If creating new todo:
|
|
69
|
+
|
|
70
|
+
```
|
|
71
|
+
{next_id}-ready-{priority}-{brief-description}.md
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
Priority mapping:
|
|
75
|
+
|
|
76
|
+
- 🔴 P1 (CRITICAL) → `p1`
|
|
77
|
+
- 🟡 P2 (IMPORTANT) → `p2`
|
|
78
|
+
- 🔵 P3 (NICE-TO-HAVE) → `p3`
|
|
79
|
+
|
|
80
|
+
Example: `042-ready-p1-transaction-boundaries.md`
|
|
81
|
+
|
|
82
|
+
2. **Update YAML frontmatter:**
|
|
83
|
+
|
|
84
|
+
```yaml
|
|
85
|
+
---
|
|
86
|
+
status: ready # IMPORTANT: Change from "pending" to "ready"
|
|
87
|
+
priority: p1 # or p2, p3 based on severity
|
|
88
|
+
issue_id: "042"
|
|
89
|
+
tags: [category, relevant-tags]
|
|
90
|
+
dependencies: []
|
|
91
|
+
---
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
3. **Populate or update the file:**
|
|
95
|
+
|
|
96
|
+
```yaml
|
|
97
|
+
# [Issue Title]
|
|
98
|
+
|
|
99
|
+
## Problem Statement
|
|
100
|
+
[Description from finding]
|
|
101
|
+
|
|
102
|
+
## Findings
|
|
103
|
+
- [Key discoveries]
|
|
104
|
+
- Location: [file_path:line_number]
|
|
105
|
+
- [Scenario details]
|
|
106
|
+
|
|
107
|
+
## Proposed Solutions
|
|
108
|
+
|
|
109
|
+
### Option 1: [Primary solution]
|
|
110
|
+
- **Pros**: [Benefits]
|
|
111
|
+
- **Cons**: [Drawbacks if any]
|
|
112
|
+
- **Effort**: [Small/Medium/Large]
|
|
113
|
+
- **Risk**: [Low/Medium/High]
|
|
114
|
+
|
|
115
|
+
## Recommended Action
|
|
116
|
+
[Filled during triage - specific action plan]
|
|
117
|
+
|
|
118
|
+
## Technical Details
|
|
119
|
+
- **Affected Files**: [List files]
|
|
120
|
+
- **Related Components**: [Components affected]
|
|
121
|
+
- **Database Changes**: [Yes/No - describe if yes]
|
|
122
|
+
|
|
123
|
+
## Resources
|
|
124
|
+
- Original finding: [Source of this issue]
|
|
125
|
+
- Related issues: [If any]
|
|
126
|
+
|
|
127
|
+
## Acceptance Criteria
|
|
128
|
+
- [ ] [Specific success criteria]
|
|
129
|
+
- [ ] Tests pass
|
|
130
|
+
- [ ] Code reviewed
|
|
131
|
+
|
|
132
|
+
## Work Log
|
|
133
|
+
|
|
134
|
+
### {date} - Approved for Work
|
|
135
|
+
**By:** Claude Triage System
|
|
136
|
+
**Actions:**
|
|
137
|
+
- Issue approved during triage session
|
|
138
|
+
- Status changed from pending → ready
|
|
139
|
+
- Ready to be picked up and worked on
|
|
140
|
+
|
|
141
|
+
**Learnings:**
|
|
142
|
+
- [Context and insights]
|
|
143
|
+
|
|
144
|
+
## Notes
|
|
145
|
+
Source: Triage session on {date}
|
|
146
|
+
```
|
|
147
|
+
|
|
148
|
+
4. **Confirm approval:** "✅ Approved: `{new_filename}` (Issue #{issue_id}) - Status: **ready** → Ready to work on"
|
|
149
|
+
|
|
150
|
+
**When user says "next":**
|
|
151
|
+
|
|
152
|
+
- **Delete the todo file** - Remove it from todos/ directory since it's not relevant
|
|
153
|
+
- Skip to the next item
|
|
154
|
+
- Track skipped items for summary
|
|
155
|
+
|
|
156
|
+
**When user says "custom":**
|
|
157
|
+
|
|
158
|
+
- Ask what to modify (priority, description, details)
|
|
159
|
+
- Update the information
|
|
160
|
+
- Present revised version
|
|
161
|
+
- Ask again: yes/next/custom
|
|
162
|
+
|
|
163
|
+
### Step 3: Continue Until All Processed
|
|
164
|
+
|
|
165
|
+
- Process all items one by one
|
|
166
|
+
- Track using todowrite for visibility
|
|
167
|
+
- Don't wait for approval between items - keep moving
|
|
168
|
+
|
|
169
|
+
### Step 4: Final Summary
|
|
170
|
+
|
|
171
|
+
After all items processed:
|
|
172
|
+
|
|
173
|
+
````markdown
|
|
174
|
+
## Triage Complete
|
|
175
|
+
|
|
176
|
+
**Total Items:** [X] **Todos Approved (ready):** [Y] **Skipped:** [Z]
|
|
177
|
+
|
|
178
|
+
### Approved Todos (Ready for Work):
|
|
179
|
+
|
|
180
|
+
- `042-ready-p1-transaction-boundaries.md` - Transaction boundary issue
|
|
181
|
+
- `043-ready-p2-cache-optimization.md` - Cache performance improvement ...
|
|
182
|
+
|
|
183
|
+
### Skipped Items (Deleted):
|
|
184
|
+
|
|
185
|
+
- Item #5: [reason] - Removed from todos/
|
|
186
|
+
- Item #12: [reason] - Removed from todos/
|
|
187
|
+
|
|
188
|
+
### Summary of Changes Made:
|
|
189
|
+
|
|
190
|
+
During triage, the following status updates occurred:
|
|
191
|
+
|
|
192
|
+
- **Pending → Ready:** Filenames and frontmatter updated to reflect approved status
|
|
193
|
+
- **Deleted:** Todo files for skipped findings removed from todos/ directory
|
|
194
|
+
- Each approved file now has `status: ready` in YAML frontmatter
|
|
195
|
+
|
|
196
|
+
### Next Steps:
|
|
197
|
+
|
|
198
|
+
1. View approved todos ready for work:
|
|
199
|
+
```bash
|
|
200
|
+
ls todos/*-ready-*.md
|
|
201
|
+
```
|
|
202
|
+
````
|
|
203
|
+
|
|
204
|
+
2. Start work on approved items:
|
|
205
|
+
|
|
206
|
+
```bash
|
|
207
|
+
/resolve_todo_parallel # Work on multiple approved items efficiently
|
|
208
|
+
```
|
|
209
|
+
|
|
210
|
+
3. Or pick individual items to work on
|
|
211
|
+
|
|
212
|
+
4. As you work, update todo status:
|
|
213
|
+
- Ready → In Progress (in your local context as you work)
|
|
214
|
+
- In Progress → Complete (rename file: ready → complete, update frontmatter)
|
|
215
|
+
|
|
216
|
+
```
|
|
217
|
+
|
|
218
|
+
## Example Response Format
|
|
219
|
+
|
|
220
|
+
```
|
|
221
|
+
|
|
222
|
+
---
|
|
223
|
+
|
|
224
|
+
Issue #5: Missing Transaction Boundaries for Multi-Step Operations
|
|
225
|
+
|
|
226
|
+
Severity: 🔴 P1 (CRITICAL)
|
|
227
|
+
|
|
228
|
+
Category: Data Integrity / Security
|
|
229
|
+
|
|
230
|
+
Description: The google_oauth2_connected callback in GoogleOauthCallbacks concern performs multiple database operations without transaction protection. If any step fails midway, the database is left in an inconsistent state.
|
|
231
|
+
|
|
232
|
+
Location: app/controllers/concerns/google_oauth_callbacks.rb:13-50
|
|
233
|
+
|
|
234
|
+
Problem Scenario:
|
|
235
|
+
|
|
236
|
+
1. User.update succeeds (email changed)
|
|
237
|
+
2. Account.save! fails (validation error)
|
|
238
|
+
3. Result: User has changed email but no associated Account
|
|
239
|
+
4. Next login attempt fails completely
|
|
240
|
+
|
|
241
|
+
Operations Without Transaction:
|
|
242
|
+
|
|
243
|
+
- User confirmation (line 13)
|
|
244
|
+
- Waitlist removal (line 14)
|
|
245
|
+
- User profile update (line 21-23)
|
|
246
|
+
- Account creation (line 28-37)
|
|
247
|
+
- Avatar attachment (line 39-45)
|
|
248
|
+
- Journey creation (line 47)
|
|
249
|
+
|
|
250
|
+
Proposed Solution: Wrap all operations in ApplicationRecord.transaction do ... end block
|
|
251
|
+
|
|
252
|
+
Estimated Effort: Small (30 minutes)
|
|
253
|
+
|
|
254
|
+
---
|
|
255
|
+
|
|
256
|
+
Do you want to add this to the todo list?
|
|
257
|
+
|
|
258
|
+
1. yes - create todo file
|
|
259
|
+
2. next - skip this item
|
|
260
|
+
3. custom - modify before creating
|
|
261
|
+
|
|
262
|
+
```
|
|
263
|
+
|
|
264
|
+
## Important Implementation Details
|
|
265
|
+
|
|
266
|
+
### Status Transitions During Triage
|
|
267
|
+
|
|
268
|
+
**When "yes" is selected:**
|
|
269
|
+
1. Rename file: `{id}-pending-{priority}-{desc}.md` → `{id}-ready-{priority}-{desc}.md`
|
|
270
|
+
2. Update YAML frontmatter: `status: pending` → `status: ready`
|
|
271
|
+
3. Update Work Log with triage approval entry
|
|
272
|
+
4. Confirm: "✅ Approved: `{filename}` (Issue #{issue_id}) - Status: **ready**"
|
|
273
|
+
|
|
274
|
+
**When "next" is selected:**
|
|
275
|
+
1. Delete the todo file from todos/ directory
|
|
276
|
+
2. Skip to next item
|
|
277
|
+
3. No file remains in the system
|
|
278
|
+
|
|
279
|
+
### Progress Tracking
|
|
280
|
+
|
|
281
|
+
Every time you present a todo as a header, include:
|
|
282
|
+
- **Progress:** X/Y completed (e.g., "3/10 completed")
|
|
283
|
+
- **Estimated time remaining:** Based on how quickly you're progressing
|
|
284
|
+
- **Pacing:** Monitor time per finding and adjust estimate accordingly
|
|
285
|
+
|
|
286
|
+
Example:
|
|
287
|
+
```
|
|
288
|
+
|
|
289
|
+
Progress: 3/10 completed | Estimated time: ~2 minutes remaining
|
|
290
|
+
|
|
291
|
+
```
|
|
292
|
+
|
|
293
|
+
### Do Not Code During Triage
|
|
294
|
+
|
|
295
|
+
- ✅ Present findings
|
|
296
|
+
- ✅ Make yes/next/custom decisions
|
|
297
|
+
- ✅ Update todo files (rename, frontmatter, work log)
|
|
298
|
+
- ❌ Do NOT implement fixes or write code
|
|
299
|
+
- ❌ Do NOT add detailed implementation details
|
|
300
|
+
- ❌ That's for /resolve_todo_parallel phase
|
|
301
|
+
```
|
|
302
|
+
|
|
303
|
+
When done give these options
|
|
304
|
+
|
|
305
|
+
```markdown
|
|
306
|
+
What would you like to do next?
|
|
307
|
+
|
|
308
|
+
1. run /resolve_todo_parallel to resolve the todos
|
|
309
|
+
2. commit the todos
|
|
310
|
+
3. nothing, go chill
|
|
311
|
+
```
|
|
312
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: workflows:brainstorm
|
|
3
|
+
description: '[DEPRECATED] Use /ce:brainstorm instead — renamed for clarity.'
|
|
4
|
+
argument-hint: '[feature idea or problem to explore]'
|
|
5
|
+
disable-model-invocation: true
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
NOTE: /workflows:brainstorm is deprecated. Please use /ce:brainstorm instead. This alias will be removed in a future version.
|
|
9
|
+
|
|
10
|
+
/ce:brainstorm $ARGUMENTS
|
|
11
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: workflows:compound
|
|
3
|
+
description: '[DEPRECATED] Use /ce:compound instead — renamed for clarity.'
|
|
4
|
+
argument-hint: '[optional: brief context about the fix]'
|
|
5
|
+
disable-model-invocation: true
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
NOTE: /workflows:compound is deprecated. Please use /ce:compound instead. This alias will be removed in a future version.
|
|
9
|
+
|
|
10
|
+
/ce:compound $ARGUMENTS
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: workflows:plan
|
|
3
|
+
description: '[DEPRECATED] Use /ce:plan instead — renamed for clarity.'
|
|
4
|
+
argument-hint: '[feature description, bug report, or improvement idea]'
|
|
5
|
+
disable-model-invocation: true
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
NOTE: /workflows:plan is deprecated. Please use /ce:plan instead. This alias will be removed in a future version.
|
|
9
|
+
|
|
10
|
+
/ce:plan $ARGUMENTS
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: workflows:review
|
|
3
|
+
description: '[DEPRECATED] Use /ce:review instead — renamed for clarity.'
|
|
4
|
+
argument-hint: '[PR number, GitHub URL, branch name, or latest]'
|
|
5
|
+
disable-model-invocation: true
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
NOTE: /workflows:review is deprecated. Please use /ce:review instead. This alias will be removed in a future version.
|
|
9
|
+
|
|
10
|
+
/ce:review $ARGUMENTS
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: workflows:work
|
|
3
|
+
description: '[DEPRECATED] Use /ce:work instead — renamed for clarity.'
|
|
4
|
+
argument-hint: '[plan file, specification, or todo file path]'
|
|
5
|
+
disable-model-invocation: true
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
NOTE: /workflows:work is deprecated. Please use /ce:work instead. This alias will be removed in a future version.
|
|
9
|
+
|
|
10
|
+
/ce:work $ARGUMENTS
|