moflo 4.1.0 → 4.2.0
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 +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@ Forked from [ruflo/claude-flow](https://github.com/ruvnet/ruflo) with all patche
|
|
|
13
13
|
| **Guidance Indexing** | Chunks your project docs (`.claude/guidance/`, `docs/`) and makes them searchable. |
|
|
14
14
|
| **Workflow Gates** | Enforces memory-first and task-creation patterns via Claude Code hooks. Prevents Claude from skipping steps. |
|
|
15
15
|
| **Learned Routing** | Routes tasks to the right agent type. Learns from outcomes — gets better over time. |
|
|
16
|
-
| **`/
|
|
16
|
+
| **`/flo` Skill** | Execute GitHub issues through a full workflow: research → enhance → implement → test → simplify → PR. (Also available as `/fl`.) |
|
|
17
17
|
| **Context Tracking** | Monitors context window usage (FRESH → MODERATE → DEPLETED → CRITICAL) and advises accordingly. |
|
|
18
18
|
| **Cross-Platform** | Works on macOS, Linux, and Windows. |
|
|
19
19
|
|
|
@@ -37,7 +37,7 @@ npx moflo doctor
|
|
|
37
37
|
That's it. `moflo init` sets up everything:
|
|
38
38
|
- `moflo.yaml` — project config (auto-detects source dirs, languages, guidance paths)
|
|
39
39
|
- `.claude/settings.json` — workflow gate hooks
|
|
40
|
-
- `.claude/skills/
|
|
40
|
+
- `.claude/skills/flo/` — the `/flo` issue execution skill (with `/fl` alias)
|
|
41
41
|
- `CLAUDE.md` — appends a MoFlo workflow section so Claude knows how to use it
|
|
42
42
|
- `.gitignore` — adds state directories
|
|
43
43
|
|
|
@@ -118,14 +118,14 @@ models:
|
|
|
118
118
|
|
|
119
119
|
MoFlo sits between Claude Code and your project. When Claude starts a session, MoFlo's hooks enforce good habits: search memory before exploring files, create tasks before spawning agents, and track how depleted the context window is. Over time, MoFlo learns which agent types work best for which tasks and routes accordingly.
|
|
120
120
|
|
|
121
|
-
The `/
|
|
121
|
+
The `/flo <issue>` skill (or `/fl`) gives Claude a full automated workflow for executing GitHub issues — from research through PR creation — with mandatory testing and code review gates.
|
|
122
122
|
|
|
123
123
|
### For Claude
|
|
124
124
|
|
|
125
125
|
When `moflo init` runs, it appends a workflow section to your CLAUDE.md that teaches Claude:
|
|
126
126
|
- Always search memory before Glob/Grep/Read (enforced by gates)
|
|
127
127
|
- Use `mcp__claude-flow__memory_search` for knowledge retrieval
|
|
128
|
-
- Use `/
|
|
128
|
+
- Use `/flo <issue>` (or `/fl`) for issue execution
|
|
129
129
|
- Follow the agent icon convention for task visibility
|
|
130
130
|
- Store learnings after task completion
|
|
131
131
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "moflo",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.2.0",
|
|
4
4
|
"description": "MoFlo — AI agent orchestration for Claude Code. Forked from ruflo/claude-flow with patches applied to source, plus feature-level orchestration.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|