odd-flow 1.0.0 → 1.0.1

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": "odd-flow",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "AI agent orchestration for Claude Code — swarm coordination, vector memory, self-learning hooks, and MCP tools",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -22,7 +22,7 @@ if (isMCPMode) {
22
22
  // Run MCP server mode
23
23
  const { listMCPTools, callMCPTool, hasTool } = await import('../dist/src/mcp-client.js');
24
24
 
25
- const VERSION = '1.0.0';
25
+ const VERSION = '1.0.1';
26
26
  const sessionId = `mcp-${Date.now()}-${randomUUID().slice(0, 8)}`;
27
27
 
28
28
  console.error(
@@ -10,7 +10,7 @@
10
10
  import { randomUUID } from 'crypto';
11
11
  import { listMCPTools, callMCPTool, hasTool } from '../dist/src/mcp-client.js';
12
12
 
13
- const VERSION = '1.0.0';
13
+ const VERSION = '1.0.1';
14
14
  const sessionId = `mcp-${Date.now()}-${randomUUID().slice(0, 8)}`;
15
15
 
16
16
  // Log to stderr (doesn't corrupt stdout for MCP protocol)
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "odd-flow",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "type": "module",
5
5
  "description": "AI agent orchestration with swarm coordination, MCP server, self-learning hooks, and vector memory for Claude Code",
6
6
  "main": "dist/src/index.js",