fifony 0.1.26-next.2aaa35c → 0.1.26-next.786d246
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/README.md +2 -24
- package/app/dist/service-worker.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,4 @@
|
|
|
1
1
|
<div align="center">
|
|
2
|
-
<img src="dinofffaur.png" alt="fifony mascot" width="140" />
|
|
3
|
-
<br><br>
|
|
4
2
|
|
|
5
3
|
# fifony
|
|
6
4
|
|
|
@@ -33,17 +31,6 @@ fifony auto-detects your installed CLI tools (Claude, Codex, Gemini) and routes
|
|
|
33
31
|
|
|
34
32
|
```mermaid
|
|
35
33
|
stateDiagram-v2
|
|
36
|
-
direction LR
|
|
37
|
-
|
|
38
|
-
classDef planning fill:#38bdf8,color:#fff,stroke:#0ea5e9,stroke-width:2px
|
|
39
|
-
classDef queued fill:#a78bfa,color:#fff,stroke:#8b5cf6,stroke-width:2px
|
|
40
|
-
classDef running fill:#818cf8,color:#fff,stroke:#6366f1,stroke-width:2px
|
|
41
|
-
classDef review fill:#f59e0b,color:#fff,stroke:#d97706,stroke-width:2px
|
|
42
|
-
classDef done fill:#34d399,color:#fff,stroke:#10b981,stroke-width:2px
|
|
43
|
-
classDef merged fill:#22c55e,color:#fff,stroke:#16a34a,stroke-width:3px
|
|
44
|
-
classDef blocked fill:#f87171,color:#fff,stroke:#ef4444,stroke-width:2px
|
|
45
|
-
classDef cancelled fill:#9ca3af,color:#fff,stroke:#6b7280,stroke-width:2px
|
|
46
|
-
|
|
47
34
|
[*] --> Planning
|
|
48
35
|
Planning --> Planned: PLANNED
|
|
49
36
|
Planned --> Queued: QUEUE
|
|
@@ -58,7 +45,7 @@ stateDiagram-v2
|
|
|
58
45
|
Blocked --> Queued: UNBLOCK
|
|
59
46
|
Blocked --> Planning: REPLAN
|
|
60
47
|
|
|
61
|
-
Reviewed --> Queued: rework
|
|
48
|
+
Reviewed --> Queued: REQUEUE (rework)
|
|
62
49
|
Reviewed --> Planning: REPLAN
|
|
63
50
|
|
|
64
51
|
Done --> Planning: REOPEN
|
|
@@ -72,20 +59,11 @@ stateDiagram-v2
|
|
|
72
59
|
|
|
73
60
|
Merged --> [*]
|
|
74
61
|
Cancelled --> [*]
|
|
75
|
-
|
|
76
|
-
class Planning,Planned planning
|
|
77
|
-
class Queued queued
|
|
78
|
-
class Running running
|
|
79
|
-
class Reviewing,Reviewed review
|
|
80
|
-
class Done done
|
|
81
|
-
class Merged merged
|
|
82
|
-
class Blocked blocked
|
|
83
|
-
class Cancelled cancelled
|
|
84
62
|
```
|
|
85
63
|
|
|
86
64
|
| Step | What happens |
|
|
87
65
|
|------|-------------|
|
|
88
|
-
| **Create** | Describe what you want done.
|
|
66
|
+
| **Create** | Describe what you want done. |
|
|
89
67
|
| **Plan** | The planner agent generates a structured execution plan: phases, steps, target files, complexity, risks. |
|
|
90
68
|
| **Approve** | You review the plan. Optionally refine it with AI chat before approving. |
|
|
91
69
|
| **Execute** | Agents run in an isolated git worktree. Live output streams to the dashboard. |
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const CACHE_VERSION = "
|
|
1
|
+
const CACHE_VERSION = "1774028126976";
|
|
2
2
|
const CORE_CACHE = `fifony-core-${CACHE_VERSION}`;
|
|
3
3
|
const ASSET_CACHE = `fifony-assets-${CACHE_VERSION}`;
|
|
4
4
|
const APP_SHELL_ROUTES = ["/kanban", "/issues", "/agents", "/settings", "/onboarding"];
|