@qrafty-ai/opencode-kanban 0.3.3 → 0.3.4

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 +8 -13
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -18,32 +18,27 @@ A Rust terminal kanban board for managing Git worktrees and OpenCode tmux sessio
18
18
  - `opencode` installed and available on `PATH` (recommended for attach/resume workflows)
19
19
 
20
20
  ## Quickstart (2 minutes)
21
-
22
- 1. Install:
23
-
24
- ```bash
25
- npm install -g opencode-kanban
26
- ```
27
-
28
- 2. Verify runtime tools:
21
+ 1. Verify runtime tools:
29
22
 
30
23
  ```bash
31
- opencode-kanban --version
32
24
  tmux -V
33
25
  opencode --version
34
26
  ```
35
27
 
36
- 3. Start the app:
28
+ 2. Start the app:
37
29
 
38
30
  ```bash
39
- opencode-kanban
31
+ npx @qrafty-ai/opencode-kanban
40
32
  ```
41
33
 
42
- 4. In the UI:
34
+ 3. In the UI:
43
35
  - Press `n` to create a task
44
36
  - Press `Enter` on a task to attach
45
37
  - Press `?` for built-in help
46
38
  - Press `q` to quit
39
+ 4. In the attached tmux session:
40
+ - Press `<prefix>+O` for help overlay
41
+ - Press `<prefix>+K` to return to kanban session
47
42
 
48
43
  If you start outside tmux, `opencode-kanban` auto-creates or auto-attaches to a tmux session named `opencode-kanban`.
49
44
 
@@ -52,7 +47,7 @@ If you start outside tmux, `opencode-kanban` auto-creates or auto-attaches to a
52
47
  ### npm
53
48
 
54
49
  ```bash
55
- npm install -g opencode-kanban
50
+ npm install -g @qrafty-ai/opencode-kanban
56
51
  ```
57
52
 
58
53
  ### AUR (Arch Linux)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qrafty-ai/opencode-kanban",
3
- "version": "0.3.3",
3
+ "version": "0.3.4",
4
4
  "description": "Terminal kanban board for managing OpenCode tmux sessions",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -18,7 +18,7 @@
18
18
  "url": "https://github.com/qrafty-ai/opencode-kanban.git"
19
19
  },
20
20
  "optionalDependencies": {
21
- "@qrafty-ai/opencode-kanban-linux-x64": "npm:@qrafty-ai/opencode-kanban@0.3.3-linux-x64",
22
- "@qrafty-ai/opencode-kanban-darwin-arm64": "npm:@qrafty-ai/opencode-kanban@0.3.3-darwin-arm64"
21
+ "@qrafty-ai/opencode-kanban-linux-x64": "npm:@qrafty-ai/opencode-kanban@0.3.4-linux-x64",
22
+ "@qrafty-ai/opencode-kanban-darwin-arm64": "npm:@qrafty-ai/opencode-kanban@0.3.4-darwin-arm64"
23
23
  }
24
24
  }