@qrafty-ai/opencode-kanban 0.0.5 → 0.0.6

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 +46 -0
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -22,6 +22,14 @@ A Rust terminal kanban board for managing Git worktrees and OpenCode tmux sessio
22
22
  npm install -g opencode-kanban
23
23
  ```
24
24
 
25
+ ### AUR (Arch Linux)
26
+
27
+ ```bash
28
+ yay -S opencode-kanban
29
+ # or
30
+ paru -S opencode-kanban
31
+ ```
32
+
25
33
  ### Build from source
26
34
 
27
35
  ```bash
@@ -65,6 +73,44 @@ The workflow builds platform binaries, packages npm tarballs, and publishes:
65
73
  - `opencode-kanban` (main package)
66
74
  - platform-tagged variants for Linux x64, macOS x64, and macOS arm64
67
75
 
76
+ ## AUR release process
77
+
78
+ Publishing is handled by `.github/workflows/publish-aur.yaml` and targets the [`opencode-kanban`](https://aur.archlinux.org/packages/opencode-kanban) AUR package.
79
+
80
+ The same version tag that triggers npm publishing also triggers AUR publishing:
81
+
82
+ ```bash
83
+ git tag -a v0.1.0 -m "Release v0.1.0"
84
+ git push origin v0.1.0
85
+ ```
86
+
87
+ The workflow:
88
+ 1. Strips the `v` prefix to get the semver version
89
+ 2. Downloads the GitHub release tarball and computes its SHA256
90
+ 3. Stamps `aur/PKGBUILD` with the version and checksum
91
+ 4. Pushes the updated PKGBUILD (and auto-generated `.SRCINFO`) to the AUR Git repository
92
+
93
+ Only stable `vX.Y.Z` tags are supported (no alpha/pre-release variants).
94
+
95
+ ## First-time AUR setup
96
+
97
+ 1. Generate a dedicated SSH key pair (no passphrase):
98
+
99
+ ```bash
100
+ ssh-keygen -t ed25519 -C "github-actions@qrafty.ai" -f aur_deploy -N ""
101
+ ```
102
+
103
+ 2. Add the **public key** (`aur_deploy.pub`) to your AUR account:
104
+ - Log in at <https://aur.archlinux.org/account>
105
+ - Paste the public key into **SSH Public Keys**
106
+
107
+ 3. Add the **private key** as a GitHub Actions secret named `AUR_SSH_PRIVATE_KEY`:
108
+ - Repository → Settings → Secrets and variables → Actions → New repository secret
109
+ - Name: `AUR_SSH_PRIVATE_KEY`
110
+ - Value: contents of `aur_deploy` (the private key file)
111
+
112
+ 4. Claim or create the `opencode-kanban` package on AUR (first publish does this automatically if the package doesn't exist yet).
113
+
68
114
  ## First-time npm setup
69
115
 
70
116
  In npm package settings, configure a Trusted Publisher for this repository and workflow file:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qrafty-ai/opencode-kanban",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
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.0.5-linux-x64",
22
- "@qrafty-ai/opencode-kanban-darwin-arm64": "npm:@qrafty-ai/opencode-kanban@0.0.5-darwin-arm64"
21
+ "@qrafty-ai/opencode-kanban-linux-x64": "npm:@qrafty-ai/opencode-kanban@0.0.6-linux-x64",
22
+ "@qrafty-ai/opencode-kanban-darwin-arm64": "npm:@qrafty-ai/opencode-kanban@0.0.6-darwin-arm64"
23
23
  }
24
24
  }