maestro-fix-cyclelisted
Install: claude install-skill parisgroup-ai/imersao-ia-setup
# maestro-fix-cycle - Flow-by-Flow Test-Fix Loop with Memory
Processes Maestro flows **one at a time**, maintaining state across sessions. Analyzes failures, fixes YAML flows or app code, and re-runs until all pass.
## Usage
```bash
/maestro-fix-cycle # Start/continue cycle
/maestro-fix-cycle auth # Only auth flows
/maestro-fix-cycle student # Only student flows
/maestro-fix-cycle continue # Resume from last position
/maestro-fix-cycle reset # Clear memory and start fresh
/maestro-fix-cycle status # Show current progress
/maestro-fix-cycle studio # Debug current flow in Maestro Studio
```
## Memory System
State persisted in `apps/mobile/.maestro-cycle/`:
```
.maestro-cycle/
├── state.json # Current position, queued flows
├── history.jsonl # All fixes applied (append-only)
├── learnings.md # Patterns discovered (human-readable)
└── failures/ # Detailed failure logs per flow
└── {flow-name}.json
```
### state.json
```json
{
"version": "1.0",
"started_at": "2026-03-01T18:00:00Z",
"updated_at": "2026-03-01T18:45:00Z",
"current_flow": "flows/auth/login.yaml",
"current_iteration": 1,
"queue": [
"flows/auth/token-refresh.yaml",
"flows/student/courses-pagination.yaml"
],
"completed": [
"flows/smoke/smoke.yaml"
],
"failed_permanently": [],
"total_fixes": 3,
"session_id": "abc123"
}
```
### learnings.md
```markd