by vicoa-ai
Vicoa is the ADE for running a team of coding agents from any device. Desktop, mobile, VPS, open-source, self-hostable.
Unlocks once the catalog security scan passes (runs nightly).
⚠️ Third-Party Software Notice
This skill is third-party open-source software developed and hosted independently on GitHub. SkillsLLM is an informational directory and does not control or maintain the underlying repository.
Any security checks, ratings, or warnings displayed by SkillsLLM are automated and limited in scope. They do not constitute a security certification or guarantee that the software is safe, error-free, or free from malicious code, vulnerabilities, compromised dependencies, or prompt-injection risks.
Review the source code, permissions, dependencies, and configuration before installing or running any third-party skill. Use is at your own risk. To the maximum extent permitted by applicable law, SkillsLLM is not liable for losses arising from third-party software.
The deep catalog scan for this skill is still queued. Run an instant dependency check now instead.
# Add to your Claude Code skills
git clone https://github.com/vicoa-ai/vicoaGuides for using ai agents skills like vicoa.
English | 简体中文
Vicoa is an open-source AI orchestrator for running a team of coding agents from any device.
Claude Code, Codex, Cursor, Kimi, and more
The session you started on your laptop, in your pocket.
Download Vicoa Desktop for macOS, Windows, or Linux. It connects the computer it runs on and detects installed agents.
The one prerequisite: the machine that runs agents needs at least one supported agent CLI installed and signed in.
Prefer the terminal?
npm i -g @vicoa/cli # Node.js 18+; on Intel Macs or old glibc, use: pip install vicoa
vicoa # start a session, or `vicoa daemon` to just connect this machine
1. Install and sign in. Open Vicoa Desktop and sign in.
2. Start some agents. Click New Session, pick the machine, the agent, and enter your first prompt.
3. Steer from your phone. Install the Vicoa mobile app and sign in with the same account — running sessions sync automatically.
Full walkthrough: Set up Vicoa · Start a remote session
Vicoa launches the agent harness and CLIs you already have installed and authenticated, on your machine, with your credentials.
| Agent | CLI | Agent | CLI |
|---|---|---|---|
| Claude Code | claude |
Cursor | cursor-agent |
| Codex | codex |
GitHub Copilot | copilot |
| OpenCode | opencode |
Kimi | kimi |
| Gemini | gemini |
Hermes | hermes |
Claude Code and Codex have native integrations; the rest connect over the Agent Client Protocol (ACP).
This is Vicoa, open source: the complete, self-hostable stack:
Vicoa is BYO-key: you bring your own agent and model subscriptions or API keys
Run the whole stack yourself with Docker:
cp .env.example .env # passwords and public URLs
./backend/scripts/generate-jwt-keys.sh selfhost/keys
docker compose -f docker-compose.selfhost.yml up -d
The full walkthrough is in SELF_HOSTING.md.
Web · Desktop (macOS/Windows) · iOS · Android · CLI
│
▼
┌──────────────┐ ┌────────────────┐ ┌──────────────────┐
│ Next.js │──>│ FastAPI │──>│ PostgreSQL │
│ dashboard │<──│ backend + WS │<──│ │
└──────────────┘ └───────┬────────┘ └──────────────────┘
│ sessions and messages over WebSocket
┌───────┴───────┐
│ vicoa daemon │ runs on your machine, next to your code
└───────┬───────┘
│ spawns
┌───────┴─────────────────────────────────┐
│ Claude Code · Codex · OpenCode · Gemini │
│ Cursor · Copilot · Kimi · Hermes │
└─────────────────────────────────────────┘
| Layer | Stack |
|---|---|
| Web | Next.js 15 + React 19, shadcn/ui, Fumadocs for the docs |
| Desktop | Electron, running the web UI and supervising a bundled daemon |
| Mobile | Flutter (iOS / Android) |
| Backend | Python 3.10+ / FastAPI: a user-facing REST API, plus an agent-facing REST + WebSocket server |
| Database | PostgreSQL via SQLAlchemy and Alembic |
| Agent runtime | The local vicoa daemon, spawning any of the agent CLIs above |
Start with the Contributing.md.
Quick repository layout:
vicoa/
├── backend/ # Python: FastAPI backend + REST servers + CLI & daemon
│ └── vicoa/ # the `vicoa` CLI and the local daemon
├── apps/
│ ├── web/ # Next.js dashboard (also the desktop renderer) + docs
│ ├── desktop/ # Electron desktop app
│ └── mobile/ # Flutter app (iOS / Android)
Common commands:
# backend, CLI and daemon (Python)
cd backend
make dev-install
./dev-start.sh
make lint && make test
# web and docs (Next.js)
cd apps/web && pnpm install && pnpm dev
# desktop app (Electron); see apps/desktop/README.md
cd apps/d
vicoa is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by vicoa-ai. Vicoa is the ADE for running a team of coding agents from any device. Desktop, mobile, VPS, open-source, self-hostable. It has 55 GitHub stars.
vicoa's catalog security scan is still queued. You can run an instant dependency and prompt-injection check now with the "Scan for vulnerabilities" button above.
Clone the repository with "git clone https://github.com/vicoa-ai/vicoa" and add it to your Claude Code skills directory (see the Installation section above).
vicoa is primarily written in Python. It is open-source under vicoa-ai on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh vicoa against similar tools.
No comments yet. Be the first to share your thoughts!