moflo 4.10.22 → 4.10.23

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.
@@ -29,7 +29,7 @@ These drive code changes against GitHub issues and the working tree.
29
29
  | Skill | Use it when |
30
30
  |-------|-------------|
31
31
  | `/flo` (alias `/fl`) | Execute a GitHub issue end to end: research → ticket → implement → test → simplify → PR. Detects and processes epics automatically. |
32
- | `/flo-simplify` | Review the current diff for reuse, quality, and efficiency, then fix what it finds. Effort scales to the diff size. |
32
+ | `/flo-simplify` (alias `/distill`) | Review the current diff for reuse, quality, and efficiency, then fix what it finds. Effort scales to the diff size. |
33
33
 
34
34
  ## Setup, health, and audit skills
35
35
 
@@ -630,7 +630,7 @@ switch (command) {
630
630
  }
631
631
  case 'record-skill-run': {
632
632
  var skName = (process.env.TOOL_INPUT_skill || '');
633
- if (skName === 'simplify' || skName === 'flo-simplify') {
633
+ if (skName === 'simplify' || skName === 'flo-simplify' || skName === 'distill') {
634
634
  var s = readState();
635
635
  var changed = false;
636
636
  if (!s.simplifyRun) { s.simplifyRun = true; changed = true; }
@@ -720,7 +720,7 @@ switch (command) {
720
720
  }
721
721
  var missing = [];
722
722
  if (config.testing_gate && !s.testsRun) missing.push('tests have not run since the last code edit (run npm test, vitest, jest, pytest, or similar)');
723
- if (config.simplify_gate && !s.simplifyRun) missing.push('/flo-simplify has not run since the last code edit');
723
+ if (config.simplify_gate && !s.simplifyRun) missing.push('/flo-simplify (or /distill) has not run since the last code edit');
724
724
  if (config.learnings_gate && !s.learningsStored) missing.push('learnings have not been stored (call mcp__moflo__memory_store)');
725
725
  if (missing.length === 0) break;
726
726
  process.stderr.write('BLOCKED: gh pr create requires the following before opening a PR:\n');
@@ -0,0 +1,10 @@
1
+ ---
2
+ name: distill
3
+ description: Alias for /flo-simplify. Review changed code for reuse, quality, and efficiency, then fix any issues found — effort scales to the diff size.
4
+ ---
5
+
6
+ # /distill is an alias for /flo-simplify
7
+
8
+ This skill is identical to `/flo-simplify`. All documentation and logic lives in `.claude/skills/flo-simplify/SKILL.md`.
9
+
10
+ **Do not duplicate the /flo-simplify skill content here.** Read and follow `.claude/skills/flo-simplify/SKILL.md` in its entirety. Pass all arguments through unchanged.
package/README.md CHANGED
@@ -477,7 +477,7 @@ Beyond `/flo`, `/spell-builder`, and `/eldar`, MoFlo ships a handful of focused
477
477
  | Skill | Purpose |
478
478
  |-------|---------|
479
479
  | `/guidance` | Author and audit guidance docs. Default writes guidance for Claude into `.claude/guidance/` as Markdown applying moflo's universal rules. `-h` switches the audience to humans (lighter ruleset, writes into `docs/`). `--html` emits HTML with a minimal default stylesheet instead of Markdown. `-a` audits every doc in `.claude/guidance/` against the universal rules. |
480
- | `/flo-simplify` | Adaptive code review on the current diff. Tier-based fan-out — trivial edits get a self-review, small diffs get one routed agent, cross-cutting refactors get three parallel agents. Routes through the moflo model router for cost-aware execution. (Named `/flo-simplify` to avoid colliding with Claude Code's built-in `/simplify`.) |
480
+ | `/flo-simplify` (alias `/distill`) | Adaptive code review on the current diff. Tier-based fan-out — trivial edits get a self-review, small diffs get one routed agent, cross-cutting refactors get three parallel agents. Routes through the moflo model router for cost-aware execution. (Named `/flo-simplify` to avoid colliding with Claude Code's built-in `/simplify`; also available as `/distill` for a more wizardy feel.) |
481
481
  | `/commune` | Socratic requirements elicitation. Turns a fuzzy "I'm not sure exactly what I want yet" idea into a concrete spec through a short Q&A, then hands the result off to a `/flo` ticket, a spell, or memory. The pre-execution counterpart to `/meditate` — use it to *open* a unit of work. |
482
482
  | `/divine` | Multi-hop web research with explicit confidence gating. Plans the inquiry, searches the web, scores its own confidence, and keeps digging until the answer is well-supported (or a hop cap is hit) — then returns a cited synthesis and remembers what worked so the next research run starts smarter. |
483
483
  | `/meditate` | Deliberate session retrospective — distills durable lessons into the `learnings` memory namespace, deduped against what's already there. See [Learning From Your Sessions](#learning-from-your-sessions) for the full picture, including its automatic counterpart, auto-meditate. |
package/bin/gate.cjs CHANGED
@@ -630,7 +630,7 @@ switch (command) {
630
630
  }
631
631
  case 'record-skill-run': {
632
632
  var skName = (process.env.TOOL_INPUT_skill || '');
633
- if (skName === 'simplify' || skName === 'flo-simplify') {
633
+ if (skName === 'simplify' || skName === 'flo-simplify' || skName === 'distill') {
634
634
  var s = readState();
635
635
  var changed = false;
636
636
  if (!s.simplifyRun) { s.simplifyRun = true; changed = true; }
@@ -720,7 +720,7 @@ switch (command) {
720
720
  }
721
721
  var missing = [];
722
722
  if (config.testing_gate && !s.testsRun) missing.push('tests have not run since the last code edit (run npm test, vitest, jest, pytest, or similar)');
723
- if (config.simplify_gate && !s.simplifyRun) missing.push('/flo-simplify has not run since the last code edit');
723
+ if (config.simplify_gate && !s.simplifyRun) missing.push('/flo-simplify (or /distill) has not run since the last code edit');
724
724
  if (config.learnings_gate && !s.learningsStored) missing.push('learnings have not been stored (call mcp__moflo__memory_store)');
725
725
  if (missing.length === 0) break;
726
726
  process.stderr.write('BLOCKED: gh pr create requires the following before opening a PR:\n');
@@ -37,6 +37,7 @@ export const SKILLS_MAP = {
37
37
  'guidance',
38
38
  'healer',
39
39
  'flo-simplify',
40
+ 'distill', // alias for flo-simplify (pointer skill); installed alongside it
40
41
  'luminarium',
41
42
  'reasoningbank-intelligence',
42
43
  'meditate',
@@ -553,7 +553,7 @@ switch (command) {
553
553
  }
554
554
  case 'record-skill-run': {
555
555
  var skName = (process.env.TOOL_INPUT_skill || '');
556
- if (skName === 'simplify' || skName === 'flo-simplify') {
556
+ if (skName === 'simplify' || skName === 'flo-simplify' || skName === 'distill') {
557
557
  var s = readState();
558
558
  if (!s.simplifyRun) {
559
559
  s.simplifyRun = true;
@@ -587,7 +587,7 @@ switch (command) {
587
587
  var s = readState();
588
588
  var missing = [];
589
589
  if (config.testing_gate && !s.testsRun) missing.push('tests have not run since the last code edit (run npm test, vitest, jest, pytest, or similar)');
590
- if (config.simplify_gate && !s.simplifyRun) missing.push('/flo-simplify has not run since the last code edit');
590
+ if (config.simplify_gate && !s.simplifyRun) missing.push('/flo-simplify (or /distill) has not run since the last code edit');
591
591
  if (config.learnings_gate && !s.learningsStored) missing.push('learnings have not been stored (call mcp__moflo__memory_store)');
592
592
  if (missing.length === 0) break;
593
593
  process.stderr.write('BLOCKED: gh pr create requires the following before opening a PR:\\n');
@@ -2,5 +2,5 @@
2
2
  * Auto-generated by build. Do not edit manually.
3
3
  * Source of truth: root package.json → scripts/sync-version.mjs
4
4
  */
5
- export const VERSION = '4.10.22';
5
+ export const VERSION = '4.10.23';
6
6
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "moflo",
3
- "version": "4.10.22",
3
+ "version": "4.10.23",
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.21",
98
+ "moflo": "^4.10.22",
99
99
  "tsx": "^4.21.0",
100
100
  "typescript": "^5.9.3",
101
101
  "vitest": "^4.0.0"