Skip to content

Commit d22d2cf

Browse files
committed
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
1 parent c0d6464 commit d22d2cf

3 files changed

Lines changed: 16 additions & 16 deletions

File tree

rmini-skill/SKILL.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
---
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."
44
---
55

6-
# Ruflo Mini Swarm — Compact Execution
6+
# FidgetFlo Mini Swarm — Compact Execution
77

88
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.
99

1010
## Execution Steps
1111

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
1414
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)
1616
- Spawn ALL 5 agents via the Agent tool with `run_in_background: true` — every agent in ONE message
1717
4. After spawning, STOP. Do not poll. Do not check status. Wait for agents to return.
1818
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
2020

2121
## The 5 Agents
2222

templates/skills/rswarm/SKILL.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
---
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."
44
user_invocable: true
55
---
66

7-
# Ruflo Advanced Swarm — Immediate Execution
7+
# FidgetFlo Advanced Swarm — Immediate Execution
88

99
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.
1010

1111
## Execution Steps
1212

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
1515
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)
1717
- Spawn ALL 15 agents via the Agent tool with `run_in_background: true` — every agent in ONE message
1818
4. After spawning, STOP. Do not poll. Do not check status. Wait for agents to return.
1919
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
2121

2222
## The 15 Agents
2323

@@ -39,7 +39,7 @@ When this skill is invoked, IMMEDIATELY launch a 15-agent swarm. Do NOT explain
3939
| 14 | coder | Technical Writer | Documentation, README, usage guides |
4040
| 15 | tester | QA Coordinator | Final validation, cross-agent consistency check |
4141

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.
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.
4343

4444
## Rules
4545

tests/install-flow-walkthrough.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# CLI-MAXXING Install Flow Walkthrough -- Regression Test
22

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.
44
55
**Test scenario:** Fresh Mac, username `testuser`, vault at `~/Desktop/2ndBrain`, no Telegram bot token, standard macOS, Homebrew either present or absent.
66

0 commit comments

Comments
 (0)