Conversation
Contributor
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
Contributor
|
Important Review skippedAuto reviews are limited based on label configuration. 🏷️ Required labels (at least one) (1)
Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the
✨ Finishing touches🧪 Generate unit tests (beta)
Comment |
f-trycua
force-pushed
the
cua-cli
branch
2 times, most recently
from
February 8, 2026 01:19
7ffaf93 to
be258f1
Compare
- Add `cua image create/clone/shell/info` commands for local VM image management - Add `cua platform list/info` commands for platform configuration - Add image registry, XDG paths, and Docker utilities to cua-cli - Add deprecation wrappers in cua-bench so `cb image` and `cb platform` delegate to cua-cli - Add versioned docs pipeline with changelog generation - Add docs version selector component - Remove debug screenshot directories (deb/, debb/) - Fix isort and prettier formatting across all packages
- Replace manually curated computer-sdk and agent-sdk index pages with auto-generated content from Python source via Griffe - Add includeSubmodules filter to doc generator to control which submodules appear (callbacks, tools, types for agent; interface, models, tracing, helpers, diorama_computer for computer) - Add @trycua/cli deprecation notice to CLI docs - Hide MCP Server section from sidebar navigation - Fix Jupyter Notebook callout newline rendering in hud.mdx and agent-loops.mdx - Add icon to Claude Code examples section - Add permanent redirects for old /api URLs - Update versioned doc "View latest" links
Collaborator
Author
|
Superseded by a clean PR from cua-cli-clean branch (this PR had accumulated ~23 extra commits from other squash-merged PRs). |
5 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR adds the cua-cli Python package with local image management capabilities, versioned documentation infrastructure, and several codebase improvements.
1. New
cua-cliPython package (libs/python/cua-cli/)A unified CLI for CUA platform management, installable as
cuacommand:cua image create <platform>— Create local VM/container images (linux-docker, linux-qemu, windows-qemu, android-qemu, macos-lume)cua image clone <name> <new-name>— Clone an existing local imagecua image shell <name>— Launch interactive shell into a local image (Docker overlay or QEMU)cua image info <name>— Show detailed info about a local imagecua image list --local— List locally registered imagescua image delete --local <name>— Delete a local imagecua platform list— Show all supported platforms and their statuscua platform info <platform>— Detailed platform info with dependency checksSupporting modules:
cua_cli/utils/paths.py— XDG Base Directory helpers (~/.local/share/cua/,~/.local/state/cua/)cua_cli/utils/docker.py— Port allocation, Docker overlay copy utilitiescua_cli/utils/registry.py— Image registry JSON management (images.json)cua_cli/commands/platform.py— PLATFORMS configuration dict + dependency checks2. Deprecation wrappers in
cua-benchcb imageandcb platformnow delegate tocua-cliwith yellow deprecation warningscua-cliis not installedcua-cliis not a hard dependency (not on PyPI yet)3. Versioned docs pipeline
scripts/docs-generators/generate-versioned-docs.ts— Generates versioned API reference docs from Python SDK sourcescripts/docs-generators/generate-changelog.ts— Generates changelogs from git tagsscripts/docs-generators/python-sdk.ts— Python SDK doc extractionscripts/docs-generators/extract_python_docs.py— AST-based Python docstring extractor4. Docs UI changes
docs/src/components/version-selector.tsx) for navigating between SDK versions5. Agent SDK refactor (
libs/python/agent/)agent/core/module with base classes, factory, tools, telemetry, callbacksagent/providers/module with provider-specific implementations (Anthropic, OpenAI, Omni, UITars)6. CI/CD
cd-py-cli.yml— Publishing workflow forcua-clito PyPI oncli-v*tags7. Other changes
ClipboardWatcher.swift,SSH.swift,SSHClient.swift,SSHErrors.swiftdeb/anddebb/debug screenshot directoriesdocs/ref={function}junk fileTest plan
cua-clitests pass (python -m pytest tests/)cua platform listshows platform statuscua image create linux-dockerpulls and registers imagecb image listshows deprecation warning and delegatesKnown CI issues (pre-existing, not from this PR)
test_tool_resolution.pyfail due to agent core refactor (BrowserToolprotocol changes)MockVNCServicedoesn't conform to updatedVNCServiceprotocol (SSH changes)