LEVEL 007
Fish Flow Level 7 Guide
Official initial board and replay-verified 17-move strict JSON solution for Fish Flow Level 7, featuring 4 mystery fish. Branch numbering starts at 1.
- Moves
- 17
- Branches
- 8
- Fish types
- 6
- Mystery fish
- 4
- Seaweed branches
- 0
Initial board
Read each array from bottom to top; the rightmost value is the current top fish. “?” marks a fish that starts hidden.
| Branch | Capacity | Fish (bottom → top) | Status |
|---|---|---|---|
| 1 | 4 | 1 → 5 → 3 | Available |
| 2 | 4 | 0 → 5 → 5 | Available |
| 3 | 4 | 1 → 2 → 1 | Available |
| 4 | 4 | 2 → 4 → 2 | Available |
| 5 | 4 | 4 → 4? → 3 | Available |
| 6 | 4 | 1 → 5? → 4 | Available |
| 7 | 4 | 0 → 3? → 3 | Available |
| 8 | 4 | 0 → 0? → 2 | Available |
17-move solution
Every move uses the fully settled board after automatic movement, reveals, completed groups, and seaweed unlocks from the previous step.
- 01Branch 5Branch 1
- 02Branch 6Branch 5
- 03Branch 8Branch 4
- 04Branch 2Branch 6
- 05Branch 2Branch 8
- 06Branch 1Branch 2
- 07Branch 7Branch 2
- 08Branch 7Branch 2
- 09Branch 7Branch 8
- 10Branch 1Branch 7
- 11Branch 6Branch 7
- 12Branch 1Branch 3
- 13Branch 3Branch 6
- 14Branch 4Branch 3
- 15Branch 4Branch 5
- 16Branch 3Branch 4
- 17Branch 3Branch 6
Strict JSON for AI assistance
Contains only protocol-approved fields and can be pasted into the in-game AI assistance input.
{
"schema": "fish-flow-ai-solution/v1",
"level": 7,
"boardFingerprint": "ff1-d02f2671",
"modelName": "FISH FLOW Guide 1.0",
"moves": [
{
"from": 5,
"to": 1
},
{
"from": 6,
"to": 5
},
{
"from": 8,
"to": 4
},
{
"from": 2,
"to": 6
},
{
"from": 2,
"to": 8
},
{
"from": 1,
"to": 2
},
{
"from": 7,
"to": 2
},
{
"from": 7,
"to": 2
},
{
"from": 7,
"to": 8
},
{
"from": 1,
"to": 7
},
{
"from": 6,
"to": 7
},
{
"from": 1,
"to": 3
},
{
"from": 3,
"to": 6
},
{
"from": 4,
"to": 3
},
{
"from": 4,
"to": 5
},
{
"from": 3,
"to": 4
},
{
"from": 3,
"to": 6
}
]
}