seacloud cli · v0.1.11

seacloud,
from the command line.

Auth, model execution, and skill management — a growing SDK built for agents and the pipelines that run them.

npm
npm install -g @seacloud/cli
Also available viaHomebrew·Scoop·direct binary
99%
Uptime SLA
Production-grade reliability
50+
Global Regions
Global infrastructure coverage
100K+
AI Models
Available model ecosystem
70%
Cost Savings
Optimized for developers

Interactive Demo

See the CLI
in action.

Real commands, real output. Click any tab to explore workflows end-to-end.

seacloud - run
LIVE
1
seacloud@~/projects (main) $ seacloud run see_dance_v2_0 --param prompt="dancer in neon rain" --output url
3
* Submitting task to see_dance_v2_0 ...
4
Task ID: tsk_a9f23d18c4b7e601
6
Generating | elapsed 0:23
Progress100%
9
[done] Generation complete
11
Output URL:
12
https://cdn.seacloud.ai/output/tsk_a9f23d18c4b7e601.mp4
14
seacloud@~/projects $ _

Capabilities

One CLI.
Every modality.

Instant Generation

Submit prompts and stream results directly in your terminal. No browser tab switching, no GUI friction.

>
seacloud run kirin_v2_6_i2v --param image=./frame.jpg

Model Discovery

Browse 20+ AI models by type, search by keyword, and inspect full parameter specs before running.

>
seacloud models list --type video --output id

Task Management

Track any generation task by ID. Poll status, retrieve output URLs, and pipe results into your workflow.

>
seacloud task status <id> --output json

SkillHub Integration

Install AI agent skills from the SkillHub marketplace. Auto-detects Claude Code, Cursor, and Codex targets.

>
seacloud skills add <slug> --global

Secure Auth

OAuth2 browser flow for interactive sessions. Environment variable tokens for CI/CD pipelines.

>
seacloud_token=xxx seacloud run ...

Dry Run Mode

Preview exactly what would be sent to the API without making any requests. Safe for testing and debugging.

>
seacloud run <model> --dry-run ...

Workflow

From prompt to output in four steps.

The complete process from authentication to result retrieval.

01

Authenticate

One-time login. Token is stored locally and reused across sessions.

$seacloud auth login
02

Pick a Model

Browse models by type, inspect parameters, and know exactly what you are running.

$seacloud models list
03

Generate

Submit your prompt and watch the generation happen live in your terminal.

$seacloud run <model>
04

Retrieve & Pipe

Get output URLs, pipe JSON downstream, and integrate with any automation.

$seacloud task status <id>

Command Reference

Every command, clearly documented.

Click any command to see subcommands, flags, and runnable examples.

seacloud auth

Manage authentication with your seacloud.ai account.

Syntax
$ seacloud auth <subcommand>
Subcommands
seacloud auth loginLog in via browser OAuth2. Stores credentials locally.
seacloud auth logoutRevoke credentials and remove local token.
seacloud auth statusDisplay current state, account tier, and credits.
Examples
Interactive login
$ seacloud auth login
Token via environment variable
$ seacloud_token=${SECRET_TOKEN} seacloud run ...

CI/CD Integration

Built for automation.

Use environment variable tokens for headless authentication in pipelines. The --output json flag makes every command scriptable.

Secure Auth

OAuth2 browser flow for interactive sessions, plus environment tokens for CI/CD.

JSON First

Every command supports --output json, so jobs can pipe to jq or downstream systems.

Standard Exits

Exit code 0 means success and 1 means error. It behaves like a normal POSIX tool.

github-actions - ci.yml
LIVE
1
name: Generate Marketing Video
3
on
4
push
5
branches: [main]
7
jobs
8
generate
9
runs-on: ubuntu-latest
10
steps
11
- uses: actions/checkout@v4
13
- name: Install seacloud CLI
14
run: npm install -g @seacloudai/seacloud-cli
16
- name: Generate video
17
env
18
SEACLOUD_TOKEN: ${{ secrets.SEACLOUD_TOKEN }}
19
run: |
20
VIDEO_URL=$(seacloud run see_dance_v2_0 \
21
--param prompt="product launch" \
22
--output url)

Ready to Build?

Generate anything.
From the terminal.

Start building with multimodal AI today. No credit card required.