opencode-claude-cli 0.0.2 → 0.1.0

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 +5 -1
  2. package/package.json +1 -8
package/README.md CHANGED
@@ -10,7 +10,9 @@ Use OpenCode with Claude Code as a provider.
10
10
  npm install -g opencode-claude-cli
11
11
  ```
12
12
 
13
- Add the plugin to your OpenCode config:
13
+ ## Configure
14
+
15
+ `~/.config/opencode/opencode.json`
14
16
 
15
17
  ```json
16
18
  {
@@ -47,6 +49,7 @@ Add the plugin to your OpenCode config:
47
49
  - Image and PDF uploads are forwarded to Claude Code.
48
50
  - Claude tool activity is shown in OpenCode as display-only transcript text.
49
51
  - Multiple Claude Code sessions can run concurrently because OpenCode sessions are mapped independently.
52
+ - `/fork` and `/export` work as expected with claude code models.
50
53
 
51
54
  ## Limitations
52
55
 
@@ -55,6 +58,7 @@ Add the plugin to your OpenCode config:
55
58
  - **Tool execution is Claude-side**: OpenCode built-in tool execution, permission prompts, and tool UI are not the source of truth for Claude Code requests.
56
59
  - **Tool rendering is approximate**: Tool activity is displayed as text in OpenCode, it is not rendered as native OpenCode tool execution events.
57
60
  - **Custom modes are not mapped**: OpenCode custom modes are not mapped to Claude Code.
61
+ - **Claude Code slash-command compatibility is partial**: Some `/` commands may not work as exepected.
58
62
 
59
63
  ## Permission behavior
60
64
 
package/package.json CHANGED
@@ -1,14 +1,7 @@
1
1
  {
2
2
  "name": "opencode-claude-cli",
3
- "version": "0.0.2",
3
+ "version": "0.1.0",
4
4
  "description": "OpenCode plugin that uses the local Claude Code CLI as a provider",
5
- "keywords": [
6
- "opencode",
7
- "plugin",
8
- "claude",
9
- "claude-code",
10
- "cli"
11
- ],
12
5
  "type": "module",
13
6
  "main": "./dist/index.js",
14
7
  "types": "./dist/index.d.ts",