prodboard 0.1.1 → 0.1.2

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # prodboard
2
2
 
3
+ ## 0.1.2
4
+
5
+ ### Patch Changes
6
+
7
+ - a9f2241: Fix daemon failing immediately by adding `--verbose` flag required for `--output-format stream-json` in print mode
8
+
3
9
  ## 0.1.1
4
10
 
5
11
  ### Patch Changes
package/README.md CHANGED
@@ -297,6 +297,16 @@ bun test
297
297
  bun run typecheck
298
298
  ```
299
299
 
300
+ ## Upgrading
301
+
302
+ ```bash
303
+ # Update to the latest version
304
+ bun install -g prodboard@latest
305
+
306
+ # If running as a systemd service, reinstall to pick up the new binary path
307
+ prodboard install --force
308
+ ```
309
+
300
310
  ## License
301
311
 
302
312
  MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "prodboard",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Self-hosted, CLI-first issue tracker and cron scheduler for AI coding agents",
5
5
  "type": "module",
6
6
  "license": "MIT",
package/src/invocation.ts CHANGED
@@ -46,7 +46,7 @@ export function buildInvocation(
46
46
  args.push("--dangerously-skip-permissions");
47
47
 
48
48
  // Output format
49
- args.push("--output-format", "stream-json");
49
+ args.push("--verbose", "--output-format", "stream-json");
50
50
 
51
51
  // MCP config
52
52
  const mcpConfigPath = path.join(PRODBOARD_DIR, "mcp.json");