@mind-fold/open-flow 0.2.10 → 0.2.11
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.
|
@@ -26,46 +26,494 @@ Execute these steps in order:
|
|
|
26
26
|
| `add-session.sh` | One-click session recording |
|
|
27
27
|
| `update-index.sh` | Auto-update index.md |
|
|
28
28
|
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
29
|
+
---
|
|
30
|
+
|
|
31
|
+
## Slash Commands Detailed Guide
|
|
32
|
+
|
|
33
|
+
### Core Workflow Commands
|
|
34
|
+
|
|
35
|
+
#### `/init-agent` - Initialize AI Session
|
|
36
|
+
|
|
37
|
+
**What it does**:
|
|
38
|
+
Reads project context and prepares AI for development work. This is the FIRST command to run at the start of every session.
|
|
39
|
+
|
|
40
|
+
**What AI will do**:
|
|
41
|
+
1. Run `./workflow/scripts/get-context.sh` to get:
|
|
42
|
+
- Developer identity (who am I?)
|
|
43
|
+
- Git status (which branch? uncommitted changes?)
|
|
44
|
+
- Recent commits (what happened recently?)
|
|
45
|
+
- Active features (what's in progress?)
|
|
46
|
+
- Progress file status (where to record work?)
|
|
47
|
+
2. Check if developer identity exists, guide initialization if not
|
|
48
|
+
3. Read relevant structure guidelines based on upcoming task
|
|
49
|
+
4. Report ready status with a summary table
|
|
50
|
+
|
|
51
|
+
**Benefits**:
|
|
52
|
+
- AI understands the current state before making changes
|
|
53
|
+
- Avoids conflicts with ongoing work from other developers
|
|
54
|
+
- Knows which guidelines to follow for this project
|
|
55
|
+
- Can continue previous work seamlessly
|
|
56
|
+
|
|
57
|
+
**If skipped**:
|
|
58
|
+
- AI may work on wrong branch or conflict with others' work
|
|
59
|
+
- AI doesn't know project conventions, writes inconsistent code
|
|
60
|
+
- AI can't find previous context, asks redundant questions
|
|
61
|
+
- Progress tracking breaks, work history is lost
|
|
62
|
+
|
|
63
|
+
---
|
|
64
|
+
|
|
65
|
+
#### `/record-agent-flow` - Record Work Progress
|
|
66
|
+
|
|
67
|
+
**What it does**:
|
|
68
|
+
Records completed work to progress files AFTER human has tested and committed code.
|
|
69
|
+
|
|
70
|
+
**What AI will do**:
|
|
71
|
+
1. Get current context with `get-context.sh`
|
|
72
|
+
2. Run `add-session.sh` with session details:
|
|
73
|
+
- Title: Brief description of work done
|
|
74
|
+
- Commit: Git commit hash(es)
|
|
75
|
+
- Summary/Content: Detailed changes, lessons learned
|
|
76
|
+
3. Auto-update index.md with new session count and history
|
|
77
|
+
|
|
78
|
+
**Benefits**:
|
|
79
|
+
- Creates searchable history for future sessions
|
|
80
|
+
- Next AI session can understand what was done before
|
|
81
|
+
- Tracks lessons learned and patterns discovered
|
|
82
|
+
- Enables multi-developer collaboration without conflicts
|
|
83
|
+
|
|
84
|
+
**If skipped**:
|
|
85
|
+
- Next session starts from zero, no context
|
|
86
|
+
- Same bugs may be re-investigated
|
|
87
|
+
- Lessons learned are forgotten
|
|
88
|
+
- Team loses visibility into AI-assisted work
|
|
89
|
+
|
|
90
|
+
---
|
|
91
|
+
|
|
92
|
+
#### `/onboard-developer` - Guide New Developer
|
|
93
|
+
|
|
94
|
+
**What it does**:
|
|
95
|
+
Walks a new developer (human or AI) through the complete setup process.
|
|
96
|
+
|
|
97
|
+
**What AI will do**:
|
|
98
|
+
1. Explain workflow system structure
|
|
99
|
+
2. Run `init-developer.sh` to create identity
|
|
100
|
+
3. Demonstrate key scripts and commands
|
|
101
|
+
4. Guide through first task with examples
|
|
102
|
+
|
|
103
|
+
---
|
|
104
|
+
|
|
105
|
+
### Before Coding Commands
|
|
106
|
+
|
|
107
|
+
#### `/before-frontend-dev` - Read Frontend Guidelines
|
|
108
|
+
|
|
109
|
+
**What it does**:
|
|
110
|
+
Reads frontend development guidelines BEFORE writing any frontend code.
|
|
111
|
+
|
|
112
|
+
**What AI will do**:
|
|
113
|
+
1. Read `workflow/structure/frontend/index.md` to find relevant sections
|
|
114
|
+
2. Extract specific guideline sections based on task type:
|
|
115
|
+
- Component guidelines for UI work
|
|
116
|
+
- Hook guidelines for data fetching
|
|
117
|
+
- State management for complex state
|
|
118
|
+
3. Understand coding standards and patterns to follow
|
|
119
|
+
4. Identify reference examples to learn from
|
|
120
|
+
|
|
121
|
+
**Benefits**:
|
|
122
|
+
- Code follows project conventions from the start
|
|
123
|
+
- Avoids common mistakes documented in guidelines
|
|
124
|
+
- Uses established patterns instead of inventing new ones
|
|
125
|
+
- Reduces review cycles and rework
|
|
126
|
+
|
|
127
|
+
**If skipped**:
|
|
128
|
+
- Code style inconsistent with rest of codebase
|
|
129
|
+
- Reinvents patterns that already exist
|
|
130
|
+
- Makes mistakes that guidelines warn against
|
|
131
|
+
- Requires significant refactoring after review
|
|
132
|
+
|
|
133
|
+
---
|
|
134
|
+
|
|
135
|
+
#### `/before-backend-dev` - Read Backend Guidelines
|
|
136
|
+
|
|
137
|
+
**What it does**:
|
|
138
|
+
Reads backend development guidelines BEFORE writing any backend code.
|
|
139
|
+
|
|
140
|
+
**What AI will do**:
|
|
141
|
+
1. Read `workflow/structure/backend/index.md` to find relevant sections
|
|
142
|
+
2. Extract specific guideline sections:
|
|
143
|
+
- Database operations for DB work
|
|
144
|
+
- Type safety for API contracts
|
|
145
|
+
- Error handling patterns
|
|
146
|
+
- Logging standards
|
|
147
|
+
3. Understand project-specific conventions
|
|
148
|
+
|
|
149
|
+
**Benefits**:
|
|
150
|
+
- Database queries follow established patterns
|
|
151
|
+
- Error handling is consistent across codebase
|
|
152
|
+
- Logging provides useful debugging information
|
|
153
|
+
- API contracts are type-safe
|
|
154
|
+
|
|
155
|
+
**If skipped**:
|
|
156
|
+
- N+1 query problems in database code
|
|
157
|
+
- Inconsistent error handling
|
|
158
|
+
- Missing or unhelpful logs
|
|
159
|
+
- Type safety holes in APIs
|
|
160
|
+
|
|
161
|
+
---
|
|
162
|
+
|
|
163
|
+
### Code Check Commands
|
|
164
|
+
|
|
165
|
+
#### `/check-frontend` - Check Frontend Code
|
|
166
|
+
|
|
167
|
+
**What it does**:
|
|
168
|
+
Verifies frontend code against guidelines AFTER writing code, BEFORE committing.
|
|
169
|
+
|
|
170
|
+
**What AI will do**:
|
|
171
|
+
1. Run type check (`tsc --noEmit`)
|
|
172
|
+
2. Run linter and check for errors
|
|
173
|
+
3. Review code against frontend guidelines
|
|
174
|
+
4. Check for common issues:
|
|
175
|
+
- Semantic HTML usage
|
|
176
|
+
- Accessibility compliance
|
|
177
|
+
- Performance patterns
|
|
178
|
+
5. Report violations and suggest fixes
|
|
179
|
+
|
|
180
|
+
**Benefits**:
|
|
181
|
+
- Catches errors before human review
|
|
182
|
+
- Ensures consistent code quality
|
|
183
|
+
- Documents what was checked for transparency
|
|
184
|
+
|
|
185
|
+
**If skipped**:
|
|
186
|
+
- Type errors slip into codebase
|
|
187
|
+
- Lint errors accumulate
|
|
188
|
+
- Accessibility issues go unnoticed
|
|
189
|
+
- Review cycles increase
|
|
190
|
+
|
|
191
|
+
---
|
|
192
|
+
|
|
193
|
+
#### `/check-backend` - Check Backend Code
|
|
194
|
+
|
|
195
|
+
**What it does**:
|
|
196
|
+
Verifies backend code against guidelines AFTER writing code, BEFORE committing.
|
|
197
|
+
|
|
198
|
+
**What AI will do**:
|
|
199
|
+
1. Run type check
|
|
200
|
+
2. Run linter
|
|
201
|
+
3. Review against backend guidelines:
|
|
202
|
+
- No non-null assertions (`!`)
|
|
203
|
+
- All inputs/outputs have Zod schemas
|
|
204
|
+
- Structured logging (no console.log)
|
|
205
|
+
- No await in loops
|
|
206
|
+
4. Check API documentation is updated
|
|
207
|
+
5. Report issues and fixes
|
|
208
|
+
|
|
209
|
+
**Benefits**:
|
|
210
|
+
- Catches type safety issues early
|
|
211
|
+
- Ensures API documentation stays in sync
|
|
212
|
+
- Validates database operation patterns
|
|
213
|
+
|
|
214
|
+
**If skipped**:
|
|
215
|
+
- Runtime errors from type mismatches
|
|
216
|
+
- API docs become outdated
|
|
217
|
+
- Performance issues from N+1 queries
|
|
218
|
+
|
|
219
|
+
---
|
|
220
|
+
|
|
221
|
+
#### `/check-cross-layer` - Cross-Layer Verification
|
|
222
|
+
|
|
223
|
+
**What it does**:
|
|
224
|
+
Verifies consistency between frontend and backend when changes span multiple layers.
|
|
225
|
+
|
|
226
|
+
**What AI will do**:
|
|
227
|
+
1. Identify all layers touched by the change
|
|
228
|
+
2. Verify type contracts match across layers
|
|
229
|
+
3. Check data flow consistency
|
|
230
|
+
4. Validate API request/response alignment
|
|
231
|
+
|
|
232
|
+
**Benefits**:
|
|
233
|
+
- Catches integration issues early
|
|
234
|
+
- Ensures frontend and backend stay in sync
|
|
235
|
+
- Prevents runtime type mismatches
|
|
236
|
+
|
|
237
|
+
**If skipped**:
|
|
238
|
+
- Frontend expects data backend doesn't provide
|
|
239
|
+
- Type mismatches cause runtime errors
|
|
240
|
+
- Integration bugs found late in testing
|
|
241
|
+
|
|
242
|
+
---
|
|
243
|
+
|
|
244
|
+
### Work Completion Commands
|
|
245
|
+
|
|
246
|
+
#### `/finish-work` - Pre-Commit Checklist
|
|
247
|
+
|
|
248
|
+
**What it does**:
|
|
249
|
+
Final verification before human commits. Ensures nothing is forgotten.
|
|
250
|
+
|
|
251
|
+
**What AI will do**:
|
|
252
|
+
1. Run all relevant checks (type, lint)
|
|
253
|
+
2. Verify all changes are intentional
|
|
254
|
+
3. Check documentation is updated
|
|
255
|
+
4. Prepare commit message suggestion
|
|
256
|
+
5. List files to be committed
|
|
257
|
+
6. Confirm ready for human review
|
|
258
|
+
|
|
259
|
+
**Benefits**:
|
|
260
|
+
- Nothing is forgotten before commit
|
|
261
|
+
- Clean commit history
|
|
262
|
+
- Documentation stays in sync
|
|
263
|
+
- Human knows exactly what to review
|
|
264
|
+
|
|
265
|
+
**If skipped**:
|
|
266
|
+
- Partial commits with missing files
|
|
267
|
+
- Documentation drift
|
|
268
|
+
- Unclear what changed for reviewer
|
|
269
|
+
|
|
270
|
+
---
|
|
271
|
+
|
|
272
|
+
#### `/break-loop` - End Investigation Loop
|
|
273
|
+
|
|
274
|
+
**What it does**:
|
|
275
|
+
Stops an investigation/debugging loop and summarizes findings. Use when debugging or researching, BEFORE `/finish-work`.
|
|
276
|
+
|
|
277
|
+
**What AI will do**:
|
|
278
|
+
1. Summarize what was investigated
|
|
279
|
+
2. Document root cause (if found)
|
|
280
|
+
3. List temporary vs permanent fixes
|
|
281
|
+
4. Record lessons learned
|
|
282
|
+
5. Suggest next steps or follow-up tasks
|
|
283
|
+
6. Prepare knowledge for `/record-question` if applicable
|
|
284
|
+
|
|
285
|
+
**Benefits**:
|
|
286
|
+
- Prevents endless investigation loops
|
|
287
|
+
- Captures debugging knowledge
|
|
288
|
+
- Creates actionable next steps
|
|
289
|
+
- Knowledge is preserved for future
|
|
290
|
+
|
|
291
|
+
**If skipped**:
|
|
292
|
+
- Investigation goes in circles
|
|
293
|
+
- Findings are lost when session ends
|
|
294
|
+
- Same debugging repeated later
|
|
295
|
+
- No clear resolution or next steps
|
|
296
|
+
|
|
297
|
+
---
|
|
298
|
+
|
|
299
|
+
### Utility Commands
|
|
300
|
+
|
|
301
|
+
#### `/create-command` - Create New Slash Command
|
|
302
|
+
|
|
303
|
+
**What it does**:
|
|
304
|
+
Creates a new slash command when a repeated workflow pattern is identified.
|
|
305
|
+
|
|
306
|
+
**What AI will do**:
|
|
307
|
+
1. Analyze the workflow pattern
|
|
308
|
+
2. Design command structure
|
|
309
|
+
3. Create command file in `.cursor/commands/` or `.claude/commands/`
|
|
310
|
+
4. Document usage and examples
|
|
311
|
+
|
|
312
|
+
---
|
|
313
|
+
|
|
314
|
+
#### `/record-question` - Document Solved Problems
|
|
315
|
+
|
|
316
|
+
**What it does**:
|
|
317
|
+
Documents a solved problem for future reference when a tricky issue is resolved.
|
|
318
|
+
|
|
319
|
+
**What AI will do**:
|
|
320
|
+
1. Summarize the problem
|
|
321
|
+
2. Document the root cause
|
|
322
|
+
3. Record the solution
|
|
323
|
+
4. Add to appropriate location (big-question/ or guidelines)
|
|
324
|
+
|
|
325
|
+
**Benefits**:
|
|
326
|
+
- Knowledge is preserved
|
|
327
|
+
- Same problem won't need re-investigation
|
|
328
|
+
- Team learns from each other's discoveries
|
|
329
|
+
|
|
330
|
+
---
|
|
331
|
+
|
|
332
|
+
#### `/integrate-skill` - Integrate Claude Skills
|
|
333
|
+
|
|
334
|
+
**What it does**:
|
|
335
|
+
Integrates external Claude skills into project guidelines.
|
|
336
|
+
|
|
337
|
+
---
|
|
338
|
+
|
|
339
|
+
#### `/extract-llm-docs` - Extract from LLM Documentation
|
|
340
|
+
|
|
341
|
+
**What it does**:
|
|
342
|
+
Extracts useful patterns from LLM documentation (like llms.txt files) into project guidelines.
|
|
343
|
+
|
|
344
|
+
---
|
|
345
|
+
|
|
346
|
+
#### `/extract-to-rules` - Extract Rules from Source
|
|
347
|
+
|
|
348
|
+
**What it does**:
|
|
349
|
+
Extracts coding rules and patterns from existing source code into guidelines.
|
|
350
|
+
|
|
351
|
+
---
|
|
352
|
+
|
|
353
|
+
#### `/sync-from-runtime` - Sync Knowledge
|
|
354
|
+
|
|
355
|
+
**What it does**:
|
|
356
|
+
Syncs knowledge and patterns from runtime documentation.
|
|
357
|
+
|
|
358
|
+
---
|
|
359
|
+
|
|
360
|
+
## Real-World Workflow Examples
|
|
361
|
+
|
|
362
|
+
### Example 1: Bug Fix Session
|
|
363
|
+
|
|
364
|
+
**Scenario**: UI component missing after refactor
|
|
365
|
+
|
|
366
|
+
```
|
|
367
|
+
1. /init-agent
|
|
368
|
+
→ See context: Branch "main", 2 uncommitted files
|
|
369
|
+
→ Active feature: none
|
|
370
|
+
|
|
371
|
+
2. Create feature:
|
|
372
|
+
./workflow/scripts/feature.sh create fix-sync-indicator
|
|
373
|
+
|
|
374
|
+
3. /before-frontend-dev
|
|
375
|
+
→ Read component guidelines
|
|
376
|
+
|
|
377
|
+
4. Investigate and fix:
|
|
378
|
+
- Analyze old vs new architecture
|
|
379
|
+
- Import missing component
|
|
380
|
+
- Add CSS styles
|
|
381
|
+
|
|
382
|
+
5. /check-frontend
|
|
383
|
+
→ Type check: ✅ passed
|
|
384
|
+
→ Lint: ✅ 0 errors
|
|
385
|
+
|
|
386
|
+
6. /finish-work
|
|
387
|
+
→ Pre-commit checklist
|
|
388
|
+
→ Confirm all changes are ready
|
|
389
|
+
|
|
390
|
+
7. Human tests and commits:
|
|
391
|
+
git commit -m "fix(ui): restore SyncIndicator to TabBar"
|
|
392
|
+
|
|
393
|
+
8. /record-agent-flow
|
|
394
|
+
→ ./workflow/scripts/add-session.sh --title "Fix SyncIndicator" --commit "abc123"
|
|
395
|
+
|
|
396
|
+
9. Archive feature:
|
|
397
|
+
./workflow/scripts/feature.sh archive fix-sync-indicator
|
|
398
|
+
```
|
|
399
|
+
|
|
400
|
+
### Example 2: Planning Session (No Code)
|
|
401
|
+
|
|
402
|
+
**Scenario**: Audit migration docs and plan consolidation
|
|
403
|
+
|
|
404
|
+
```
|
|
405
|
+
1. /init-agent
|
|
406
|
+
→ Understand current state
|
|
407
|
+
|
|
408
|
+
2. Create feature:
|
|
409
|
+
./workflow/scripts/feature.sh create migration-docs-consolidation
|
|
410
|
+
|
|
411
|
+
3. Review docs, compare with existing guidelines
|
|
412
|
+
|
|
413
|
+
4. Create subtask list in feature.json:
|
|
414
|
+
- Critical: Update outdated timestamp format
|
|
415
|
+
- High: Add missing validation rules
|
|
416
|
+
- Medium: Consolidate scattered docs
|
|
417
|
+
|
|
418
|
+
5. /record-agent-flow (no commit)
|
|
419
|
+
→ ./workflow/scripts/add-session.sh --title "Migration Docs Planning" --summary "Created 14 subtasks"
|
|
420
|
+
```
|
|
421
|
+
|
|
422
|
+
### Example 3: Code Review Fixes
|
|
423
|
+
|
|
424
|
+
**Scenario**: Fix issues from CR round 2
|
|
425
|
+
|
|
426
|
+
```
|
|
427
|
+
1. /init-agent
|
|
428
|
+
→ Continue feature: entity-filesystem-refactor
|
|
429
|
+
|
|
430
|
+
2. /before-backend-dev
|
|
431
|
+
→ Read database and error handling guidelines
|
|
432
|
+
|
|
433
|
+
3. Fix each CR issue:
|
|
434
|
+
- Add missing workspaceId filter (data isolation)
|
|
435
|
+
- Fix meta double-stringify bug
|
|
436
|
+
- Add LWW conflict resolution
|
|
437
|
+
|
|
438
|
+
4. /check-backend
|
|
439
|
+
→ All checks passed
|
|
440
|
+
|
|
441
|
+
5. /finish-work
|
|
442
|
+
→ Pre-commit checklist
|
|
443
|
+
→ Document lessons learned:
|
|
444
|
+
- "All queries with workspaceId column must include WHERE clause"
|
|
445
|
+
- "buildXxxValues must match *DataSchema types"
|
|
446
|
+
|
|
447
|
+
6. Human commits, then /record-agent-flow
|
|
448
|
+
```
|
|
449
|
+
|
|
450
|
+
### Example 4: Large Refactoring
|
|
451
|
+
|
|
452
|
+
**Scenario**: Adapt workflow system for monorepo
|
|
453
|
+
|
|
454
|
+
```
|
|
455
|
+
1. /init-agent
|
|
456
|
+
→ Create feature: workflow-monorepo-adaptation
|
|
457
|
+
|
|
458
|
+
2. Plan phases:
|
|
459
|
+
- Phase 1: Root directory restructure
|
|
460
|
+
- Phase 2: Sub-project workflow cleanup
|
|
461
|
+
- Phase 3: Slash commands rewrite
|
|
462
|
+
- Phase 4: Core docs update
|
|
463
|
+
|
|
464
|
+
3. Execute phase by phase, running /check-* after each
|
|
465
|
+
|
|
466
|
+
4. /finish-work
|
|
467
|
+
→ Final verification checklist
|
|
468
|
+
|
|
469
|
+
5. Human commits multiple times, record with multiple commit hashes:
|
|
470
|
+
./workflow/scripts/add-session.sh --title "Monorepo Adaptation" --commit "hash1,hash2,hash3"
|
|
471
|
+
```
|
|
472
|
+
|
|
473
|
+
### Example 5: Debug Session with Break Loop
|
|
474
|
+
|
|
475
|
+
**Scenario**: Investigating a complex sync bug
|
|
476
|
+
|
|
477
|
+
```
|
|
478
|
+
1. /init-agent
|
|
479
|
+
→ Continue feature: fix-sync-data-inconsistency
|
|
480
|
+
|
|
481
|
+
2. /before-backend-dev
|
|
482
|
+
→ Read sync and database guidelines
|
|
483
|
+
|
|
484
|
+
3. Investigation loop:
|
|
485
|
+
- Analyze cloud vs local data
|
|
486
|
+
- Check sync event timestamps
|
|
487
|
+
- Review applyEvent logic
|
|
488
|
+
- Add debug logging
|
|
489
|
+
|
|
490
|
+
4. /check-backend
|
|
491
|
+
→ All checks passed
|
|
492
|
+
|
|
493
|
+
5. /break-loop (when investigation is complete)
|
|
494
|
+
→ Summarize findings:
|
|
495
|
+
- Root cause: Transaction failure without error logging
|
|
496
|
+
- Temporary fix: Manual SQL update
|
|
497
|
+
- Permanent fix: Add detailed logging in applyEvent
|
|
498
|
+
→ Document for future reference
|
|
499
|
+
|
|
500
|
+
6. /finish-work
|
|
501
|
+
→ Pre-commit checklist
|
|
502
|
+
|
|
503
|
+
7. Human tests and commits
|
|
504
|
+
|
|
505
|
+
8. /record-agent-flow
|
|
506
|
+
→ Include lessons learned in session record
|
|
507
|
+
```
|
|
508
|
+
|
|
509
|
+
---
|
|
510
|
+
|
|
511
|
+
## Key Points to Emphasize
|
|
512
|
+
|
|
68
513
|
- AI should NOT execute `git commit` - human is responsible for testing and committing
|
|
69
514
|
- Each developer has their own progress directory
|
|
70
515
|
- Read guidelines before coding (mandatory)
|
|
516
|
+
- Use `/record-question` to document solved problems for future reference
|
|
517
|
+
- Planning sessions (no code) are valid - record with `--summary` instead of `--commit`
|
|
518
|
+
- `/break-loop` is for ending debug/investigation loops, use BEFORE `/finish-work`
|
|
71
519
|
|