tide-commander 0.69.2 → 0.69.3

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/dist/index.html CHANGED
@@ -22,11 +22,11 @@
22
22
  <link rel="icon" type="image/png" sizes="16x16" href="/assets/icons/favicon-16x16.png" />
23
23
  <link rel="apple-touch-icon" sizes="180x180" href="/assets/icons/apple-touch-icon.png" />
24
24
  <title>Tide Commander</title>
25
- <script type="module" crossorigin src="/assets/main-DkIjeEeR.js"></script>
25
+ <script type="module" crossorigin src="/assets/main-Bnt7bmX7.js"></script>
26
26
  <link rel="modulepreload" crossorigin href="/assets/modulepreload-polyfill-B5Qt9EMX.js">
27
27
  <link rel="modulepreload" crossorigin href="/assets/vendor-react-uS-d4TUT.js">
28
28
  <link rel="modulepreload" crossorigin href="/assets/vendor-three-DJ4p3FLF.js">
29
- <link rel="stylesheet" crossorigin href="/assets/main-BOFXGJQm.css">
29
+ <link rel="stylesheet" crossorigin href="/assets/main-CA9zTPix.css">
30
30
  </head>
31
31
  <body>
32
32
  <div id="app"></div>
@@ -79,24 +79,6 @@ function emit(event, ...args) {
79
79
  listeners.forEach((listener) => listener(...args));
80
80
  }
81
81
  }
82
- function scheduleSilentContextRefresh(agentId, reason) {
83
- setTimeout(() => {
84
- if (reason === 'step_complete') {
85
- log.log(`[step_complete] Sending silent /context for agent ${agentId}`);
86
- }
87
- if (reason === 'handle_complete') {
88
- log.log(`[handleComplete] Triggering fallback /context refresh for agent ${agentId}`);
89
- }
90
- sendSilentCommand(agentId, '/context').catch((err) => {
91
- if (reason === 'step_complete') {
92
- log.log(`[step_complete] Silent /context failed for ${agentId}: ${err}`);
93
- }
94
- else {
95
- log.log(`[handleComplete] Fallback /context failed for ${agentId}: ${err}`);
96
- }
97
- });
98
- }, 300);
99
- }
100
82
  const commandExecution = createRuntimeCommandExecution({
101
83
  log,
102
84
  getRunner,
@@ -117,7 +99,6 @@ const runtimeEvents = createRuntimeEventHandlers({
117
99
  emitError: (agentId, error) => emit('error', agentId, error),
118
100
  parseUsageOutput: (raw) => parseUsageOutput(raw),
119
101
  executeCommand: (agentId, command, systemPrompt, forceNewSession) => commandExecution.executeCommand(agentId, command, systemPrompt, forceNewSession),
120
- scheduleSilentContextRefresh,
121
102
  });
122
103
  const statusSync = createRuntimeStatusSync({
123
104
  log,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tide-commander",
3
- "version": "0.69.2",
3
+ "version": "0.69.3",
4
4
  "description": "Visual multi-agent orchestrator and manager for Claude Code with 3D/2D interface",
5
5
  "repository": {
6
6
  "type": "git",