Install
openclaw skills install container-desktopPodman Desktop is the best free and open source tool to work with Containers and Kubernetes for deve podman desktop, typescript, container, containers.
openclaw skills install container-desktopDeveloper workflow automation tool for initializing, building, testing, and deploying projects from the command line.
| Command | Description |
|---|---|
init | Initialize a new project in the current directory |
check | Run lint, type check, and tests |
build | Build the project |
test | Run the full test suite |
deploy | Show deploy pipeline guide (build → test → stage → prod) |
config | View or edit configuration |
status | Check overall project health |
template | Generate a code template for a given type |
docs | Generate project documentation |
clean | Remove build artifacts |
help | Show help and list all commands |
version | Print current version |
container-desktop <command> [args]
All actions are logged to $DATA_DIR/history.log for auditing.
~/.local/share/container-desktop/CONTAINER_DESKTOP_DIR environment variable to change the data directory.history.log — timestamped log of every command executedconfig.json — project-level configuration (created by config)data.log — general data logset -euo pipefail)container-desktop init to scaffold and initialize your workspace before writing any code.container-desktop check to run lint, type checking, and tests in a single command before pushing code.container-desktop build as part of your CI/CD pipeline or local build workflow.container-desktop test to run your full test suite during development or in automated pipelines.container-desktop clean to remove generated artifacts and free disk space between builds.# Initialize a project in the current directory
container-desktop init
# Run all quality checks (lint + type check + tests)
container-desktop check
# Build the project
container-desktop build
# Run the test suite
container-desktop test
# View the deployment pipeline guide
container-desktop deploy
# Check project health status
container-desktop status
# Generate a code template
container-desktop template component
# Generate project documentation
container-desktop docs
# Clean build artifacts
container-desktop clean
# Show version
container-desktop version
All command output goes to stdout. Redirect to a file if needed:
container-desktop status > report.txt
Set CONTAINER_DESKTOP_DIR to customize where data is stored:
export CONTAINER_DESKTOP_DIR=/path/to/custom/dir
Powered by BytesAgain | bytesagain.com | hello@bytesagain.com