moflo 4.12.8 → 4.12.9
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/.claude/helpers/gate-hook.mjs +16 -0
- package/.claude/helpers/gate.cjs +170 -13
- package/.claude/skills/flfl/SKILL.md +50 -0
- package/bin/gate-hook.mjs +16 -0
- package/bin/gate.cjs +170 -13
- package/bin/lib/internal-skills.mjs +5 -3
- package/dist/src/cli/init/claudemd-generator.js +9 -4
- package/dist/src/cli/init/embedded-helpers.js +2 -2
- package/dist/src/cli/init/executor.js +3 -0
- package/dist/src/cli/version.js +1 -1
- package/package.json +2 -2
|
@@ -72,6 +72,9 @@ export const SKILLS_MAP = {
|
|
|
72
72
|
export const INTERNAL_SKILLS = [
|
|
73
73
|
'publish', // moflo's own /publish workflow — not consumer-relevant
|
|
74
74
|
'reset-epic', // moflo's own epic test-data reset — would torch a consumer's repo
|
|
75
|
+
'flfl', // /fl preloaded with moflo's OWN rules (cross-platform, consumer
|
|
76
|
+
// blast radius, dogfooding) — those are constraints on developing
|
|
77
|
+
// moflo, not on a consumer's project, where they read as noise
|
|
75
78
|
];
|
|
76
79
|
/**
|
|
77
80
|
* Commands to copy based on configuration
|
package/dist/src/cli/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "moflo",
|
|
3
|
-
"version": "4.12.
|
|
3
|
+
"version": "4.12.9",
|
|
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",
|
|
@@ -99,7 +99,7 @@
|
|
|
99
99
|
"@typescript-eslint/parser": "^8.65.0",
|
|
100
100
|
"eslint": "^10.8.0",
|
|
101
101
|
"glob": "^11.1.0",
|
|
102
|
-
"moflo": "^4.12.
|
|
102
|
+
"moflo": "^4.12.8",
|
|
103
103
|
"tsx": "^4.21.0",
|
|
104
104
|
"typescript": "^5.9.3",
|
|
105
105
|
"vitest": "^4.0.0"
|