@claude-flow/cli 3.31.1 → 3.31.2
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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"manifest": {
|
|
3
|
-
"version": "3.31.
|
|
3
|
+
"version": "3.31.2",
|
|
4
4
|
"files": {
|
|
5
5
|
"auto-memory-hook.mjs": "e3e1033b24704992ddef6b31c7fa9dd7fcd9e1af7935dd77ef73402b916b31e6",
|
|
6
6
|
"hook-handler.cjs": "f87ec28684bfc5fd0a54c46bd2a53a3fb037defe71d0ea4b8a5cb88a2cd87a3f",
|
|
@@ -8,6 +8,6 @@
|
|
|
8
8
|
"statusline.cjs": "7d7bdee732e1c75b863e409afb86ce0d712f4919245e990d806da6752015bffa"
|
|
9
9
|
}
|
|
10
10
|
},
|
|
11
|
-
"signature": "
|
|
11
|
+
"signature": "ylLtKhiU5Z8ZsH5i3F9/IYudcJtWAKq/0FKMno16JIadCVK3ff/NWjSZKcP2S/n7BV9K/UpWoYrRAOmvf3uDAQ==",
|
|
12
12
|
"algorithm": "ed25519"
|
|
13
13
|
}
|
package/catalog-manifest.json
CHANGED
|
@@ -144,6 +144,21 @@ async function maybeInstallSkillsSh(ctx) {
|
|
|
144
144
|
return;
|
|
145
145
|
if (/^(1|true|on|yes)$/i.test(String(process.env.RUFLO_NO_SKILLS_SH || '')))
|
|
146
146
|
return;
|
|
147
|
+
// Idempotency gate: if this project has already registered ruflo with
|
|
148
|
+
// skills.sh, don't re-clone the repo + re-fire a fresh install telemetry
|
|
149
|
+
// event on every `ruflo init --force` / `init upgrade` / etc. Each install
|
|
150
|
+
// pings skills.sh's leaderboard AND clones the whole ruvnet/ruflo repo
|
|
151
|
+
// (~50MB) — re-running per-init would silently inflate our own metrics
|
|
152
|
+
// (GitHub unique-cloners, skills.sh rank) and waste user bandwidth. This
|
|
153
|
+
// check makes the registration once-per-project, matching the intent.
|
|
154
|
+
const nodePath = await import('path');
|
|
155
|
+
const nodeFs = await import('fs');
|
|
156
|
+
const marker = nodePath.join(ctx.cwd, '.agents', 'skills', 'ruflo');
|
|
157
|
+
if (nodeFs.existsSync(marker)) {
|
|
158
|
+
output.writeln();
|
|
159
|
+
output.writeln(output.dim(' skills.sh registration already present at .agents/skills/ruflo — skipping'));
|
|
160
|
+
return;
|
|
161
|
+
}
|
|
147
162
|
const npxCmd = process.platform === 'win32' ? 'npx.cmd' : 'npx';
|
|
148
163
|
if (!commandExists('npx'))
|
|
149
164
|
return;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@claude-flow/cli",
|
|
3
|
-
"version": "3.31.
|
|
3
|
+
"version": "3.31.2",
|
|
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",
|