claude-flow 3.6.29 → 3.6.30

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-flow",
3
- "version": "3.6.29",
3
+ "version": "3.6.30",
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",
@@ -135,7 +135,7 @@ async function determineAgentModel(agentType, config, task) {
135
135
  export const agentTools = [
136
136
  {
137
137
  name: 'agent_spawn',
138
- description: 'Spawn a new agent with intelligent model selection',
138
+ description: 'Spawn a Ruflo-tracked agent with cost attribution + memory persistence + swarm coordination. Use when native Task tool is wrong because you need (a) cost tracking per agent in the cost-tracking namespace, (b) cross-session learning via the patterns namespace, or (c) coordination with other agents in a swarm topology (hierarchical / mesh / consensus). For one-shot subtasks with no learning loop, native Task is fine. Pair with hooks_route to pick the right model first.',
139
139
  category: 'agent',
140
140
  inputSchema: {
141
141
  type: 'object',
@@ -759,7 +759,7 @@ export const hooksPostCommand = {
759
759
  };
760
760
  export const hooksRoute = {
761
761
  name: 'hooks_route',
762
- description: 'Route task to optimal agent using semantic similarity (native HNSW or pure JS)',
762
+ description: 'Get a 3-tier routing recommendation for a task: Tier 1 (Agent Booster, 0ms / $0 — for var-to-const, add-types, etc.), Tier 2 (Haiku — simple), Tier 3 (Sonnet/Opus complex). Use this BEFORE spawning an agent to avoid sending simple transforms to Sonnet. Native tools have no equivalent — Claude Code does not introspect its own model-selection cost. Returns the recommended model + a `[AGENT_BOOSTER_AVAILABLE]` literal when the WASM bypass applies.',
763
763
  inputSchema: {
764
764
  type: 'object',
765
765
  properties: {
@@ -153,7 +153,7 @@ async function ensureInitialized() {
153
153
  export const memoryTools = [
154
154
  {
155
155
  name: 'memory_store',
156
- description: 'Store a value in memory with vector embedding for semantic search (sql.js + HNSW backend). Use upsert=true to update existing keys.',
156
+ description: 'Persistent key-value store with vector embedding survives across sessions and is searchable by meaning, not just by file path. Use when native Write is wrong because the data is not a file (e.g. a learned pattern, a decision, a budget config) AND you need to recall it later by semantic query, not by path. Defaults to namespace="default"; pass --upsert=true to update an existing key.',
157
157
  category: 'memory',
158
158
  inputSchema: {
159
159
  type: 'object',
@@ -227,7 +227,7 @@ export const memoryTools = [
227
227
  },
228
228
  {
229
229
  name: 'memory_retrieve',
230
- description: 'Retrieve a value from memory by key',
230
+ description: 'Read back a value previously stored via memory_store, by exact (namespace, key) — lossless, includes metadata. Use when native Read is wrong because the value is not a file (it lives in the .swarm/memory.db SQLite store) AND you know the exact key. For semantic lookup by meaning, use memory_search.',
231
231
  category: 'memory',
232
232
  inputSchema: {
233
233
  type: 'object',
@@ -287,7 +287,7 @@ export const memoryTools = [
287
287
  },
288
288
  {
289
289
  name: 'memory_search',
290
- description: 'Semantic vector search using HNSW index (150x-12,500x faster than keyword search)',
290
+ description: 'Find stored memories by meaning (vector similarity), not by literal text — finds "JWT auth pattern" when you query "token-based login flow". Use when native Grep is wrong because Grep matches characters and you need to find conceptually-related entries across past sessions. Backed by HNSW index over ONNX embeddings; returns top-k with similarity scores. Pair with smart=true for query expansion + MMR diversity.',
291
291
  category: 'memory',
292
292
  inputSchema: {
293
293
  type: 'object',
@@ -404,7 +404,7 @@ export const memoryTools = [
404
404
  },
405
405
  {
406
406
  name: 'memory_delete',
407
- description: 'Delete a memory entry by key',
407
+ description: 'Remove a stored memory entry by exact (namespace, key). Use when a previously stored decision is invalidated or contains stale data. No native equivalent — Write to a file does not affect the .swarm/memory.db SQLite store.',
408
408
  category: 'memory',
409
409
  inputSchema: {
410
410
  type: 'object',
@@ -444,7 +444,7 @@ export const memoryTools = [
444
444
  },
445
445
  {
446
446
  name: 'memory_list',
447
- description: 'List memory entries with optional filtering',
447
+ description: 'Enumerate stored memory entries (optionally filtered by namespace/tags) without semantic search. Use when native Glob is wrong because the entries are not files (they live in .swarm/memory.db). For inspection / audit / "what is in my memory" — pair with memory_search for retrieval-by-meaning.',
448
448
  category: 'memory',
449
449
  inputSchema: {
450
450
  type: 'object',
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@claude-flow/cli",
3
- "version": "3.6.29",
3
+ "version": "3.6.30",
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",