@codemieai/codemie-opencode 0.0.40 → 0.0.42
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 +30 -0
- package/package.json +18 -12
package/README.md
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# @codemieai/codemie-opencode
|
|
2
|
+
|
|
3
|
+
AI coding agent for [Codemie Code](https://github.com/codemie-ai/codemie-opencode).
|
|
4
|
+
|
|
5
|
+
## How it works
|
|
6
|
+
|
|
7
|
+
This is a wrapper package that automatically installs the correct platform-specific binary for your OS and architecture. You don't need to install platform packages directly.
|
|
8
|
+
|
|
9
|
+
## Supported platforms
|
|
10
|
+
|
|
11
|
+
| OS | Architecture |
|
|
12
|
+
| ------- | ------------ |
|
|
13
|
+
| macOS | arm64 |
|
|
14
|
+
| macOS | x64 |
|
|
15
|
+
| Linux | arm64 |
|
|
16
|
+
| Linux | x64 |
|
|
17
|
+
| Linux | x64 (musl) |
|
|
18
|
+
| Windows | x64 |
|
|
19
|
+
|
|
20
|
+
## Part of the @codemieai/code ecosystem
|
|
21
|
+
|
|
22
|
+
This package is a component of the [`@codemieai/code`](https://www.npmjs.com/package/@codemieai/code) CLI. It is installed automatically as a dependency — you typically don't need to install it yourself.
|
|
23
|
+
|
|
24
|
+
## Links
|
|
25
|
+
|
|
26
|
+
- [GitHub](https://github.com/codemie-ai/codemie-opencode)
|
|
27
|
+
|
|
28
|
+
## License
|
|
29
|
+
|
|
30
|
+
Apache-2.0
|
package/package.json
CHANGED
|
@@ -1,24 +1,30 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codemieai/codemie-opencode",
|
|
3
|
+
"description": "Codemie Code AI coding agent — platform wrapper",
|
|
3
4
|
"bin": {
|
|
4
5
|
"codemie": "./bin/codemie"
|
|
5
6
|
},
|
|
6
7
|
"scripts": {
|
|
7
8
|
"postinstall": "bun ./postinstall.mjs || node ./postinstall.mjs"
|
|
8
9
|
},
|
|
9
|
-
"version": "0.0.
|
|
10
|
+
"version": "0.0.42",
|
|
10
11
|
"license": "Apache-2.0",
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "https://github.com/codemie-ai/codemie-opencode"
|
|
15
|
+
},
|
|
16
|
+
"homepage": "https://github.com/codemie-ai/codemie-opencode",
|
|
11
17
|
"optionalDependencies": {
|
|
12
|
-
"@codemieai/codemie-opencode-darwin-x64-baseline": "0.0.
|
|
13
|
-
"@codemieai/codemie-opencode-darwin-x64": "0.0.
|
|
14
|
-
"@codemieai/codemie-opencode-windows-x64": "0.0.
|
|
15
|
-
"@codemieai/codemie-opencode-linux-x64-musl": "0.0.
|
|
16
|
-
"@codemieai/codemie-opencode-linux-x64-baseline-musl": "0.0.
|
|
17
|
-
"@codemieai/codemie-opencode-linux-arm64": "0.0.
|
|
18
|
-
"@codemieai/codemie-opencode-linux-x64-baseline": "0.0.
|
|
19
|
-
"@codemieai/codemie-opencode-linux-arm64-musl": "0.0.
|
|
20
|
-
"@codemieai/codemie-opencode-linux-x64": "0.0.
|
|
21
|
-
"@codemieai/codemie-opencode-darwin-arm64": "0.0.
|
|
22
|
-
"@codemieai/codemie-opencode-windows-x64-baseline": "0.0.
|
|
18
|
+
"@codemieai/codemie-opencode-darwin-x64-baseline": "0.0.42",
|
|
19
|
+
"@codemieai/codemie-opencode-darwin-x64": "0.0.42",
|
|
20
|
+
"@codemieai/codemie-opencode-windows-x64": "0.0.42",
|
|
21
|
+
"@codemieai/codemie-opencode-linux-x64-musl": "0.0.42",
|
|
22
|
+
"@codemieai/codemie-opencode-linux-x64-baseline-musl": "0.0.42",
|
|
23
|
+
"@codemieai/codemie-opencode-linux-arm64": "0.0.42",
|
|
24
|
+
"@codemieai/codemie-opencode-linux-x64-baseline": "0.0.42",
|
|
25
|
+
"@codemieai/codemie-opencode-linux-arm64-musl": "0.0.42",
|
|
26
|
+
"@codemieai/codemie-opencode-linux-x64": "0.0.42",
|
|
27
|
+
"@codemieai/codemie-opencode-darwin-arm64": "0.0.42",
|
|
28
|
+
"@codemieai/codemie-opencode-windows-x64-baseline": "0.0.42"
|
|
23
29
|
}
|
|
24
30
|
}
|