omniwire 3.2.0 → 3.2.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.
@@ -0,0 +1,6 @@
1
+ {
2
+ "timestamp": "2026-03-29T23:41:14.883Z",
3
+ "backgroundTasks": [],
4
+ "sessionStartTimestamp": "2026-03-29T23:21:14.012Z",
5
+ "sessionId": "8ef02123-7368-447d-82e3-ee14a27328b0"
6
+ }
@@ -0,0 +1 @@
1
+ {"session_id":"8ef02123-7368-447d-82e3-ee14a27328b0","transcript_path":"C:\\Users\\Admin\\.claude\\projects\\C--Users-Admin\\8ef02123-7368-447d-82e3-ee14a27328b0.jsonl","cwd":"C:\\Users\\Admin\\omniwire","model":{"id":"claude-opus-4-6[1m]","display_name":"Opus 4.6 (1M context)"},"workspace":{"current_dir":"C:\\Users\\Admin\\omniwire","project_dir":"C:\\Users\\Admin","added_dirs":["C:/Users/Admin"]},"version":"2.1.87","output_style":{"name":"default"},"cost":{"total_cost_usd":4.372866899999998,"total_duration_ms":1369723,"total_api_duration_ms":587779,"total_lines_added":38,"total_lines_removed":24},"context_window":{"total_input_tokens":786,"total_output_tokens":21423,"context_window_size":1000000,"current_usage":{"input_tokens":1,"output_tokens":95,"cache_creation_input_tokens":261,"cache_read_input_tokens":99806},"used_percentage":10,"remaining_percentage":90},"exceeds_200k_tokens":false,"rate_limits":{"five_hour":{"used_percentage":35,"resets_at":1774828800},"seven_day":{"used_percentage":41,"resets_at":1775206800}}}
@@ -1,5 +1,5 @@
1
1
  {
2
- "lastCheck": 1774767791264,
2
+ "lastCheck": 1774827169153,
3
3
  "lastVersion": "3.0.1",
4
4
  "autoUpdateEnabled": true,
5
5
  "source": "auto",
package/README.md CHANGED
@@ -632,7 +632,7 @@ Create `~/.omniwire/mesh.json`:
632
632
  <details>
633
633
  <summary><b>v2.5.1 -- Universal Background Dispatch</b></summary>
634
634
 
635
- **`background: true`** auto-injected into all 81 tools via server-level wrapper. Returns task ID, poll with `omniwire_bg`. New `omniwire_bg` tool for list/poll/result.
635
+ **`background: true`** auto-injected into all 86 tools via server-level wrapper. Returns task ID, poll with `omniwire_bg`. New `omniwire_bg` tool for list/poll/result.
636
636
 
637
637
  </details>
638
638
 
@@ -671,7 +671,7 @@ Security fixes, multi-path SSH failover, CyberBase integration, VaultBridge Obsi
671
671
  ```
672
672
  omniwire/
673
673
  src/
674
- mcp/ MCP server (81 tools, 3 transports)
674
+ mcp/ MCP server (86 tools, 3 transports)
675
675
  nodes/ SSH2 pool, transfer engine, PTY, tunnels
676
676
  sync/ CyberSync + CyberBase (PostgreSQL, Obsidian, encryption)
677
677
  protocol/ Mesh config, types, path parsing
@@ -687,6 +687,7 @@ omniwire/
687
687
 
688
688
  | Version | Date | Changes |
689
689
  |---------|------|---------|
690
+ | **v3.2.1** | 2026-03-30 | New: 5 bi-directional sync tools (`omniwire_sync`, `omniwire_sync_rules`, `omniwire_sync_hooks`, `omniwire_sync_memory`, `omniwire_sync_agents`) — 86 tools total |
690
691
  | **v3.2.0** | 2026-03-29 | New: `omniwire_2fa` TOTP manager — add/generate/verify/import/export 2FA codes, CyberBase + 1Password persistence, otpauth:// URI import, bulk code generation |
691
692
  | **v3.1.5** | 2026-03-29 | Fix: skip auto-audit batch entries from Obsidian vault + Canvas sync to prevent junk files |
692
693
  | **v3.1.4** | 2026-03-29 | Auto-sync CyberBase writes to Obsidian vault + Canvas mindmap, collision-avoidance grid placement, `sync-obsidian` / `sync-canvas` actions in knowledge tool |
package/dist/mcp/index.js CHANGED
@@ -61,7 +61,7 @@ async function main() {
61
61
  const manifests = getManifests(os);
62
62
  const engine = new SyncEngine(syncDb, config, manager, transfer);
63
63
  registerSyncTools(server, syncDb, engine, manifests, nodeId, manager, transfer);
64
- log('CyberSync: 12 tools registered', { tools: 12, node: nodeId });
64
+ log('CyberSync: 17 tools registered', { tools: 17, node: nodeId });
65
65
  }
66
66
  catch (err) {
67
67
  log(`CyberSync init failed (continuing without sync): ${err.message}`, { error: err.message });
@@ -15,7 +15,7 @@ import { openBrowser } from '../commands/browser.js';
15
15
  import { allNodes, remoteNodes, findNode, NODE_ROLES, getDefaultNodeForTask, CONFIG } from '../protocol/config.js';
16
16
  import { parseMeshPath } from '../protocol/paths.js';
17
17
  import { genKeysCmd, parseKeys, buildWgConfig, wgConfigPath, bringUpCmd, bringDownCmd, statusCmd as meshStatusCmd, parseWgShow, addPeerCmd, removePeerCmd, installCmd, checkInstalledCmd, natTraversalPostUp, natTraversalPostDown, rotateKeyCmd, healthCheckCmd, stunDiscoverCmd, generateMeshTopology, } from '../mesh/omnimesh.js';
18
- const MAX_OUTPUT = 4000;
18
+ const MAX_OUTPUT = 16000;
19
19
  function t(ms) {
20
20
  return ms < 1000 ? `${ms}ms` : `${(ms / 1000).toFixed(1)}s`;
21
21
  }
@@ -33,9 +33,9 @@ function trim(s) {
33
33
  }
34
34
  // Detect table-like output — show header + tail
35
35
  const lines = s.split('\n');
36
- if (lines.length > 30) {
37
- const header = lines.slice(0, 2).join('\n');
38
- const lastLines = lines.slice(-5).join('\n');
36
+ if (lines.length > 200) {
37
+ const header = lines.slice(0, 5).join('\n');
38
+ const lastLines = lines.slice(-10).join('\n');
39
39
  return header + '\n...\n' + lastLines + `\n(${lines.length} lines total)`;
40
40
  }
41
41
  return s.slice(0, MAX_OUTPUT) + '\n...(truncated)';