Platform CLI (ul cloud)
SkillDatabases & dataUse when operating Ultralytics Platform from a terminal or script with the ul CLI (ul cloud RESOURCE OPERATION key=value, PyPI package ultralytics-platform), listing, creating, updating, cloning, or moving projects, datasets, and models, starting and monitoring cloud training runs, downloading weights, exports, deployments, uploads, trash and restore, and storage integrations. For the Platform web UI or local yolo commands, see yolo; for choosing what to train and how to improve it, see yolo-training and yolo-tuning.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Platform CLI (ul cloud) skill
What this skill tells your AI
The instructions your AI receives, as published by ultralytics/skills in skills/platform-cli/SKILL.md and read by ahel’s review.
ul needs Python 3.11+ and comes with pip install ultralytics or
pip install ultralytics-platform. ul cloud calls the Platform API through the generated
SDK; ul login, ul train, ul predict, and the other local commands delegate to the
ultralytics package. This skill covers Platform operations, not model selection or
hyperparameter tuning.
pip install ultralytics # or `pip install ultralytics-platform`
export ULTRALYTICS_API_KEY="YOUR_API_KEY" # or `ul login API_KEY`
ul cloud --help # every resource and operation
ul cloud training start --help # one operation's arguments, types, and choices
Endpoint semantics are documented in the Platform API reference.
Canonical command shapes
ul cloud account summary # plan, credits, counts; `username` is your workspace
ul cloud datasets list # omit owner= for your own workspace; owner=TEAM for a team
ul cloud projects create project=helmets name="Helmet Detection" visibility=private
ul cloud models create body='{"owner":"WS","project":"helmets","model":"exp1","name":"Experiment 1"}'
ul cloud training start model_id=MODEL_ID gpu_type=l4 \
train_args='{"model":"yolo26n.pt","data":"ul://WS/datasets/helmets","epochs":50}'
ul cloud models training project=helmets model=exp1 # live status, epoch progress, metrics
ul cloud models files project=helmets model=exp1 # short-lived weights download URL
Argument rules:
- Arguments are SDK Python names as
key=value(gpu_type,project_id), never--key value. A bare boolean meanstrue. Quote JSON for the shell. - An operation takes one
body=JSON object exactly when its help listsbody (dict[str, Any]). These are the operations whose API request is a union of shapes:models create,deployments update,images update,lifecycle delete-trash,datasets ingest,upload signed-url,storage-integrations create/discover, andmodels predict/deployments predict. Every other operation takes flat fields; nested objects such astrain_args,metadata, andargsare still JSON values. - Object and array values accept
@file.jsonor@-for stdin. Multipart binaries such as the predictfilefield accept@pathonly. - Help shows only
body (dict[str, Any])for union bodies. Read that request schema from the production contract instead of guessing or loading the whole file:
curl -s https://platform.ultralytics.com/openapi.json | python3 -c \
"import json,sys; print(json.dumps(json.load(sys.stdin)['paths']['/api/models']['post']['requestBody'], indent=1))"
Behavior rules:
- Output is the complete API response on stdout, printed as JSON, text, or bytes according
to its content type. Download operations return signed URLs, not bytes:
datasets export,datasets create-export,models files, and a completedexports retrievereturn URLs that expire. Preserve them verbatim and fetch them separately. - Failures go to stderr: exit 1 for API/connection errors, 2 for argument/file errors, 130
when interrupted. Interrupting does not cancel a submitted job; use its cancel operation
(
models delete-training,exports delete,datasets delete-batch). - There is no
--json,--fields,--dry-run, or automatic pagination.listoperations take onlylimit=(raise it once to its maximum). Operations that page exposepage,offset,cursor, orpage_tokenin their help; the CLI never fetches the next page, so keep requesting until the response reports no more. - An omitted path
ownerdefaults to the logged-in username after one account lookup. Passowner=TEAMfor team workspaces. Account, billing, trash, storage-integration, and Roboflow commands act on the credential's own account, andaccount summarydoes not list teams for API keys. - Display names, URL slugs, database IDs, and URIs are distinct. Training data is
ul://OWNER/datasets/DATASET; starting weights are a checkpoint name orul://OWNER/PROJECT/MODEL. Carry returned IDs and slugs into the next command; retrieve missing identifiers instead of inferring them from names or URLs.
Working method
- Resolve the requested outcome and target. Use exact supplied identifiers; otherwise list and pick one unambiguous match. For several matches, inspect distinguishing metadata and ask when the target or consequence stays ambiguous. A bounded listing does not prove absence; broaden discovery or report what was searched.
- Read current state when it affects the change (visibility, status, existing children).
- Execute the smallest requested change, then verify from the response. Retrieve again when the response omits needed state, the write is uncertain, or the job is asynchronous.
- Report what actually changed, current status, warnings, and a verified resource link when one exists. Creating an entry, accepting a job, and completing it are separate outcomes.
Execute clearly requested actions without repeated confirmation. For spending, sharing, or irreversible changes, resolve ambiguity about target or consequence first. A request for advice is not authorization to act; "clean things up" is not permission for account-wide deletion. Do not invent commands, flags, or status edits to simulate operations the CLI does not expose; use the UI for those.
Workflows
Commands drop only the ul cloud prefix and the defaulted owner.
| Goal | Commands |
|---|---|
| Inventory | projects list, datasets list, models list project=P. explore search q=... type=datasets searches public content, which is not private inventory. Retrieve a dataset to check task, classes, splits, and readiness. |
| Create | projects create project=slug name="Display", datasets create dataset=slug name="Display" task=detect. Set visibility= deliberately. |
| Copy | datasets clone dataset=D owner_body=DEST_OWNER, projects clone project=P owner_body=DEST_OWNER, models clone project=P model=M owner_body=DEST_OWNER project_body=DEST_PROJECT. Path fields name the source; *_body fields name the destination. A model's destination project must exist. |
| Rename, edit, move | <resource> update with the changed fields only. Move a model with models update project=P model=M project_id=DEST_ID alone. |
| Compare runs | projects retrieve project=P for model summaries, models list project=P, or datasets models dataset=D for runs on a dataset; models retrieve project=P model=M only for missing metrics. Tabulate status, dataset/version, configuration, and requested metrics with links. Missing metrics are unknown, not zero. There is no compare command. |
| Weights | models files project=P model=M returns a temporary checkpoint URL. No training or export is needed. |
| Convert | exports create project=P model=M format=onnx, then exports retrieve project=P model=M export_id=ID for progress and the download URL. format=engine needs gpu_type. Exporting does not deploy. |
| Dataset versions | datasets create-export dataset=D saves an immutable numbered snapshot and returns its signed NDJSON URL; datasets export dataset=D (current data) or datasets export dataset=D v=N (a saved version) returns a signed download URL; datasets restore dataset=D version=N rolls the live dataset back in place. |
| Deploy | deployments create project=P model=M deployment=slug name="Display" region=us-central1. deployments update deployment=D body='{"action":"replace","project":"P","model":"M"}' swaps the model on the same URL; body='{"action":"stop"}' and {"action":"start"} pause and resume it. deployments health deployment=D warms it. |
| Inference | models predict project=P model=M body='{"file":"@image.jpg"}' or deployments predict deployment=D body='{"file":"@image.jpg"}'; deployments logs deployment=D and deployments metrics deployment=D inspect a service. images predict image_id=ID model_id=ul://... predicts on a dataset image without saving labels. |
| Import data | datasets create dataset=D name="Display", then upload signed-url body= (assetType, assetId, filename, contentType, totalBytes), PUT the bytes with the returned headers, upload complete session_id=S, datasets ingest dataset=D body='{"sessionId":"S"}' (or {"sourceUrl":...}), then retrieve until ready. Queued is not imported. |
| Trash | projects delete project=P, datasets delete dataset=D, and models delete project=P model=M move them to 30-day trash. lifecycle trash lists it, lifecycle restore id=ID type=model undeletes, lifecycle delete-trash body='{"id":"ID","type":"model"}' purges one item, and body='{"all":true}' permanently empties all workspace trash. |
Cloud training
- Resolve the workspace, project, a ready dataset, starting weights, and requested settings.
Check
training gpu-availabilitybefore choosinggpu_type; cloud training spends credits.datamust use the dataset's actual owner, which may differ from the model's. models create body=...withowner,project, themodelslug, andnamefor a new experiment. Reuse a pending entry from a failed start after checking its state.training start model_id=ID gpu_type=... train_args=...with a freshtrain_argsholdingmodel,data, and numericepochsplus requested settings. Omitdevice. Do not copy stored worker arguments wholesale; saved data paths may be worker-local.models trainingormodels retrievefor progress. Return the run link and actual status without waiting for completion unless asked.models delete-trainingcancels a run and keeps its entry; never start an active run again.
Recover
- 401: check the credential source without exposing secrets.
ULTRALYTICS_API_KEYoverrides the saved login key, so logging in again does not replace a stale environment value. If the execution environment injects credentials, use its flow. Verify with a read afterwards. - 403: read the error for workspace access, permissions, or operation constraints; do not assume an expired login.
- Fix clear validation errors within the requested action. After a timeout or uncertain write, inspect state before retrying. Stop on unresolved inputs, permissions, or repeated failure; report partial results and remaining work instead of duplicating writes.
Resource links use https://platform.ultralytics.com: projects /{owner}/{project},
datasets /{owner}/datasets/{dataset}, models and training /{owner}/{project}/{model}.
Use returned slugs after changes; retrieve missing slugs. Deployments are the exception:
there is no per-deployment Platform page. Link to
/{owner}/{project}/{model}?tab=deploy by default; use /deploy only when the owning model
identifiers are unavailable. After status is ready, report the exact serviceUrl returned
by deployments retrieve for inference; never construct a UI or service URL from the
deployment ID, name, or slug.
Operation gotchas
Operation help already says what each command does. These are the side effects and
constraints it omits; --help and the error text still win when they disagree.
Clone
- Project, dataset, and model clones need a different destination workspace. Cloning is
not how to create a same-workspace experiment; use
models create. - Model sources need usable weights and must not be training. Project clones carry completed models with weights but not datasets, deployments, exports, or unfinished runs.
Visibility
- Creation may default to public and clones may keep the source's visibility, so set
visibility=explicitly. Public projects expose their models. Public visibility is not collaborator edit access.
Update
- Arrays and
metadataobjects replace prior values. Send the full list for a partial edit. starredis handled by a separate branch that ignores other fields in the same call. Send it alone.- Starting training again on an existing model clears its prior run metrics and results. Create a new model to keep them. Fine-tuning from existing weights does not resume the optimizer or epoch count.
capture_dataset_version=truesaves a new snapshot; it does not select an existing one.
Delete, trash, restore
projects update archived=trueonly organizes; it frees nothing.- Deleting a project trashes its models and cancels their training.
- Restore a parent before its children; independently trashed children need their own
restore. Dataset version restore is separate:
datasets restore dataset=D version=Nreplaces the current images, splits, classes, and annotations with the selected snapshot. It cannot be undone unless the current state was first versioned. When preservation matters, first rundatasets create-export dataset=D. Stop active annotation and wait for the dataset to return toreadyafter restoring. images deleteandimages delete-bulkare permanent and bypass trash.datasets create-exportreuses an identical existing snapshot instead of creating a duplicate.
Labels and auto-annotation
images update body='{"labels":[...]}'replaces every label on the image, andimages predictalone saves nothing. Retrieve first for a partial edit, and when the retrieve reportslabelsTruncated, do not overwrite the labels you did not see.datasets create-batchpersists labels and saves a version, normally on unlabeled images only.include_annotated=truealso processes labeled images while retaining old labels.delete-batchcancels or dismisses a run without undoing labels already saved.- Annotation prediction needs compatible tasks and classes or a
class_mapping, and rejects connected, depth, and more-than-three-channel datasets.
Classes, splits, task
class_namesreplaces names by index; keep the order for a rename. Merging or deleting classes remaps or removes labels and shifts IDs.redistribute-splitsreshuffles the whole dataset.images update-bulkmoves selected IDs, and conflict policyreplacemay remove target images.adopt-imagesadds unlabeled public-image references to the train split, skipping existing images; it copies no labels or splits.- Changing
taskconverts no annotations. Switching to or from depth needs an empty dataset.
Analysis
create-embeddingsstarts analysis;embeddingsandclusteringread it;delete-embeddingscancels the analysis, not images.
Connected storage
- Connected datasets are indexed in place, not copied. They cannot take appended uploads, versions, clones, or batch annotation.
- Disconnecting an integration leaves provider objects intact but breaks dataset access until the same account reconnects. Roboflow credentials are separate from Platform credentials.
Compute
- Editing a model's
statusstarts or stops nothing. - Deployment
deleteis permanent; there is no trash for deployments. - Export
deletecancels a running conversion or removes the finished file; the source model is untouched.
The installed CLI is the authority: ul version shows the versions, ul cloud <resource> <operation> --help lists valid arguments and choices, and error text beats any command
shape or caveat in this file. For endpoint semantics, the
Platform API reference and the live
/openapi.json win over memory.
Signals
- GitHub stars
- 23
- Last commit
- Sep 2026
ahel review
K1binfo
installs-packages
Automated review, not a security audit. Ruleset v1+k2.
Advanced
- Catalog kind
- skill
- Gateway key
platform-cli- Source
- github.com/ultralytics/skills