arcana-ai 0.2.4 → 0.2.8
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/bin/arcana.js +2 -2
- package/package.json +28 -28
package/bin/arcana.js
CHANGED
|
@@ -10,7 +10,7 @@ const crypto = require("crypto")
|
|
|
10
10
|
const os = require("os")
|
|
11
11
|
|
|
12
12
|
const REPO = "Lento47/arcana"
|
|
13
|
-
const VERSION = "v0.2.
|
|
13
|
+
const VERSION = "v0.2.7"
|
|
14
14
|
|
|
15
15
|
const PLATFORM_MAP = {
|
|
16
16
|
"win32-x64": { asset: "arcana-windows-x64.zip", binary: "arcana.exe" },
|
|
@@ -127,7 +127,7 @@ async function main() {
|
|
|
127
127
|
process.exit(child.status ?? 0)
|
|
128
128
|
}
|
|
129
129
|
|
|
130
|
-
main().
|
|
130
|
+
main().then((code) => process.exit(code), (err) => {
|
|
131
131
|
console.error(`arcana: ${err.message}`)
|
|
132
132
|
process.exit(1)
|
|
133
133
|
})
|
package/package.json
CHANGED
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "arcana-ai",
|
|
3
|
-
"version": "0.2.
|
|
4
|
-
"description": "Self-improving AI agent CLI — opencode TUI + skills. Installs the arcana binary.",
|
|
5
|
-
"bin": {
|
|
6
|
-
"arcana": "./bin/arcana.js"
|
|
7
|
-
},
|
|
8
|
-
"files": [
|
|
9
|
-
"bin/arcana.js",
|
|
10
|
-
"README.md"
|
|
11
|
-
],
|
|
12
|
-
"repository": "github:Lento47/arcana",
|
|
13
|
-
"homepage": "https://github.com/Lento47/arcana",
|
|
14
|
-
"keywords": [
|
|
15
|
-
"ai",
|
|
16
|
-
"agent",
|
|
17
|
-
"cli",
|
|
18
|
-
"tui",
|
|
19
|
-
"opencode",
|
|
20
|
-
"arcana",
|
|
21
|
-
"llm",
|
|
22
|
-
"coding-assistant"
|
|
23
|
-
],
|
|
24
|
-
"license": "MIT",
|
|
25
|
-
"engines": {
|
|
26
|
-
"node": ">=18"
|
|
27
|
-
}
|
|
28
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "arcana-ai",
|
|
3
|
+
"version": "0.2.8",
|
|
4
|
+
"description": "Self-improving AI agent CLI — opencode TUI + skills. Installs the arcana binary.",
|
|
5
|
+
"bin": {
|
|
6
|
+
"arcana": "./bin/arcana.js"
|
|
7
|
+
},
|
|
8
|
+
"files": [
|
|
9
|
+
"bin/arcana.js",
|
|
10
|
+
"README.md"
|
|
11
|
+
],
|
|
12
|
+
"repository": "github:Lento47/arcana",
|
|
13
|
+
"homepage": "https://github.com/Lento47/arcana",
|
|
14
|
+
"keywords": [
|
|
15
|
+
"ai",
|
|
16
|
+
"agent",
|
|
17
|
+
"cli",
|
|
18
|
+
"tui",
|
|
19
|
+
"opencode",
|
|
20
|
+
"arcana",
|
|
21
|
+
"llm",
|
|
22
|
+
"coding-assistant"
|
|
23
|
+
],
|
|
24
|
+
"license": "MIT",
|
|
25
|
+
"engines": {
|
|
26
|
+
"node": ">=18"
|
|
27
|
+
}
|
|
28
|
+
}
|