@vicoa/cli 0.1.4 → 1.3.10
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 +36 -11
- package/bin/vicoa.js +1 -1
- package/package.json +4 -5
package/README.md
CHANGED
|
@@ -1,13 +1,22 @@
|
|
|
1
|
-
# Vicoa CLI
|
|
2
|
-
|
|
3
1
|
<div align="center">
|
|
4
2
|
<img src="https://vicoa.ai/images/vicoa-light.webp" alt="Vicoa Logo" width="50" height="50">
|
|
5
|
-
<
|
|
3
|
+
<h1>Vicoa - Vibe Code Anywhere</h1>
|
|
4
|
+
</div>
|
|
5
|
+
|
|
6
|
+
Vicoa is a platform that allows you to run a team of coding agents (Claude Code, Codex, and OpenCode) anywhere, on any device. Remote control your AI agents from your phone or tablet.
|
|
7
|
+
|
|
8
|
+
<div align="center">
|
|
9
|
+
<img src="https://vicoa.ai/images/hero.webp" alt="Vicoa AI Apps">
|
|
6
10
|
</div>
|
|
7
11
|
|
|
8
|
-
|
|
12
|
+
<div align="center">
|
|
13
|
+
<a href="https://vicoa.ai">🌐 Website</a> |
|
|
14
|
+
<a href="https://apps.apple.com/app/id6751626168">📱 iOS App</a> |
|
|
15
|
+
<a href="https://play.google.com/store/apps/details?id=app.vicoa">📱 Android App</a> |
|
|
16
|
+
<a href="https://www.youtube.com/watch?v=iserdZx5yBs">🎥 Demo</a>
|
|
17
|
+
</div>
|
|
9
18
|
|
|
10
|
-
## Installation
|
|
19
|
+
## CLI Installation
|
|
11
20
|
|
|
12
21
|
```bash
|
|
13
22
|
# Run directly with npx
|
|
@@ -15,6 +24,8 @@ npx @vicoa/cli
|
|
|
15
24
|
|
|
16
25
|
# Or install globally
|
|
17
26
|
npm install -g @vicoa/cli
|
|
27
|
+
|
|
28
|
+
# Then run
|
|
18
29
|
vicoa
|
|
19
30
|
```
|
|
20
31
|
|
|
@@ -40,17 +51,31 @@ vicoa --auth
|
|
|
40
51
|
vicoa --version
|
|
41
52
|
```
|
|
42
53
|
|
|
54
|
+
## Key Features
|
|
55
|
+
|
|
56
|
+
- 💻 **Cross-platform vibe coding** - Start on desktop, continue on mobile
|
|
57
|
+
- 📱 **Mobile-first design** - Full coding experience on phones and tablets
|
|
58
|
+
- 🔔 **Smart notifications** - Get alerts when your AI agent needs input
|
|
59
|
+
- 🤖 **Original Vibe Coding Experience** - Vibe coding with normal Claude Code and Codex sessions
|
|
60
|
+
- 🎯 **Seamless workflow** - Pick up exactly where you left off
|
|
61
|
+
|
|
62
|
+
## Demo Video
|
|
63
|
+
|
|
64
|
+
<a href="https://www.youtube.com/watch?v=iserdZx5yBs" target="_blank">
|
|
65
|
+
<img src="https://img.youtube.com/vi/ZBpNzqqLYmg/maxresdefault.jpg" alt="Vicoa Introduction | Demo Video">
|
|
66
|
+
</a>
|
|
67
|
+
|
|
43
68
|
## Requirements
|
|
44
69
|
|
|
45
70
|
- Node.js 16+
|
|
46
|
-
- macOS, Linux, or Windows (x64)
|
|
71
|
+
- macOS (Apple Silicon), Linux (x64), or Windows (x64)
|
|
47
72
|
|
|
48
|
-
##
|
|
73
|
+
## Connect With Us
|
|
49
74
|
|
|
50
|
-
-
|
|
51
|
-
- [
|
|
52
|
-
- [
|
|
53
|
-
- [
|
|
75
|
+
- 📧 **Email**: hi@vicoa.ai
|
|
76
|
+
- 🐦 **Twitter**: [@vicoaai](https://x.com/vicoaai)
|
|
77
|
+
- 💼 **LinkedIn**: [Vicoa](https://linkedin.com/company/vicoa)
|
|
78
|
+
- 🌐 **Website**: [vicoa.ai](https://vicoa.ai)
|
|
54
79
|
|
|
55
80
|
## License
|
|
56
81
|
|
package/bin/vicoa.js
CHANGED
|
@@ -6,7 +6,7 @@ const path = require("path");
|
|
|
6
6
|
|
|
7
7
|
const PLATFORM_PACKAGES = {
|
|
8
8
|
"darwin-arm64": "@vicoa/cli-darwin-arm64",
|
|
9
|
-
"darwin-x64":
|
|
9
|
+
// "darwin-x64": "@vicoa/cli-darwin-x64", // macos-13 runners are scarce
|
|
10
10
|
"linux-x64": "@vicoa/cli-linux-x64",
|
|
11
11
|
"win32-x64": "@vicoa/cli-win32-x64",
|
|
12
12
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vicoa/cli",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "1.3.10",
|
|
4
4
|
"description": "Vicoa CLI - Run AI coding agents anywhere",
|
|
5
5
|
"bin": {
|
|
6
6
|
"vicoa": "bin/vicoa.js"
|
|
@@ -10,10 +10,9 @@
|
|
|
10
10
|
"README.md"
|
|
11
11
|
],
|
|
12
12
|
"optionalDependencies": {
|
|
13
|
-
"@vicoa/cli-darwin-arm64": "npm:@vicoa/cli@
|
|
14
|
-
"@vicoa/cli-
|
|
15
|
-
"@vicoa/cli-
|
|
16
|
-
"@vicoa/cli-win32-x64": "npm:@vicoa/cli@0.1.4-win32-x64"
|
|
13
|
+
"@vicoa/cli-darwin-arm64": "npm:@vicoa/cli@1.3.10-darwin-arm64",
|
|
14
|
+
"@vicoa/cli-linux-x64": "npm:@vicoa/cli@1.3.10-linux-x64",
|
|
15
|
+
"@vicoa/cli-win32-x64": "npm:@vicoa/cli@1.3.10-win32-x64"
|
|
17
16
|
},
|
|
18
17
|
"license": "Apache-2.0",
|
|
19
18
|
"engines": {
|