tuiboard 0.5.4 → 0.5.5

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -68,7 +68,7 @@ Starting fresh — no Obsidian, no special folders required:
68
68
  ```
69
69
  Or skip the config entirely and just run `tuiboard` inside a folder that
70
70
  already contains `.md` files with `- [ ]` tasks — it auto-discovers them.
71
- 4. **Run it:** `tuiboard`.
71
+ 4. **Run it:** `tuiboard` (or the short alias `tb`).
72
72
 
73
73
  **The Agent view needs zero setup.** tuiboard reads your local Claude Code
74
74
  sessions from `~/.claude/` automatically, so the live agent strip fills in as
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tuiboard",
3
- "version": "0.5.4",
3
+ "version": "0.5.5",
4
4
  "description": "Terminal dashboard for markdown task boards. Kanban + Today/Tomorrow + 24h timeline + Claude Code agent view, all in one TUI.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -28,7 +28,8 @@
28
28
  "bun": ">=1.2.0"
29
29
  },
30
30
  "bin": {
31
- "tuiboard": "./bin/tuiboard.ts"
31
+ "tuiboard": "./bin/tuiboard.ts",
32
+ "tb": "./bin/tuiboard.ts"
32
33
  },
33
34
  "files": [
34
35
  "src/",