opencode-gitbutler 0.1.1 → 0.1.3

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 +26 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,14 +2,39 @@
2
2
 
3
3
  [![npm version](https://img.shields.io/npm/v/opencode-gitbutler)](https://www.npmjs.com/package/opencode-gitbutler)
4
4
 
5
- OpenCode plugin for seamless GitButler integration. Automatically manages branches, generates commit messages via LLM, and provides real-time workspace state notifications.
5
+ Stop managing git branches manually and let your AI agents do the heavy lifting with GitButler.
6
+
7
+ ## Why This Plugin?
8
+
9
+ AI agents generate code at a pace that manual version control can't match. Without automation, you end up with massive commits, messy branch organization, and generic messages that make code review a nightmare.
10
+
11
+ This plugin bridges the gap by bringing GitButler's virtual branch power directly into your OpenCode agent sessions.
12
+
13
+ ### What This Plugin Does Differently
14
+
15
+ - Only tool that combines automatic branch creation, LLM commits, file assignment, and context injection.
16
+ - Zero-config setup. Just run `bun add` and add it to your plugins.
17
+ - Works with GitButler virtual branches to avoid worktree overhead.
18
+ - Impersonates Cursor for full GitButler CLI compatibility.
19
+ - Unique multi-agent session mapping.
20
+ - Hunk-level rub guard to skip multi-stack files.
6
21
 
7
22
  ## Installation
8
23
 
24
+ Install the package from npm:
25
+
9
26
  ```bash
10
27
  bun add opencode-gitbutler
11
28
  ```
12
29
 
30
+ Or add it to your plugins array in `.opencode/config.json`:
31
+
32
+ ```json
33
+ {
34
+ "plugins": ["opencode-gitbutler"]
35
+ }
36
+ ```
37
+
13
38
  ## Prerequisites
14
39
 
15
40
  - **GitButler CLI** (`but`) — [Install via Homebrew](https://docs.gitbutler.com/installation)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-gitbutler",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "type": "module",
5
5
  "description": "OpenCode plugin for GitButler integration",
6
6
  "main": "dist/index.js",