moflo 4.8.43 → 4.8.44

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.
@@ -1,14 +1,14 @@
1
- /**
2
- * Shared dependency resolver for moflo bin scripts.
3
- * Resolves packages from moflo's own node_modules (not the consuming project's).
4
- * On Windows, converts native paths to file:// URLs required by ESM import().
5
- */
6
-
7
- import { createRequire } from 'module';
8
- import { fileURLToPath, pathToFileURL } from 'url';
9
-
10
- const __require = createRequire(fileURLToPath(import.meta.url));
11
-
12
- export function mofloResolveURL(specifier) {
13
- return pathToFileURL(__require.resolve(specifier)).href;
14
- }
1
+ /**
2
+ * Shared dependency resolver for moflo bin scripts.
3
+ * Resolves packages from moflo's own node_modules (not the consuming project's).
4
+ * On Windows, converts native paths to file:// URLs required by ESM import().
5
+ */
6
+
7
+ import { createRequire } from 'module';
8
+ import { fileURLToPath, pathToFileURL } from 'url';
9
+
10
+ const __require = createRequire(fileURLToPath(import.meta.url));
11
+
12
+ export function mofloResolveURL(specifier) {
13
+ return pathToFileURL(__require.resolve(specifier)).href;
14
+ }
package/README.md CHANGED
@@ -273,29 +273,29 @@ When you pass an issue number, `/flo` automatically checks if it's an epic — n
273
273
 
274
274
  When an epic is detected, `/flo` processes each child story sequentially — full workflow per story (research → implement → test → PR), one at a time, in the order listed.
275
275
 
276
- For simple epics with independent stories, `/flo <epic>` is all you need. For complex features where you want state tracking, resume capability, and auto-merge between stories, use `flo orc` instead.
276
+ For simple epics with independent stories, `/flo <epic>` is all you need. For complex features where you want state tracking, resume capability, and auto-merge between stories, use `flo epic` instead.
277
277
 
278
- ### Feature Orchestration (`flo orc`)
278
+ ### Feature Orchestration (`flo epic`)
279
279
 
280
- `flo orc` is the robust epic runner — it adds persistent state, resume from failure, and auto-merge between stories on top of `/flo`. It accepts either a GitHub issue number or a YAML file:
280
+ `flo epic` is the robust epic runner — it adds persistent state, resume from failure, and auto-merge between stories on top of `/flo`. It accepts either a GitHub issue number or a YAML file:
281
281
 
282
282
  ```bash
283
283
  # From a GitHub epic (auto-detects stories)
284
- flo orc run 42 # Fetch epic #42, run all stories sequentially
285
- flo orc run 42 --dry-run # Preview execution plan without running
286
- flo orc run 42 --no-merge # Skip auto-merge between stories
284
+ flo epic run 42 # Fetch epic #42, run all stories sequentially
285
+ flo epic run 42 --dry-run # Preview execution plan without running
286
+ flo epic run 42 --no-merge # Skip auto-merge between stories
287
287
 
288
288
  # From a YAML definition (explicit dependencies)
289
- flo orc run feature.yaml # Execute stories in dependency order
290
- flo orc run feature.yaml --dry-run # Show execution plan
291
- flo orc run feature.yaml --verbose # Stream Claude output to terminal
289
+ flo epic run feature.yaml # Execute stories in dependency order
290
+ flo epic run feature.yaml --dry-run # Show execution plan
291
+ flo epic run feature.yaml --verbose # Stream Claude output to terminal
292
292
 
293
293
  # State management
294
- flo orc status epic-42 # Check progress (which stories passed/failed)
295
- flo orc reset epic-42 # Reset state for re-run
294
+ flo epic status epic-42 # Check progress (which stories passed/failed)
295
+ flo epic reset epic-42 # Reset state for re-run
296
296
  ```
297
297
 
298
- When given an issue number, `flo orc` fetches the epic from GitHub, extracts child stories from checklists and numbered references, then runs each through `/flo` with state tracking. If a story fails, you can fix the issue and `flo orc run 42` again — it resumes from where it left off, skipping already-passed stories.
298
+ When given an issue number, `flo epic` fetches the epic from GitHub, extracts child stories from checklists and numbered references, then runs each through `/flo` with state tracking. If a story fails, you can fix the issue and `flo epic run 42` again — it resumes from where it left off, skipping already-passed stories.
299
299
 
300
300
  For features with inter-story dependencies (story B requires story A to be merged first), use a YAML definition:
301
301
 
@@ -317,9 +317,9 @@ feature:
317
317
  depends_on: [story-1]
318
318
  ```
319
319
 
320
- | | `/flo <epic>` | `flo orc run <epic>` |
320
+ | | `/flo <epic>` | `flo epic run <epic>` |
321
321
  |---|---|---|
322
- | **State tracking** | No | Yes (`.claude-orc/state.json`) |
322
+ | **State tracking** | No | Yes (`.claude-epic/state.json`) |
323
323
  | **Resume from failure** | No | Yes (skips passed stories) |
324
324
  | **Auto-merge PRs** | No | Yes (between stories) |
325
325
  | **Dry-run preview** | No | Yes |
@@ -522,7 +522,7 @@ Here's how a typical task flows through both layers:
522
522
 
523
523
  The key insight: **your client handles execution, MoFlo handles knowledge.** Your client is good at spawning agents and running code. MoFlo is good at remembering what happened, routing to the right agent, and ensuring prior knowledge is checked before exploring from scratch.
524
524
 
525
- For complex work, MoFlo structures tasks into waves — a research wave discovers context, then an implementation wave acts on it — with dependencies tracked through both the client's task system and MoFlo's coordination layer. The full integration pattern is documented in `.claude/guidance/task-swarm-integration.md`.
525
+ For complex work, MoFlo structures tasks into waves — a research wave discovers context, then an implementation wave acts on it — with dependencies tracked through both the client's task system and MoFlo's coordination layer. The full integration pattern is documented in `.claude/guidance/moflo-claude-swarm-cohesion.md`.
526
526
 
527
527
  The `/flo` skill ties both systems together for GitHub issues — driving a full workflow (research → enhance → implement → test → simplify → PR) with your client's agents for execution and MoFlo's memory for continuity.
528
528