@benlooper/agent-board-tui 1.0.0 → 1.0.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/commands/kanban.md +2 -2
- package/dist/server.js +30624 -0
- package/dist/tui.js +30661 -0
- package/package.json +8 -3
- package/scripts/build-tui.ts +29 -0
- package/scripts/cli.ts +69 -1
- package/scripts/setup.ts +58 -8
package/commands/kanban.md
CHANGED
|
@@ -9,9 +9,9 @@ Check if the board server is up:
|
|
|
9
9
|
|
|
10
10
|
curl -s --max-time 2 http://localhost:31377/api/cards
|
|
11
11
|
|
|
12
|
-
If that fails, start it:
|
|
12
|
+
If that fails, start it in the background:
|
|
13
13
|
|
|
14
|
-
agent-board-tui
|
|
14
|
+
agent-board-tui start
|
|
15
15
|
|
|
16
16
|
Then poll every 2s (up to 15s) until the health check passes.
|
|
17
17
|
|