@eventmodelers/cli 0.0.14 → 0.0.15

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/cli.js CHANGED
@@ -1001,7 +1001,7 @@ async function runModeling(kitDir, projectDir) {
1001
1001
  const res = await fetch(`${cfg.baseUrl}/api/agent-alive`, {
1002
1002
  method: 'POST',
1003
1003
  headers: { Authorization: `Bearer ${realtimeToken}`, 'Content-Type': 'application/json' },
1004
- body: JSON.stringify({ token: cfg.token }),
1004
+ body: JSON.stringify({ token: cfg.token, board_id: cfg.boardId }),
1005
1005
  });
1006
1006
  if (!res.ok) log(`ping failed: ${res.status}`);
1007
1007
  } catch (err) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eventmodelers/cli",
3
- "version": "0.0.14",
3
+ "version": "0.0.15",
4
4
  "description": "Eventmodelers CLI — real-time Claude agent + skills for Claude Code, for any stack (Node, Supabase, Axon, Cratis, or modeling-only)",
5
5
  "type": "module",
6
6
  "bin": {
@@ -252,7 +252,7 @@ async function startRealtimeAgent(cfg, kitDir) {
252
252
  const res = await fetch(`${cfg.baseUrl}/api/agent-alive`, {
253
253
  method: 'POST',
254
254
  headers: { Authorization: `Bearer ${realtimeToken}`, 'Content-Type': 'application/json' },
255
- body: JSON.stringify({ token: cfg.token }),
255
+ body: JSON.stringify({ token: cfg.token, board_id: cfg.boardId }),
256
256
  });
257
257
  if (!res.ok) console.error(`[agent] Ping failed: ${res.status}`);
258
258
  } catch (err) {