@atlascloudai/opencode 1.0.0 → 1.0.1
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 +4 -4
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -7,15 +7,15 @@ An [OpenCode](https://opencode.ai) plugin that integrates [Atlas Cloud's](https:
|
|
|
7
7
|
### 1. Install and register the plugin
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
npx @
|
|
10
|
+
npx @atlascloudai/opencode
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
This downloads the plugin and registers it with OpenCode.
|
|
14
14
|
|
|
15
15
|
**Alternative: Global install**
|
|
16
16
|
```bash
|
|
17
|
-
npm install -g @
|
|
18
|
-
|
|
17
|
+
npm install -g @atlascloudai/opencode
|
|
18
|
+
atlascloudai-opencode
|
|
19
19
|
```
|
|
20
20
|
|
|
21
21
|
### 3. Start OpenCode and connect
|
|
@@ -148,7 +148,7 @@ opencode # Start OpenCode
|
|
|
148
148
|
|
|
149
149
|
### Plugin not loading
|
|
150
150
|
|
|
151
|
-
1. Run `npx @
|
|
151
|
+
1. Run `npx @atlascloudai/opencode` to re-register
|
|
152
152
|
2. Check `~/.config/opencode/opencode.json` has the plugin listed
|
|
153
153
|
|
|
154
154
|
### Debug mode
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlascloudai/opencode",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "OpenCode plugin for Atlas Cloud - Access 100+ AI models including GPT-4o, Claude, Gemini, DeepSeek via OpenAI-compatible API",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"bin": {
|
|
9
|
-
"
|
|
9
|
+
"atlascloudai-opencode": "./bin/setup.cjs"
|
|
10
10
|
},
|
|
11
11
|
"scripts": {
|
|
12
12
|
"build": "tsc",
|