You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: rename skill internals Ruflo→FidgetFlo and sync test walkthrough note
- rmini-skill/SKILL.md: name fmini, FidgetFlo references, /tmp paths updated
- templates/skills/rswarm/SKILL.md: name fswarm, FidgetFlo references, /tmp paths updated
- tests/install-flow-walkthrough.md: clarify which steps are in scope for this regression test
Copy file name to clipboardExpand all lines: rmini-skill/SKILL.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,22 +1,22 @@
1
1
---
2
-
name: rmini
3
-
description: "Launch a compact 5-agent Ruflo swarm for focused task execution. Smaller than /rswarm but still parallel and powerful."
2
+
name: fmini
3
+
description: "Launch a compact 5-agent FidgetFlo swarm for focused task execution. Smaller than /fswarm but still parallel and powerful."
4
4
---
5
5
6
-
# Ruflo Mini Swarm — Compact Execution
6
+
# FidgetFlo Mini Swarm — Compact Execution
7
7
8
8
When this skill is invoked, IMMEDIATELY launch a 5-agent swarm. Do NOT explain how swarms work. Do NOT show code examples. Do NOT ask clarifying questions unless the task is truly ambiguous. ACT.
9
9
10
10
## Execution Steps
11
11
12
-
1. Read the user's task (everything they typed after `/rmini`)
13
-
2.**Signal status line**: Run `echo 5 > /tmp/ruflo-mini-active` via Bash to light up the 🍯 indicator
12
+
1. Read the user's task (everything they typed after `/fmini`)
13
+
2.**Signal status line**: Run `echo 5 > /tmp/fidgetflo-mini-active` via Bash to light up the 🍯 indicator
14
14
3. Initialize the swarm in ONE message:
15
-
- Call `mcp__ruflo__swarm_init` with topology `hierarchical-mesh`, maxAgents 5, strategy `specialized` (skip if the Ruflo MCP tool isn't available — the Agent-tool spawn below is what actually does the work)
15
+
- Call `mcp__fidgetflo__swarm_init` with topology `hierarchical-mesh`, maxAgents 5, strategy `specialized` (skip if the FidgetFlo MCP tool isn't available — the Agent-tool spawn below is what actually does the work)
16
16
- Spawn ALL 5 agents via the Agent tool with `run_in_background: true` — every agent in ONE message
17
17
4. After spawning, STOP. Do not poll. Do not check status. Wait for agents to return.
18
18
5. When results come back, synthesize and present the combined output.
19
-
6.**Clear status line**: Run `rm -f /tmp/ruflo-mini-active` via Bash to turn off the 🍯 indicator
19
+
6.**Clear status line**: Run `rm -f /tmp/fidgetflo-mini-active` via Bash to turn off the 🍯 indicator
Copy file name to clipboardExpand all lines: templates/skills/rswarm/SKILL.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,23 +1,23 @@
1
1
---
2
-
name: rswarm
3
-
description: "Launch a full 15-agent Ruflo swarm to execute a task immediately. Triggers real multi-agent execution — not a reference."
2
+
name: fswarm
3
+
description: "Launch a full 15-agent FidgetFlo swarm to execute a task immediately. Triggers real multi-agent execution — not a reference."
4
4
user_invocable: true
5
5
---
6
6
7
-
# Ruflo Advanced Swarm — Immediate Execution
7
+
# FidgetFlo Advanced Swarm — Immediate Execution
8
8
9
9
When this skill is invoked, IMMEDIATELY launch a 15-agent swarm. Do NOT explain how swarms work. Do NOT show code examples. Do NOT ask clarifying questions unless the task is truly ambiguous. ACT.
10
10
11
11
## Execution Steps
12
12
13
-
1. Read the user's task (everything they typed after `/rswarm`)
14
-
2.**Signal status line**: Run `echo 15 > /tmp/ruflo-swarm-active` via Bash to light up the 🐝 indicator
13
+
1. Read the user's task (everything they typed after `/fswarm`)
14
+
2.**Signal status line**: Run `echo 15 > /tmp/fidgetflo-swarm-active` via Bash to light up the 🐝 indicator
15
15
3. Initialize the swarm in ONE message:
16
-
- Call `mcp__ruflo__swarm_init` with topology `hierarchical-mesh`, maxAgents 15, strategy `specialized` (skip if the Ruflo MCP tool isn't available — the Agent-tool spawn below is what actually does the work)
16
+
- Call `mcp__fidgetflo__swarm_init` with topology `hierarchical-mesh`, maxAgents 15, strategy `specialized` (skip if the FidgetFlo MCP tool isn't available — the Agent-tool spawn below is what actually does the work)
17
17
- Spawn ALL 15 agents via the Agent tool with `run_in_background: true` — every agent in ONE message
18
18
4. After spawning, STOP. Do not poll. Do not check status. Wait for agents to return.
19
19
5. When results come back, synthesize and present the combined output.
20
-
6.**Clear status line**: Run `rm -f /tmp/ruflo-swarm-active` via Bash to turn off the 🐝 indicator
20
+
6.**Clear status line**: Run `rm -f /tmp/fidgetflo-swarm-active` via Bash to turn off the 🐝 indicator
21
21
22
22
## The 15 Agents
23
23
@@ -39,7 +39,7 @@ When this skill is invoked, IMMEDIATELY launch a 15-agent swarm. Do NOT explain
Adapt agent assignments to the task — not every task needs all 15 roles. If the task is frontend-only, shift agent roles accordingly. But ALWAYS spawn 15.
42
+
Adapt agent assignments to the task — not every task needs all 15 roles. If the task is frontend-only, shift agent roles accordingly. But always spawn 15.
Copy file name to clipboardExpand all lines: tests/install-flow-walkthrough.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# CLI-MAXXING Install Flow Walkthrough -- Regression Test
2
2
3
-
> **Note:** Steps 4, 5, and 7 have been extracted to companion repos. See [creativity-maxxing](https://github.com/lorecraft-io/creativity-maxxing) and [2ndBrain-mogging](https://github.com/lorecraft-io/2ndBrain-mogging) for those test walkthroughs.
3
+
> **Note:**This walkthrough covers Steps 1, 3, 6, 8, and Final. Steps 2 (Bonus Software), 4 (FidgetFlo), 5 (Productivity Tools), and 7 (GitHub) are present in the repo but not included in this regression test. See [creativity-maxxing](https://github.com/lorecraft-io/creativity-maxxing) and [2ndBrain-mogging](https://github.com/lorecraft-io/2ndBrain-mogging) for their respective test walkthroughs.
4
4
5
5
**Test scenario:** Fresh Mac, username `testuser`, vault at `~/Desktop/2ndBrain`, no Telegram bot token, standard macOS, Homebrew either present or absent.
0 commit comments