polpo-cloud
Polpo Cloud CLI
Install
npm install -g polpo-ai
Authentication
# Login via browser (recommended)
polpo login
# Verify
polpo cloud-status
# Logout
polpo logout
Non-interactive login
For CI/CD, scripts, or when browser login is not available, set the POLPO_API_KEY environment variable before running polpo login. Get your key from polpo.sh → API Keys.
export POLPO_API_KEY="..."
polpo login
Do not hardcode API keys in source code or commit them to version control.
Credentials stored at ~/.polpo/credentials.json.
Deploy Agents
Deploy syncs local .polpo/ config to the cloud project.
# From project root (must have .polpo/ directory)
polpo deploy
This uploads:
- Agent configurations (from
polpo.jsonor.polpo/config.json) - Skills
- Memory
Creates the project automatically on first deploy if none is linked.
Managed AI Gateway
Polpo includes a managed AI gateway with free credits — no LLM key setup needed to get started. Your agents can use any supported model out of the box.
BYOK (Bring Your Own Key)
Optionally set your own LLM provider API keys per project. Keys are AES-256-GCM encrypted at rest.
# Set a key (interactive — prompts securely for the key value)
polpo byok set <provider>
# List keys (masked)
polpo byok list
# Delete a key
polpo byok delete <provider>
Supported providers: openai, anthropic, xai, google, groq, openrouter, cerebras, mistral.
You can also set keys via the dashboard at polpo.sh → LLM Keys. Do not hardcode LLM keys in source code or commit them to version control.
Project Management
# List projects
polpo projects list
# Create a project
polpo projects create my-project
# View cloud project status
polpo cloud-status
Stream Logs
# Stream real-time logs from the project
polpo cloud-logs [--follow] [--tail 50]
Workflow: First Deploy
- Sign up at
polpo.sh - Create a workspace and project (onboarding handles this)
polpo login(opens browser for approval)- Create
.polpo/directory with agent config polpo deploy- Use
POST /v1/chat/completionswithagent: "name"to chat
No LLM keys needed — the managed gateway covers you with free credits.
Dashboard
Available at polpo.sh after signup:
- Overview: project stats
- Agents: view/manage agent configs
- Sessions: chat history with agents
- Skills: installed agent skills
- Memory: project + per-agent memory
- Webhooks: event notification endpoints
- API Keys: manage data plane keys
- LLM Keys: BYOK provider keys (optional)
- Settings: project configuration
API Base URL
- Cloud:
https://api.polpo.sh - Local development:
http://localhost:3890(defaultpolpo startport)
See references/cli-commands.md for the full CLI reference.
More from lumea-labs/polpo-skills
polpo
Build production AI agents with Polpo — the open composable backend for agents with integrated sandbox runtime, tasks and workflows, and AI Gateway. Use this skill whenever working with Polpo projects, .polpo/ directories, agent configuration, tools, memory, vault, teams, tasks, missions, skills, deployments, or the Polpo CLI/API. Triggers on "polpo", "agent", ".polpo/", "polpo.json", "agents.json", "polpo deploy", "polpo create", "polpo link", "polpo install", agent tools, agent memory, agent vault, system prompt design, multi-agent architecture, or any mention of Polpo.
16polpo-react
Build AI agent interfaces with Polpo UI — composable React chat components, CLI tools, and starter templates. Use when the user wants to create a chat app, add chat components, install @polpo-ai/chat, scaffold a Polpo project, configure theming/dark mode, use ChatInput, ChatMessage, ChatSessionList, or any Polpo UI component. Triggers on "polpo ui", "chat UI", "chat component", "@polpo-ai/chat", "@polpo-ai/ui", "create-polpo-app", "chat input", "session list", "agent selector", "chat interface", "polpo chat", "chat widget", "multi-agent".
16polpo-agents
Design and configure AI agents for Polpo — models, tools, identity, memory, vault, and system prompts. Use when the user wants to create an agent, configure agent capabilities, set up agent memory, manage agent credentials (vault), choose models, assign tools, or architect multi-agent systems. Triggers on "polpo agent", "configure agent", "agent design", "agent tools", "agent memory", "agent vault", "system prompt", "agent identity".
10polpo-sdk
Integrate Polpo AI agents into any TypeScript/JavaScript application using @polpo-ai/sdk. Use when the user wants to add AI agent chat, completions API, streaming SSE, session management, memory, webhooks, or any Polpo API integration into their code. Triggers on "polpo", "agent chat", "completions API", "polpo sdk", "@polpo-ai/sdk", "AI agent integration".
9polpo-ui
Build AI agent interfaces with Polpo UI — composable React chat components, CLI tools, and starter templates. Use when the user wants to create a chat app, add chat components, install @polpo-ai/chat, scaffold a Polpo project, configure theming/dark mode, use ChatInput, ChatMessage, ChatSessionList, or any Polpo UI component. Triggers on "polpo ui", "chat UI", "chat component", "@polpo-ai/chat", "@polpo-ai/ui", "create-polpo-app", "chat input", "session list", "agent selector", "chat interface", "polpo chat", "chat widget", "multi-agent".
8