@mfjjs/ruflo-setup 0.1.9 β†’ 0.2.2

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/CHANGELOG.md CHANGED
@@ -2,6 +2,35 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [0.2.2](https://gitlab.mfj.local:8022/mario/ruflo-setup/compare/v0.2.1...v0.2.2) (2026-03-14)
6
+
7
+
8
+ ### Features
9
+
10
+ * **package:** add ruflo-benefits.md to package files ([28a308a](https://gitlab.mfj.local:8022/mario/ruflo-setup/commit/28a308a005516981b06a213a053a1184c9644963))
11
+
12
+ ### [0.2.1](https://gitlab.mfj.local:8022/mario/ruflo-setup/compare/v0.2.0...v0.2.1) (2026-03-14)
13
+
14
+
15
+ ### Features
16
+
17
+ * **docs:** update usage section by moving status command first ([e98f473](https://gitlab.mfj.local:8022/mario/ruflo-setup/commit/e98f473f25f53031d8cf08cf8d6bd3bfedcae949))
18
+
19
+ ## [0.2.0](https://gitlab.mfj.local:8022/mario/ruflo-setup/compare/v0.1.9...v0.2.0) (2026-03-14)
20
+
21
+
22
+ ### ⚠ BREAKING CHANGES
23
+
24
+ * **cli:** The CLI now includes a new command which may affect existing scripts that rely on the previous command structure.
25
+
26
+ ### Features
27
+
28
+ * **cli:** add 'status' command to check feature status ([d551664](https://gitlab.mfj.local:8022/mario/ruflo-setup/commit/d551664619635e7efbbc9a9810266ecfe2212d1c))
29
+ * **docs:** add detailed agents and skills sections to Ruflo benefit documentation ([c66d212](https://gitlab.mfj.local:8022/mario/ruflo-setup/commit/c66d212f4ee25390ab139e43131ecb548b7bcb5c))
30
+ * **docs:** add link to ruflo-benefits.md and renamed to plural ([2820aeb](https://gitlab.mfj.local:8022/mario/ruflo-setup/commit/2820aeb5cebbfad0ac7b568291aa55a49076c6c3))
31
+ * **docs:** update Ruflo benefit documentation with agents and skills sections ([8feb883](https://gitlab.mfj.local:8022/mario/ruflo-setup/commit/8feb8836c88ec5096a907eb4c842b0b3b4c55b4c))
32
+ * **status:** enhance directory checks to display count of agents and skills ([3ade22b](https://gitlab.mfj.local:8022/mario/ruflo-setup/commit/3ade22b10ba1840f405b8f239f2a723f6d4089d7))
33
+
5
34
  ### [0.1.9](https://gitlab.mfj.local:8022/mario/ruflo-setup/compare/v0.1.8...v0.1.9) (2026-03-13)
6
35
 
7
36
  ### [0.1.8](https://gitlab.mfj.local:8022/mario/ruflo-setup/compare/v0.1.7...v0.1.8) (2026-03-13)
package/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  Cross-platform npm CLI to bootstrap a project with Ruflo on Windows and Linux.
4
4
 
5
+ > **Deep dive:** [`docs/ruflo-benefits.md`](docs/ruflo-benefits.md) is a comprehensive reference (~900 lines) covering every feature layer, the MinCut/RuVector/RVF internals, all 80+ agents, 33 skills, 65 slash commands, and how agents and skills are invoked. Not a quick read.
6
+
5
7
  ## πŸ“˜ What this project is
6
8
 
7
9
  `@mfjjs/ruflo-setup` implements the setup with a Node-based CLI command:
@@ -58,6 +60,15 @@ You only need to do this once in each folder. Just run the command and you’re
58
60
 
59
61
  ## πŸš€ Usage
60
62
 
63
+ ### Status
64
+ Check whether all Ruflo feature layers (0–8) are enabled in the current project:
65
+
66
+ ```bash
67
+ ruflo-setup status
68
+ ```
69
+
70
+ This prints a layer-by-layer report showing which features are active β€” prerequisites, global packages, optional WASM/ML packages, MCP servers, tool groups, environment variables, project scaffolding, and the Docker chat UI stack.
71
+
61
72
  ### Bootstrap
62
73
  Use this once if you want Claude Code to expose the `/ruflo-setup` command globally.
63
74
 
@@ -96,6 +107,7 @@ ruflo-setup hooks status
96
107
  - `bin/ruflo-setup.js`: executable entry file the shell runs
97
108
  - `src/cli.js`: command router and argument handling
98
109
  - `src/setup.js`: setup workflow (`init`, `.mcp.json`, template copy)
110
+ - `src/status.js`: layer-by-layer feature status checker (Layers 0–8)
99
111
  - `src/hooks.js`: global `check-ruflo` hook install/status
100
112
  - `src/utils.js`: reusable filesystem and argument helpers
101
113
  - `templates/CLAUDE.md`: bundled template copied into target project
@@ -130,6 +142,8 @@ Flow:
130
142
  - copies `templates/CLAUDE.md`
131
143
  - installs global SessionStart hook (unless skipped)
132
144
 
145
+ When called as `ruflo-setup status`, step 5 dispatches to `src/status.js` which checks all layers (0–8) and prints a feature status report.
146
+
133
147
  ## πŸ› οΈ Local development with pnpm
134
148
 
135
149
  From this repository root (`setup-ruflo/`):