opencode-pilot 0.21.0 → 0.21.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.
@@ -44,9 +44,6 @@ jobs:
44
44
  needs: test
45
45
  if: github.event_name == 'push' && github.ref == 'refs/heads/main'
46
46
  runs-on: ubuntu-latest
47
- outputs:
48
- new_release_published: ${{ steps.semantic.outputs.new_release_published }}
49
- new_release_version: ${{ steps.semantic.outputs.new_release_version }}
50
47
  steps:
51
48
  - uses: actions/checkout@v4
52
49
  with:
@@ -67,8 +64,11 @@ jobs:
67
64
  run: npm install
68
65
 
69
66
  - name: Run semantic-release
70
- id: semantic
71
67
  run: npx semantic-release
72
68
  env:
73
69
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
74
70
  NPM_CONFIG_PROVENANCE: true
71
+ GIT_AUTHOR_NAME: github-actions[bot]
72
+ GIT_AUTHOR_EMAIL: github-actions[bot]@users.noreply.github.com
73
+ GIT_COMMITTER_NAME: github-actions[bot]
74
+ GIT_COMMITTER_EMAIL: github-actions[bot]@users.noreply.github.com
package/.releaserc.cjs CHANGED
@@ -19,11 +19,24 @@ module.exports = {
19
19
  // Generate release notes
20
20
  '@semantic-release/release-notes-generator',
21
21
 
22
- // Update version in package.json (in memory) and publish to npm with provenance
23
- // Note: version is NOT committed back to repo - only the published package has it
22
+ // Publish to npm with provenance
24
23
  ['@semantic-release/npm', { provenance: true }],
25
24
 
26
- // Create GitHub release (this is the source of truth for versions)
27
- '@semantic-release/github'
25
+ // Create GitHub release (creates the tag/tarball)
26
+ '@semantic-release/github',
27
+
28
+ // Update Homebrew formula with new version and SHA (runs after release is created)
29
+ ['@semantic-release/exec', {
30
+ successCmd: `
31
+ VERSION="\${nextRelease.version}"
32
+ TARBALL_URL="https://github.com/athal7/opencode-pilot/archive/refs/tags/v$VERSION.tar.gz"
33
+ SHA256=$(curl -sL "$TARBALL_URL" | shasum -a 256 | cut -d' ' -f1)
34
+ sed -i "s|url \\"https://github.com/athal7/opencode-pilot/archive/refs/tags/v.*\\.tar\\.gz\\"|url \\"$TARBALL_URL\\"|" Formula/opencode-pilot.rb
35
+ sed -i "s|sha256 \\".*\\"|sha256 \\"$SHA256\\"|" Formula/opencode-pilot.rb
36
+ git add Formula/opencode-pilot.rb
37
+ git commit -m "chore(brew): update formula to v$VERSION [skip ci]"
38
+ git push
39
+ `
40
+ }]
28
41
  ]
29
42
  };
package/README.md CHANGED
@@ -13,8 +13,23 @@ Automation daemon for [OpenCode](https://github.com/sst/opencode) - polls for wo
13
13
 
14
14
  ## Installation
15
15
 
16
+ ### Homebrew (recommended)
17
+
18
+ ```bash
19
+ brew tap athal7/opencode-pilot
20
+ brew install opencode-pilot
21
+
22
+ # Start the service (runs at login)
23
+ brew services start opencode-pilot
24
+ ```
25
+
26
+ Upgrade with `brew upgrade opencode-pilot`.
27
+
28
+ ### npm (alternative)
29
+
16
30
  ```bash
17
31
  npm install -g opencode-pilot
32
+ opencode-pilot start
18
33
  ```
19
34
 
20
35
  ## Quick Start
@@ -23,19 +38,13 @@ npm install -g opencode-pilot
23
38
 
24
39
  2. **Create templates** - Add prompt templates to `~/.config/opencode/pilot/templates/`
25
40
 
26
- 3. **Enable the plugin** - Add to your `opencode.json`:
27
-
28
- ```json
29
- {
30
- "plugin": ["opencode-pilot"]
31
- }
32
- ```
33
-
34
- The daemon will auto-start when OpenCode launches. If a newer version of the plugin is installed, the daemon will automatically restart to pick up the new version.
35
-
36
- Or start manually:
41
+ 3. **Start the service**:
37
42
 
38
43
  ```bash
44
+ # If installed via Homebrew:
45
+ brew services start opencode-pilot
46
+
47
+ # If installed via npm:
39
48
  opencode-pilot start
40
49
  ```
41
50
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-pilot",
3
- "version": "0.21.0",
3
+ "version": "0.21.2",
4
4
  "type": "module",
5
5
  "main": "plugin/index.js",
6
6
  "description": "Automation daemon for OpenCode - polls for work and spawns sessions",
@@ -30,7 +30,7 @@
30
30
  "test:all": "node --test test/unit/*.test.js test/integration/*.test.js"
31
31
  },
32
32
  "devDependencies": {
33
- "@semantic-release/git": "^10.0.1",
33
+ "@semantic-release/exec": "^7.1.0",
34
34
  "@semantic-release/github": "^9.2.6",
35
35
  "@semantic-release/npm": "^13.1.0",
36
36
  "semantic-release": "^25.0.2"