beads-ui 0.12.0 → 0.12.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": "beads-ui",
3
- "version": "0.12.0",
3
+ "version": "0.12.1",
4
4
  "description": "Local UI for Beads — Collaborate on issues with your coding agent.",
5
5
  "keywords": [
6
6
  "agent",
@@ -54,6 +54,7 @@ export async function handleStart(options) {
54
54
  console.log('Workspace registered: %s', cwd);
55
55
  }
56
56
  console.warn('Server is already running.');
57
+ console.log('beads ui listening on %s', url);
57
58
  if (should_open) {
58
59
  await openUrl(url);
59
60
  }
@@ -87,6 +88,7 @@ export async function handleStart(options) {
87
88
  const registered = await registerCurrentWorkspace(existing_url, cwd);
88
89
  if (registered) {
89
90
  console.log('Workspace registered with existing server: %s', cwd);
91
+ console.log('beads ui listening on %s', existing_url);
90
92
  if (should_open) {
91
93
  await openUrl(existing_url);
92
94
  }
@@ -124,6 +126,7 @@ export async function handleStart(options) {
124
126
  'Daemon exited early; registered workspace with existing server: %s',
125
127
  cwd
126
128
  );
129
+ console.log('beads ui listening on %s', url);
127
130
  return 0;
128
131
  }
129
132
  return 1;