moflo 4.6.9 → 4.6.11
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/statusline.cjs +17 -24
- package/README.md +442 -442
- package/package.json +120 -120
- package/src/@claude-flow/cli/package.json +110 -110
package/package.json
CHANGED
|
@@ -1,120 +1,120 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "moflo",
|
|
3
|
-
"version": "4.6.
|
|
4
|
-
"description": "MoFlo — AI agent orchestration for Claude Code. Forked from ruflo/claude-flow with patches applied to source, plus feature-level orchestration.",
|
|
5
|
-
"main": "dist/index.js",
|
|
6
|
-
"type": "module",
|
|
7
|
-
"bin": {
|
|
8
|
-
"flo": "bin/cli.js",
|
|
9
|
-
"flo-setup": "bin/setup-project.mjs",
|
|
10
|
-
"flo-codemap": "bin/generate-code-map.mjs",
|
|
11
|
-
"flo-search": "bin/semantic-search.mjs",
|
|
12
|
-
"flo-embeddings": "bin/build-embeddings.mjs",
|
|
13
|
-
"flo-index": "bin/index-guidance.mjs",
|
|
14
|
-
"flo-learn": ".claude/helpers/learning-service.mjs",
|
|
15
|
-
"moflo": "bin/cli.js",
|
|
16
|
-
"claude-flow": "bin/cli.js"
|
|
17
|
-
},
|
|
18
|
-
"homepage": "https://github.com/eric-cielo/moflo#readme",
|
|
19
|
-
"bugs": {
|
|
20
|
-
"url": "https://github.com/eric-cielo/moflo/issues"
|
|
21
|
-
},
|
|
22
|
-
"files": [
|
|
23
|
-
"bin/**",
|
|
24
|
-
"src/@claude-flow/cli/bin/**",
|
|
25
|
-
"src/@claude-flow/cli/dist/**/*.js",
|
|
26
|
-
"src/@claude-flow/cli/dist/**/*.d.ts",
|
|
27
|
-
"!src/@claude-flow/cli/dist/**/*.map",
|
|
28
|
-
"src/@claude-flow/cli/package.json",
|
|
29
|
-
"src/@claude-flow/shared/dist/**/*.js",
|
|
30
|
-
"src/@claude-flow/shared/dist/**/*.d.ts",
|
|
31
|
-
"!src/@claude-flow/shared/dist/**/*.map",
|
|
32
|
-
"src/@claude-flow/shared/package.json",
|
|
33
|
-
"src/@claude-flow/guidance/dist/**/*.js",
|
|
34
|
-
"src/@claude-flow/guidance/dist/**/*.d.ts",
|
|
35
|
-
"!src/@claude-flow/guidance/dist/**/*.map",
|
|
36
|
-
"src/@claude-flow/guidance/package.json",
|
|
37
|
-
"src/@claude-flow/memory/dist/**/*.js",
|
|
38
|
-
"src/@claude-flow/memory/dist/**/*.d.ts",
|
|
39
|
-
"!src/@claude-flow/memory/dist/**/*.map",
|
|
40
|
-
"src/@claude-flow/memory/package.json",
|
|
41
|
-
".claude-plugin/**",
|
|
42
|
-
".claude/**",
|
|
43
|
-
"!.claude/**/*.db",
|
|
44
|
-
"!.claude/**/*.map",
|
|
45
|
-
"README.md",
|
|
46
|
-
"LICENSE"
|
|
47
|
-
],
|
|
48
|
-
"scripts": {
|
|
49
|
-
"dev": "tsx watch src/index.ts",
|
|
50
|
-
"build": "tsc",
|
|
51
|
-
"build:ts": "cd src/@claude-flow/cli && npm run build || true",
|
|
52
|
-
"test": "vitest",
|
|
53
|
-
"test:ui": "vitest --ui",
|
|
54
|
-
"test:security": "vitest run src/__tests__/security/",
|
|
55
|
-
"lint": "cd src/@claude-flow/cli && npm run lint || true",
|
|
56
|
-
"security:audit": "npm audit --audit-level high",
|
|
57
|
-
"security:fix": "npm audit fix",
|
|
58
|
-
"security:test": "npm run test:security",
|
|
59
|
-
"moflo:security": "npm run security:audit && npm run security:test"
|
|
60
|
-
},
|
|
61
|
-
"dependencies": {
|
|
62
|
-
"@ruvector/learning-wasm": "^0.1.29",
|
|
63
|
-
"semver": "^7.6.0",
|
|
64
|
-
"sql.js": "^1.12.0",
|
|
65
|
-
"zod": "^3.22.4"
|
|
66
|
-
},
|
|
67
|
-
"optionalDependencies": {
|
|
68
|
-
"@claude-flow/codex": "^3.0.0-alpha.8",
|
|
69
|
-
"@claude-flow/plugin-gastown-bridge": "^0.1.3",
|
|
70
|
-
"@ruvector/attention": "^0.1.3",
|
|
71
|
-
"@ruvector/core": "^0.1.30",
|
|
72
|
-
"@ruvector/router": "^0.1.27",
|
|
73
|
-
"@ruvector/sona": "^0.1.5",
|
|
74
|
-
"@xenova/transformers": "^2.17.0",
|
|
75
|
-
"agentdb": "^3.0.0-alpha.9",
|
|
76
|
-
"agentic-flow": "^2.0.7"
|
|
77
|
-
},
|
|
78
|
-
"overrides": {
|
|
79
|
-
"hono": ">=4.11.4"
|
|
80
|
-
},
|
|
81
|
-
"devDependencies": {
|
|
82
|
-
"@openai/codex": "^0.98.0",
|
|
83
|
-
"@types/bcrypt": "^5.0.2",
|
|
84
|
-
"@types/node": "^20.0.0",
|
|
85
|
-
"eslint": "^8.0.0",
|
|
86
|
-
"tsx": "^4.21.0",
|
|
87
|
-
"typescript": "^5.0.0",
|
|
88
|
-
"vitest": "^1.0.0"
|
|
89
|
-
},
|
|
90
|
-
"engines": {
|
|
91
|
-
"node": ">=20.0.0"
|
|
92
|
-
},
|
|
93
|
-
"repository": {
|
|
94
|
-
"type": "git",
|
|
95
|
-
"url": "git+https://github.com/eric-cielo/moflo.git"
|
|
96
|
-
},
|
|
97
|
-
"keywords": [
|
|
98
|
-
"moflo",
|
|
99
|
-
"claude",
|
|
100
|
-
"claude-code",
|
|
101
|
-
"anthropic",
|
|
102
|
-
"ai-agents",
|
|
103
|
-
"agent-orchestration",
|
|
104
|
-
"mcp",
|
|
105
|
-
"model-context-protocol",
|
|
106
|
-
"cli",
|
|
107
|
-
"developer-tools",
|
|
108
|
-
"workflow",
|
|
109
|
-
"orchestration"
|
|
110
|
-
],
|
|
111
|
-
"author": {
|
|
112
|
-
"name": "Eric Cielo",
|
|
113
|
-
"url": "https://github.com/eric-cielo"
|
|
114
|
-
},
|
|
115
|
-
"license": "MIT",
|
|
116
|
-
"publishConfig": {
|
|
117
|
-
"access": "public",
|
|
118
|
-
"tag": "latest"
|
|
119
|
-
}
|
|
120
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "moflo",
|
|
3
|
+
"version": "4.6.11",
|
|
4
|
+
"description": "MoFlo — AI agent orchestration for Claude Code. Forked from ruflo/claude-flow with patches applied to source, plus feature-level orchestration.",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"bin": {
|
|
8
|
+
"flo": "bin/cli.js",
|
|
9
|
+
"flo-setup": "bin/setup-project.mjs",
|
|
10
|
+
"flo-codemap": "bin/generate-code-map.mjs",
|
|
11
|
+
"flo-search": "bin/semantic-search.mjs",
|
|
12
|
+
"flo-embeddings": "bin/build-embeddings.mjs",
|
|
13
|
+
"flo-index": "bin/index-guidance.mjs",
|
|
14
|
+
"flo-learn": ".claude/helpers/learning-service.mjs",
|
|
15
|
+
"moflo": "bin/cli.js",
|
|
16
|
+
"claude-flow": "bin/cli.js"
|
|
17
|
+
},
|
|
18
|
+
"homepage": "https://github.com/eric-cielo/moflo#readme",
|
|
19
|
+
"bugs": {
|
|
20
|
+
"url": "https://github.com/eric-cielo/moflo/issues"
|
|
21
|
+
},
|
|
22
|
+
"files": [
|
|
23
|
+
"bin/**",
|
|
24
|
+
"src/@claude-flow/cli/bin/**",
|
|
25
|
+
"src/@claude-flow/cli/dist/**/*.js",
|
|
26
|
+
"src/@claude-flow/cli/dist/**/*.d.ts",
|
|
27
|
+
"!src/@claude-flow/cli/dist/**/*.map",
|
|
28
|
+
"src/@claude-flow/cli/package.json",
|
|
29
|
+
"src/@claude-flow/shared/dist/**/*.js",
|
|
30
|
+
"src/@claude-flow/shared/dist/**/*.d.ts",
|
|
31
|
+
"!src/@claude-flow/shared/dist/**/*.map",
|
|
32
|
+
"src/@claude-flow/shared/package.json",
|
|
33
|
+
"src/@claude-flow/guidance/dist/**/*.js",
|
|
34
|
+
"src/@claude-flow/guidance/dist/**/*.d.ts",
|
|
35
|
+
"!src/@claude-flow/guidance/dist/**/*.map",
|
|
36
|
+
"src/@claude-flow/guidance/package.json",
|
|
37
|
+
"src/@claude-flow/memory/dist/**/*.js",
|
|
38
|
+
"src/@claude-flow/memory/dist/**/*.d.ts",
|
|
39
|
+
"!src/@claude-flow/memory/dist/**/*.map",
|
|
40
|
+
"src/@claude-flow/memory/package.json",
|
|
41
|
+
".claude-plugin/**",
|
|
42
|
+
".claude/**",
|
|
43
|
+
"!.claude/**/*.db",
|
|
44
|
+
"!.claude/**/*.map",
|
|
45
|
+
"README.md",
|
|
46
|
+
"LICENSE"
|
|
47
|
+
],
|
|
48
|
+
"scripts": {
|
|
49
|
+
"dev": "tsx watch src/index.ts",
|
|
50
|
+
"build": "tsc",
|
|
51
|
+
"build:ts": "cd src/@claude-flow/cli && npm run build || true",
|
|
52
|
+
"test": "vitest",
|
|
53
|
+
"test:ui": "vitest --ui",
|
|
54
|
+
"test:security": "vitest run src/__tests__/security/",
|
|
55
|
+
"lint": "cd src/@claude-flow/cli && npm run lint || true",
|
|
56
|
+
"security:audit": "npm audit --audit-level high",
|
|
57
|
+
"security:fix": "npm audit fix",
|
|
58
|
+
"security:test": "npm run test:security",
|
|
59
|
+
"moflo:security": "npm run security:audit && npm run security:test"
|
|
60
|
+
},
|
|
61
|
+
"dependencies": {
|
|
62
|
+
"@ruvector/learning-wasm": "^0.1.29",
|
|
63
|
+
"semver": "^7.6.0",
|
|
64
|
+
"sql.js": "^1.12.0",
|
|
65
|
+
"zod": "^3.22.4"
|
|
66
|
+
},
|
|
67
|
+
"optionalDependencies": {
|
|
68
|
+
"@claude-flow/codex": "^3.0.0-alpha.8",
|
|
69
|
+
"@claude-flow/plugin-gastown-bridge": "^0.1.3",
|
|
70
|
+
"@ruvector/attention": "^0.1.3",
|
|
71
|
+
"@ruvector/core": "^0.1.30",
|
|
72
|
+
"@ruvector/router": "^0.1.27",
|
|
73
|
+
"@ruvector/sona": "^0.1.5",
|
|
74
|
+
"@xenova/transformers": "^2.17.0",
|
|
75
|
+
"agentdb": "^3.0.0-alpha.9",
|
|
76
|
+
"agentic-flow": "^2.0.7"
|
|
77
|
+
},
|
|
78
|
+
"overrides": {
|
|
79
|
+
"hono": ">=4.11.4"
|
|
80
|
+
},
|
|
81
|
+
"devDependencies": {
|
|
82
|
+
"@openai/codex": "^0.98.0",
|
|
83
|
+
"@types/bcrypt": "^5.0.2",
|
|
84
|
+
"@types/node": "^20.0.0",
|
|
85
|
+
"eslint": "^8.0.0",
|
|
86
|
+
"tsx": "^4.21.0",
|
|
87
|
+
"typescript": "^5.0.0",
|
|
88
|
+
"vitest": "^1.0.0"
|
|
89
|
+
},
|
|
90
|
+
"engines": {
|
|
91
|
+
"node": ">=20.0.0"
|
|
92
|
+
},
|
|
93
|
+
"repository": {
|
|
94
|
+
"type": "git",
|
|
95
|
+
"url": "git+https://github.com/eric-cielo/moflo.git"
|
|
96
|
+
},
|
|
97
|
+
"keywords": [
|
|
98
|
+
"moflo",
|
|
99
|
+
"claude",
|
|
100
|
+
"claude-code",
|
|
101
|
+
"anthropic",
|
|
102
|
+
"ai-agents",
|
|
103
|
+
"agent-orchestration",
|
|
104
|
+
"mcp",
|
|
105
|
+
"model-context-protocol",
|
|
106
|
+
"cli",
|
|
107
|
+
"developer-tools",
|
|
108
|
+
"workflow",
|
|
109
|
+
"orchestration"
|
|
110
|
+
],
|
|
111
|
+
"author": {
|
|
112
|
+
"name": "Eric Cielo",
|
|
113
|
+
"url": "https://github.com/eric-cielo"
|
|
114
|
+
},
|
|
115
|
+
"license": "MIT",
|
|
116
|
+
"publishConfig": {
|
|
117
|
+
"access": "public",
|
|
118
|
+
"tag": "latest"
|
|
119
|
+
}
|
|
120
|
+
}
|
|
@@ -1,110 +1,110 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@moflo/cli",
|
|
3
|
-
"version": "4.6.
|
|
4
|
-
"type": "module",
|
|
5
|
-
"description": "MoFlo CLI — AI agent orchestration with specialized agents, swarm coordination, MCP server, self-learning hooks, and vector memory for Claude Code",
|
|
6
|
-
"main": "dist/src/index.js",
|
|
7
|
-
"types": "dist/src/index.d.ts",
|
|
8
|
-
"sideEffects": false,
|
|
9
|
-
"bin": {
|
|
10
|
-
"cli": "./bin/cli.js",
|
|
11
|
-
"claude-flow": "./bin/cli.js",
|
|
12
|
-
"claude-flow-mcp": "./bin/mcp-server.js"
|
|
13
|
-
},
|
|
14
|
-
"homepage": "https://github.com/eric-cielo/moflo#readme",
|
|
15
|
-
"bugs": {
|
|
16
|
-
"url": "https://github.com/eric-cielo/moflo/issues"
|
|
17
|
-
},
|
|
18
|
-
"repository": {
|
|
19
|
-
"type": "git",
|
|
20
|
-
"url": "https://github.com/eric-cielo/moflo.git",
|
|
21
|
-
"directory": "v3/@claude-flow/cli"
|
|
22
|
-
},
|
|
23
|
-
"keywords": [
|
|
24
|
-
"claude",
|
|
25
|
-
"claude-code",
|
|
26
|
-
"anthropic",
|
|
27
|
-
"ai-agents",
|
|
28
|
-
"multi-agent",
|
|
29
|
-
"swarm",
|
|
30
|
-
"mcp",
|
|
31
|
-
"model-context-protocol",
|
|
32
|
-
"llm",
|
|
33
|
-
"cli",
|
|
34
|
-
"orchestration",
|
|
35
|
-
"automation",
|
|
36
|
-
"developer-tools",
|
|
37
|
-
"coding-assistant",
|
|
38
|
-
"vector-database",
|
|
39
|
-
"embeddings",
|
|
40
|
-
"self-learning",
|
|
41
|
-
"enterprise"
|
|
42
|
-
],
|
|
43
|
-
"author": {
|
|
44
|
-
"name": "Eric Cielo",
|
|
45
|
-
"email": "eric@motailz.com",
|
|
46
|
-
"url": "https://github.com/eric-cielo"
|
|
47
|
-
},
|
|
48
|
-
"license": "MIT",
|
|
49
|
-
"exports": {
|
|
50
|
-
".": {
|
|
51
|
-
"types": "./dist/src/index.d.ts",
|
|
52
|
-
"import": "./dist/src/index.js"
|
|
53
|
-
},
|
|
54
|
-
"./ruvector": {
|
|
55
|
-
"types": "./dist/src/ruvector/index.d.ts",
|
|
56
|
-
"import": "./dist/src/ruvector/index.js"
|
|
57
|
-
},
|
|
58
|
-
"./ruvector/*": {
|
|
59
|
-
"types": "./dist/src/ruvector/*.d.ts",
|
|
60
|
-
"import": "./dist/src/ruvector/*.js"
|
|
61
|
-
},
|
|
62
|
-
"./mcp-tools": {
|
|
63
|
-
"types": "./dist/src/mcp-tools/index.d.ts",
|
|
64
|
-
"import": "./dist/src/mcp-tools/index.js"
|
|
65
|
-
}
|
|
66
|
-
},
|
|
67
|
-
"files": [
|
|
68
|
-
"dist",
|
|
69
|
-
"bin",
|
|
70
|
-
".claude",
|
|
71
|
-
"README.md"
|
|
72
|
-
],
|
|
73
|
-
"scripts": {
|
|
74
|
-
"build": "tsc",
|
|
75
|
-
"test": "vitest run",
|
|
76
|
-
"test:plugin-store": "npx tsx src/plugins/tests/standalone-test.ts",
|
|
77
|
-
"test:pattern-store": "npx tsx src/transfer/store/tests/standalone-test.ts",
|
|
78
|
-
"preinstall": "node bin/preinstall.cjs || true",
|
|
79
|
-
"prepublishOnly": "cp ../../../README.md ./README.md",
|
|
80
|
-
"release": "npm version prerelease --preid=alpha && npm run publish:all",
|
|
81
|
-
"publish:all": "./scripts/publish.sh"
|
|
82
|
-
},
|
|
83
|
-
"devDependencies": {
|
|
84
|
-
"typescript": "^5.3.0",
|
|
85
|
-
"vitest": "^4.0.16"
|
|
86
|
-
},
|
|
87
|
-
"dependencies": {
|
|
88
|
-
"@claude-flow/mcp": "^3.0.0-alpha.8",
|
|
89
|
-
"@claude-flow/shared": "^3.0.0-alpha.1",
|
|
90
|
-
"@noble/ed25519": "^2.1.0",
|
|
91
|
-
"semver": "^7.6.0"
|
|
92
|
-
},
|
|
93
|
-
"optionalDependencies": {
|
|
94
|
-
"@claude-flow/aidefence": "^3.0.2",
|
|
95
|
-
"@claude-flow/codex": "^3.0.0-alpha.8",
|
|
96
|
-
"@claude-flow/embeddings": "^3.0.0-alpha.12",
|
|
97
|
-
"@claude-flow/guidance": "^3.0.0-alpha.1",
|
|
98
|
-
"@claude-flow/memory": "^3.0.0-alpha.11",
|
|
99
|
-
"@claude-flow/plugin-gastown-bridge": "^0.1.3",
|
|
100
|
-
"agentic-flow": "^3.0.0-alpha.1",
|
|
101
|
-
"@ruvector/attention": "^0.1.4",
|
|
102
|
-
"@ruvector/learning-wasm": "^0.1.29",
|
|
103
|
-
"@ruvector/router": "^0.1.27",
|
|
104
|
-
"@ruvector/sona": "^0.1.5"
|
|
105
|
-
},
|
|
106
|
-
"publishConfig": {
|
|
107
|
-
"access": "public",
|
|
108
|
-
"tag": "latest"
|
|
109
|
-
}
|
|
110
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@moflo/cli",
|
|
3
|
+
"version": "4.6.11",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "MoFlo CLI — AI agent orchestration with specialized agents, swarm coordination, MCP server, self-learning hooks, and vector memory for Claude Code",
|
|
6
|
+
"main": "dist/src/index.js",
|
|
7
|
+
"types": "dist/src/index.d.ts",
|
|
8
|
+
"sideEffects": false,
|
|
9
|
+
"bin": {
|
|
10
|
+
"cli": "./bin/cli.js",
|
|
11
|
+
"claude-flow": "./bin/cli.js",
|
|
12
|
+
"claude-flow-mcp": "./bin/mcp-server.js"
|
|
13
|
+
},
|
|
14
|
+
"homepage": "https://github.com/eric-cielo/moflo#readme",
|
|
15
|
+
"bugs": {
|
|
16
|
+
"url": "https://github.com/eric-cielo/moflo/issues"
|
|
17
|
+
},
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "https://github.com/eric-cielo/moflo.git",
|
|
21
|
+
"directory": "v3/@claude-flow/cli"
|
|
22
|
+
},
|
|
23
|
+
"keywords": [
|
|
24
|
+
"claude",
|
|
25
|
+
"claude-code",
|
|
26
|
+
"anthropic",
|
|
27
|
+
"ai-agents",
|
|
28
|
+
"multi-agent",
|
|
29
|
+
"swarm",
|
|
30
|
+
"mcp",
|
|
31
|
+
"model-context-protocol",
|
|
32
|
+
"llm",
|
|
33
|
+
"cli",
|
|
34
|
+
"orchestration",
|
|
35
|
+
"automation",
|
|
36
|
+
"developer-tools",
|
|
37
|
+
"coding-assistant",
|
|
38
|
+
"vector-database",
|
|
39
|
+
"embeddings",
|
|
40
|
+
"self-learning",
|
|
41
|
+
"enterprise"
|
|
42
|
+
],
|
|
43
|
+
"author": {
|
|
44
|
+
"name": "Eric Cielo",
|
|
45
|
+
"email": "eric@motailz.com",
|
|
46
|
+
"url": "https://github.com/eric-cielo"
|
|
47
|
+
},
|
|
48
|
+
"license": "MIT",
|
|
49
|
+
"exports": {
|
|
50
|
+
".": {
|
|
51
|
+
"types": "./dist/src/index.d.ts",
|
|
52
|
+
"import": "./dist/src/index.js"
|
|
53
|
+
},
|
|
54
|
+
"./ruvector": {
|
|
55
|
+
"types": "./dist/src/ruvector/index.d.ts",
|
|
56
|
+
"import": "./dist/src/ruvector/index.js"
|
|
57
|
+
},
|
|
58
|
+
"./ruvector/*": {
|
|
59
|
+
"types": "./dist/src/ruvector/*.d.ts",
|
|
60
|
+
"import": "./dist/src/ruvector/*.js"
|
|
61
|
+
},
|
|
62
|
+
"./mcp-tools": {
|
|
63
|
+
"types": "./dist/src/mcp-tools/index.d.ts",
|
|
64
|
+
"import": "./dist/src/mcp-tools/index.js"
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
"files": [
|
|
68
|
+
"dist",
|
|
69
|
+
"bin",
|
|
70
|
+
".claude",
|
|
71
|
+
"README.md"
|
|
72
|
+
],
|
|
73
|
+
"scripts": {
|
|
74
|
+
"build": "tsc",
|
|
75
|
+
"test": "vitest run",
|
|
76
|
+
"test:plugin-store": "npx tsx src/plugins/tests/standalone-test.ts",
|
|
77
|
+
"test:pattern-store": "npx tsx src/transfer/store/tests/standalone-test.ts",
|
|
78
|
+
"preinstall": "node bin/preinstall.cjs || true",
|
|
79
|
+
"prepublishOnly": "cp ../../../README.md ./README.md",
|
|
80
|
+
"release": "npm version prerelease --preid=alpha && npm run publish:all",
|
|
81
|
+
"publish:all": "./scripts/publish.sh"
|
|
82
|
+
},
|
|
83
|
+
"devDependencies": {
|
|
84
|
+
"typescript": "^5.3.0",
|
|
85
|
+
"vitest": "^4.0.16"
|
|
86
|
+
},
|
|
87
|
+
"dependencies": {
|
|
88
|
+
"@claude-flow/mcp": "^3.0.0-alpha.8",
|
|
89
|
+
"@claude-flow/shared": "^3.0.0-alpha.1",
|
|
90
|
+
"@noble/ed25519": "^2.1.0",
|
|
91
|
+
"semver": "^7.6.0"
|
|
92
|
+
},
|
|
93
|
+
"optionalDependencies": {
|
|
94
|
+
"@claude-flow/aidefence": "^3.0.2",
|
|
95
|
+
"@claude-flow/codex": "^3.0.0-alpha.8",
|
|
96
|
+
"@claude-flow/embeddings": "^3.0.0-alpha.12",
|
|
97
|
+
"@claude-flow/guidance": "^3.0.0-alpha.1",
|
|
98
|
+
"@claude-flow/memory": "^3.0.0-alpha.11",
|
|
99
|
+
"@claude-flow/plugin-gastown-bridge": "^0.1.3",
|
|
100
|
+
"agentic-flow": "^3.0.0-alpha.1",
|
|
101
|
+
"@ruvector/attention": "^0.1.4",
|
|
102
|
+
"@ruvector/learning-wasm": "^0.1.29",
|
|
103
|
+
"@ruvector/router": "^0.1.27",
|
|
104
|
+
"@ruvector/sona": "^0.1.5"
|
|
105
|
+
},
|
|
106
|
+
"publishConfig": {
|
|
107
|
+
"access": "public",
|
|
108
|
+
"tag": "latest"
|
|
109
|
+
}
|
|
110
|
+
}
|