@vicoa/cli 0.1.2 → 0.1.3-darwin-arm64
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/vicoa +0 -0
- package/package.json +10 -17
- package/README.md +0 -57
- package/bin/vicoa.js +0 -38
package/bin/vicoa
ADDED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,22 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vicoa/cli",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "Vicoa CLI -
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
|
|
3
|
+
"version": "0.1.3-darwin-arm64",
|
|
4
|
+
"description": "Vicoa CLI - darwin arm64 binary",
|
|
5
|
+
"os": [
|
|
6
|
+
"darwin"
|
|
7
|
+
],
|
|
8
|
+
"cpu": [
|
|
9
|
+
"arm64"
|
|
10
|
+
],
|
|
8
11
|
"files": [
|
|
9
|
-
"bin/vicoa
|
|
10
|
-
"README.md"
|
|
12
|
+
"bin/vicoa"
|
|
11
13
|
],
|
|
12
|
-
"
|
|
13
|
-
"@vicoa/cli-darwin-arm64": "npm:@vicoa/cli@0.1.2-darwin-arm64",
|
|
14
|
-
"@vicoa/cli-darwin-x64": "npm:@vicoa/cli@0.1.2-darwin-x64",
|
|
15
|
-
"@vicoa/cli-linux-x64": "npm:@vicoa/cli@0.1.2-linux-x64",
|
|
16
|
-
"@vicoa/cli-win32-x64": "npm:@vicoa/cli@0.1.2-win32-x64"
|
|
17
|
-
},
|
|
18
|
-
"license": "Apache-2.0",
|
|
19
|
-
"engines": {
|
|
20
|
-
"node": ">=16"
|
|
21
|
-
}
|
|
14
|
+
"license": "Apache-2.0"
|
|
22
15
|
}
|
package/README.md
DELETED
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
# Vicoa CLI
|
|
2
|
-
|
|
3
|
-
<div align="center">
|
|
4
|
-
<img src="https://vicoa.ai/images/vicoa-light.webp" alt="Vicoa Logo" width="50" height="50">
|
|
5
|
-
<h3>Vibe Code Anywhere</h3>
|
|
6
|
-
</div>
|
|
7
|
-
|
|
8
|
-
Vicoa lets you run AI coding agents (Claude Code, Codex, OpenCode) anywhere, on any device. Remote control your agents from your phone or tablet.
|
|
9
|
-
|
|
10
|
-
## Installation
|
|
11
|
-
|
|
12
|
-
```bash
|
|
13
|
-
# Run directly with npx
|
|
14
|
-
npx @vicoa/cli
|
|
15
|
-
|
|
16
|
-
# Or install globally
|
|
17
|
-
npm install -g @vicoa/cli
|
|
18
|
-
vicoa
|
|
19
|
-
```
|
|
20
|
-
|
|
21
|
-
## Usage
|
|
22
|
-
|
|
23
|
-
```bash
|
|
24
|
-
# Start Claude Code
|
|
25
|
-
vicoa
|
|
26
|
-
|
|
27
|
-
# Start Codex
|
|
28
|
-
vicoa codex
|
|
29
|
-
|
|
30
|
-
# Start OpenCode
|
|
31
|
-
vicoa opencode
|
|
32
|
-
|
|
33
|
-
# Run headless (controlled via web dashboard)
|
|
34
|
-
vicoa headless
|
|
35
|
-
|
|
36
|
-
# Authenticate
|
|
37
|
-
vicoa --auth
|
|
38
|
-
|
|
39
|
-
# Show version
|
|
40
|
-
vicoa --version
|
|
41
|
-
```
|
|
42
|
-
|
|
43
|
-
## Requirements
|
|
44
|
-
|
|
45
|
-
- Node.js 16+
|
|
46
|
-
- macOS, Linux, or Windows (x64)
|
|
47
|
-
|
|
48
|
-
## Links
|
|
49
|
-
|
|
50
|
-
- [Website](https://vicoa.ai)
|
|
51
|
-
- [iOS App](https://apps.apple.com/app/id6751626168)
|
|
52
|
-
- [Android App](https://play.google.com/store/apps/details?id=app.vicoa)
|
|
53
|
-
- [Documentation](https://vicoa.ai/docs)
|
|
54
|
-
|
|
55
|
-
## License
|
|
56
|
-
|
|
57
|
-
Apache 2.0
|
package/bin/vicoa.js
DELETED
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
"use strict";
|
|
3
|
-
|
|
4
|
-
const { execFileSync } = require("child_process");
|
|
5
|
-
const path = require("path");
|
|
6
|
-
|
|
7
|
-
const PLATFORM_PACKAGES = {
|
|
8
|
-
"darwin-arm64": "@vicoa/cli-darwin-arm64",
|
|
9
|
-
"darwin-x64": "@vicoa/cli-darwin-x64",
|
|
10
|
-
"linux-x64": "@vicoa/cli-linux-x64",
|
|
11
|
-
"win32-x64": "@vicoa/cli-win32-x64",
|
|
12
|
-
};
|
|
13
|
-
|
|
14
|
-
const key = `${process.platform}-${process.arch}`;
|
|
15
|
-
const alias = PLATFORM_PACKAGES[key];
|
|
16
|
-
|
|
17
|
-
if (!alias) {
|
|
18
|
-
console.error(`Unsupported platform: ${key}`);
|
|
19
|
-
process.exit(1);
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
let pkgDir;
|
|
23
|
-
try {
|
|
24
|
-
pkgDir = path.dirname(require.resolve(`${alias}/package.json`));
|
|
25
|
-
} catch {
|
|
26
|
-
console.error(`Platform package for ${key} is not installed.`);
|
|
27
|
-
console.error(`Try reinstalling: npm install -g @vicoa/cli`);
|
|
28
|
-
process.exit(1);
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
const isWindows = process.platform === "win32";
|
|
32
|
-
const binary = path.join(pkgDir, "bin", isWindows ? "vicoa.exe" : "vicoa");
|
|
33
|
-
|
|
34
|
-
try {
|
|
35
|
-
execFileSync(binary, process.argv.slice(2), { stdio: "inherit" });
|
|
36
|
-
} catch (err) {
|
|
37
|
-
process.exit(err.status ?? 1);
|
|
38
|
-
}
|