Master the workflow of creating, observing, and managing containerized environments. Learn when to merge work, iterate on prompts, or start fresh.
Agent Creates Fresh Environment
Agent Works in Isolation
You Observe the Work
Make a Decision
merge
to preserve the agent’s commit history, or apply
to create your own commit message and review changes before committing.
container-use diff
and container-use log
first. Most of the time, this gives you enough information to decide next steps without the overhead of checking out or entering containers.
merge
when you want to preserve the agent’s commit history and understand how the work evolved. Use apply
when you want to create clean, customized commits or review changes before committing.
container-use list | See all environments and their status |
container-use watch | Monitor environment activity in real-time as agents work |
container-use log <env-id> | View commit history and commands to understand what the agent did |
container-use diff <env-id> | Quick assessment of code changes |
container-use terminal <env-id> | Enter live container to debug, test, or explore |
container-use checkout <env-id> | Bring changes to local IDE for detailed review |
container-use merge <env-id> | Accept work preserving agent’s commit history |
container-use apply <env-id> | Apply as staged changes to customize commits |
container-use delete <env-id> | Discard environment and start over |
container-use config | Configure default settings for new environments |
container-use version | Display version information |