moflo 4.10.18 → 4.10.20
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 +7 -3
- package/dist/src/cli/version.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -21,13 +21,13 @@ Restart Claude Code. That's it — memory, indexing, gates, and routing are all
|
|
|
21
21
|
|
|
22
22
|
Or — just ask Claude to install MoFlo into your project and initialize it!
|
|
23
23
|
|
|
24
|
-
To verify everything is running,
|
|
24
|
+
To verify everything is running, run the **`/healer`** skill inside Claude Code (or `flo healer` from the CLI) after restarting — it runs full diagnostics. If anything fails, run **`/healer --fix`** to automatically fix issues.
|
|
25
25
|
|
|
26
26
|
## Next Step: Consult the Eldar
|
|
27
27
|
|
|
28
28
|
After installing moflo, the single highest-leverage thing you can do for the best experience is run **`/eldar`** inside a Claude Code session.
|
|
29
29
|
|
|
30
|
-
Where `flo healer` verifies that *moflo itself* is wired up correctly, **`/eldar` audits how Claude is set up to actually use your project** — guidance docs, CLAUDE.md, memory namespaces, hook/MCP wiring, model routing, and whether every technology in your stack (TypeScript, Python, Rust, Go, etc.) has matching guidance for Claude to lean on. The stack → guidance cross-reference alone is often the difference between *"Claude feels lost in this codebase"* and *"Claude knows this codebase"*.
|
|
30
|
+
Where `/healer` (or `flo healer` from the CLI) verifies that *moflo itself* is wired up correctly, **`/eldar` audits how Claude is set up to actually use your project** — guidance docs, CLAUDE.md, memory namespaces, hook/MCP wiring, model routing, and whether every technology in your stack (TypeScript, Python, Rust, Go, etc.) has matching guidance for Claude to lean on. The stack → guidance cross-reference alone is often the difference between *"Claude feels lost in this codebase"* and *"Claude knows this codebase"*.
|
|
31
31
|
|
|
32
32
|
```
|
|
33
33
|
/eldar # Read-only audit; categorized findings, severity-ranked
|
|
@@ -110,7 +110,7 @@ In interactive mode (`flo init` without `--yes`), it shows what it found and let
|
|
|
110
110
|
If `flo init` detects an existing `.claude/settings.json` or `.claude-flow/` directory (from a prior Claude Flow or Ruflo installation), it treats the project as already initialized and runs in **update mode** — merging MoFlo's hooks and configuration into your existing setup without overwriting your data. Specifically:
|
|
111
111
|
|
|
112
112
|
- **Hooks** — If your `.claude/settings.json` already has MoFlo-style gate hooks (`flo gate`), the hooks step is skipped. Otherwise, MoFlo's hooks are written into the file (existing non-MoFlo hooks are not removed).
|
|
113
|
-
- **MCP servers** — MoFlo registers itself as the `moflo` server in `.mcp.json`. If you had `claude-flow` or `ruflo` MCP servers configured previously, those entries remain untouched — you can remove them manually once you've verified MoFlo is working. The `flo healer`
|
|
113
|
+
- **MCP servers** — MoFlo registers itself as the `moflo` server in `.mcp.json`. If you had `claude-flow` or `ruflo` MCP servers configured previously, those entries remain untouched — you can remove them manually once you've verified MoFlo is working. The `/healer` skill (or `flo healer` from the CLI) checks for the `moflo` server specifically.
|
|
114
114
|
- **Config files** — `moflo.yaml`, `CLAUDE.md`, and `.claude/skills/flo/` follow the same skip-if-exists logic. Use `--force` to regenerate them.
|
|
115
115
|
|
|
116
116
|
To force a clean re-initialization over an existing setup:
|
|
@@ -901,6 +901,10 @@ So I started from that foundation and narrowed the focus to my particular corner
|
|
|
901
901
|
|
|
902
902
|
If you're exploring the full breadth of agent orchestration, go look at [Ruflo/Claude Flow](https://github.com/ruvnet/ruflo) — it's the real deal. If your needs are similar to mine — a focused, opinionated local dev setup that just works — MoFlo is for you.
|
|
903
903
|
|
|
904
|
+
## Contributing
|
|
905
|
+
|
|
906
|
+
Contributions are welcome — bug reports, documentation, tests, and code. See **[CONTRIBUTING.md](./CONTRIBUTING.md)** for setup, conventions, and how to open a pull request. By participating, you agree to abide by our **[Code of Conduct](./CODE_OF_CONDUCT.md)**.
|
|
907
|
+
|
|
904
908
|
## License
|
|
905
909
|
|
|
906
910
|
MIT
|
package/dist/src/cli/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "moflo",
|
|
3
|
-
"version": "4.10.
|
|
3
|
+
"version": "4.10.20",
|
|
4
4
|
"description": "MoFlo — AI agent orchestration for Claude Code. A standalone, opinionated toolkit with semantic memory, learned routing, gates, spells, and the /flo issue-execution skill.",
|
|
5
5
|
"main": "dist/src/cli/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
"@typescript-eslint/eslint-plugin": "^7.18.0",
|
|
96
96
|
"@typescript-eslint/parser": "^7.18.0",
|
|
97
97
|
"eslint": "^8.0.0",
|
|
98
|
-
"moflo": "^4.10.
|
|
98
|
+
"moflo": "^4.10.19",
|
|
99
99
|
"tsx": "^4.21.0",
|
|
100
100
|
"typescript": "^5.9.3",
|
|
101
101
|
"vitest": "^4.0.0"
|