opencode-ask-github 0.1.0 → 0.1.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.
- package/README.md +10 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -11,11 +11,19 @@ GitHub repository management plugin for OpenCode. Automatically clones repositor
|
|
|
11
11
|
|
|
12
12
|
## Installation
|
|
13
13
|
|
|
14
|
-
|
|
14
|
+
Install via npm/bun:
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
bunx opencode-ask-github
|
|
18
|
+
# or
|
|
19
|
+
npx opencode-ask-github
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
Or add manually to your OpenCode configuration (`~/.config/opencode/config.json`):
|
|
15
23
|
|
|
16
24
|
```json
|
|
17
25
|
{
|
|
18
|
-
"plugins": ["
|
|
26
|
+
"plugins": ["opencode-ask-github"]
|
|
19
27
|
}
|
|
20
28
|
```
|
|
21
29
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-ask-github",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "GitHub repository management plugin for OpenCode - auto-clone repos and analyze with AI",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -46,4 +46,4 @@
|
|
|
46
46
|
"peerDependencies": {
|
|
47
47
|
"@opencode-ai/plugin": ">=1.0.0"
|
|
48
48
|
}
|
|
49
|
-
}
|
|
49
|
+
}
|