claude-flow 3.7.0-alpha.72 → 3.7.0-alpha.73
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/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<div align="center">
|
|
2
2
|
|
|
3
|
-
[](https://
|
|
3
|
+
[](https://cognitum.one/agentic-engineering)
|
|
4
4
|
|
|
5
5
|
[](https://flo.ruv.io/)
|
|
6
6
|
[](https://goal.ruv.io/)
|
|
@@ -16,6 +16,8 @@
|
|
|
16
16
|
[](https://www.npmjs.com/package/@claude-flow/codex)
|
|
17
17
|
[](https://github.com/ruvnet/ruvector)
|
|
18
18
|
|
|
19
|
+
[](https://cognitum.one/appliance)
|
|
20
|
+
|
|
19
21
|
[](https://github.com/ruvnet/ruflo/issues/1967)
|
|
20
22
|
|
|
21
23
|
# Ruflo
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-flow",
|
|
3
|
-
"version": "3.7.0-alpha.
|
|
3
|
+
"version": "3.7.0-alpha.73",
|
|
4
4
|
"description": "Ruflo - Enterprise AI agent orchestration for Claude Code. Deploy 60+ specialized agents in coordinated swarms with self-learning, fault-tolerant consensus, vector memory, and MCP integration",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<div align="center">
|
|
2
2
|
|
|
3
|
-
[](https://
|
|
3
|
+
[](https://cognitum.one/agentic-engineering)
|
|
4
4
|
|
|
5
5
|
[](https://flo.ruv.io/)
|
|
6
6
|
[](https://goal.ruv.io/)
|
|
@@ -16,6 +16,8 @@
|
|
|
16
16
|
[](https://www.npmjs.com/package/@claude-flow/codex)
|
|
17
17
|
[](https://github.com/ruvnet/ruvector)
|
|
18
18
|
|
|
19
|
+
[](https://cognitum.one/appliance)
|
|
20
|
+
|
|
19
21
|
[](https://github.com/ruvnet/ruflo/issues/1967)
|
|
20
22
|
|
|
21
23
|
# Ruflo
|
|
@@ -39,9 +39,15 @@ export function generateSettings(options) {
|
|
|
39
39
|
// line into the user's commits — that pattern silently inflated GitHub
|
|
40
40
|
// contributor graphs and was hard to undo without rewriting history. Pass
|
|
41
41
|
// `--attribution` (or `attribution: true` in InitOptions) to enable.
|
|
42
|
+
//
|
|
43
|
+
// #2078 — when the user DOES opt in, write a no-reply bot email so GitHub
|
|
44
|
+
// treats this as a tool, not a personal contribution. Personal emails get
|
|
45
|
+
// added to user repos' contributor graphs even when the trailer is opt-in.
|
|
46
|
+
// `ruflo-bot@users.noreply.github.com` is GitHub's no-reply convention and
|
|
47
|
+
// is excluded from contributor graphs / mapped to a tool identity.
|
|
42
48
|
if (options.attribution === true) {
|
|
43
49
|
settings.attribution = {
|
|
44
|
-
commit: 'Co-Authored-By:
|
|
50
|
+
commit: 'Co-Authored-By: ruflo-bot <ruflo-bot@users.noreply.github.com>',
|
|
45
51
|
pr: '🤖 Generated with [RuFlo](https://github.com/ruvnet/ruflo)',
|
|
46
52
|
};
|
|
47
53
|
}
|
|
@@ -5,7 +5,23 @@
|
|
|
5
5
|
* All tools gracefully degrade when the WASM package is not installed.
|
|
6
6
|
*/
|
|
7
7
|
import { validateIdentifier, validateText } from './validate-input.js';
|
|
8
|
+
// #2086 — every ruvllm_* MCP handler that touches the WASM runtime calls
|
|
9
|
+
// this. The downstream `createSonaInstant`/`createMicroLora`/`createHnswRouter`
|
|
10
|
+
// helpers all need `initSync({ module: wasmBytes })` to have run, otherwise
|
|
11
|
+
// the WASM exports throw. Doing it here makes the bootstrap invisible to
|
|
12
|
+
// MCP callers — they don't need a separate `ruvllm_init` tool. `_wasmReady`
|
|
13
|
+
// inside `initRuvllmWasm` short-circuits on the second+ call, so the cost
|
|
14
|
+
// after the first invocation is one boolean check.
|
|
15
|
+
//
|
|
16
|
+
// `ruvllm_status` deliberately uses `loadRuvllmWasmModule()` (no init) so a
|
|
17
|
+
// caller diagnosing why nothing works gets `initialized=false` instead of
|
|
18
|
+
// an error from a failed init.
|
|
8
19
|
async function loadRuvllmWasm() {
|
|
20
|
+
const mod = await loadRuvllmWasmModule();
|
|
21
|
+
await mod.initRuvllmWasm();
|
|
22
|
+
return mod;
|
|
23
|
+
}
|
|
24
|
+
async function loadRuvllmWasmModule() {
|
|
9
25
|
return import('../ruvector/ruvllm-wasm.js');
|
|
10
26
|
}
|
|
11
27
|
export const ruvllmWasmTools = [
|
|
@@ -15,7 +31,7 @@ export const ruvllmWasmTools = [
|
|
|
15
31
|
inputSchema: { type: 'object', properties: {} },
|
|
16
32
|
handler: async () => {
|
|
17
33
|
try {
|
|
18
|
-
const mod = await
|
|
34
|
+
const mod = await loadRuvllmWasmModule();
|
|
19
35
|
const wasmStatus = await mod.getRuvllmStatus();
|
|
20
36
|
// Also include native ruvllm CJS backend status (ADR-086)
|
|
21
37
|
let nativeBackend = { available: false };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@claude-flow/cli",
|
|
3
|
-
"version": "3.7.0-alpha.
|
|
3
|
+
"version": "3.7.0-alpha.73",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Ruflo CLI - Enterprise AI agent orchestration with 60+ specialized agents, swarm coordination, MCP server, self-learning hooks, and vector memory for Claude Code",
|
|
6
6
|
"main": "dist/src/index.js",
|