Guides
By AnyCap Team
Install AnyCap
One skill, one CLI, one login
This guide is the canonical install path for AnyCap on the main site. It covers the agent skill, CLI install, authentication, verification, and the first capability command.
Last updated June 1, 2026
Before you start
- An AI agent that can run shell commands (Claude Code, Cursor, Codex, or similar)
- Node.js 18+ for skills.sh and npm installs
- A browser for the one-time login flow
- A terminal session where you can paste commands or ask the agent to run them
Install in five steps
Step 1
Install the AnyCap skill for your agent
npx -y skills add anycap-ai/anycap -a claude-code -yUse claude-code, cursor, or codex as the agent target. The skill teaches your agent how to install, authenticate, and call AnyCap without guessing from docs.
Step 2
Install the AnyCap CLI
curl -fsSL https://anycap.ai/install.sh | shOr run npm install -g @anycap/cli if you prefer a package-manager install path. The CLI is the execution surface for every capability.
Step 3
Log in once
anycap loginAuthentication happens once in the browser and covers image, video, vision, search, storage, and publishing workflows.
Step 4
Verify the install
anycap statusConfirm the CLI is authenticated and can reach the AnyCap server before you run your first generation command.
Step 5
Run your first capability command
anycap image generate --prompt "A minimal product icon on a soft green background"Swap image for video, actions image-read, or web search once you know which capability gap you are closing first.
Verify everything works
After login, run a quick status check and list available models before your first generation job.
anycap statusanycap image modelsanycap video modelsAgent-specific install commands
npx -y skills add anycap-ai/anycap -a claude-code -yBest default when Claude Code is your primary coding agent and you want the deepest capability onboarding path.
npx -y skills add anycap-ai/anycap -a cursor -yUse this when your workflows already live inside Cursor and you want the same capability layer there.
npx -y skills add anycap-ai/anycap -a codex -yGood fit when you want image, video, and vision commands inside Codex without wiring provider SDKs by hand.
Install FAQ
How do I install AnyCap CLI?
Run curl -fsSL https://anycap.ai/install.sh | sh or npm install -g @anycap/cli, then run anycap login. Add the AnyCap skill to your agent so setup can happen in natural language.
Does AnyCap work with Claude Code and Cursor?
Yes. Install the AnyCap skill for claude-code, cursor, or codex. The same CLI and auth flow work across supported agent environments.
Do I need a separate login for each capability?
No. One anycap login covers image generation, video generation, vision, web search, Drive storage, and Page publishing.
What command should I run first after install?
Run anycap status to verify auth, then anycap image models or anycap video models to see what is available before your first generation request.