Cloud Sdk
/install cloud-sdk
Cloud SDK
Developer workflow automation tool for project lifecycle management. Provides commands for initializing projects, running checks, building, testing, deploying, managing configuration, generating templates, producing documentation, and cleaning build artifacts — all from a single CLI interface.
Commands
| Command | Description |
|---|---|
cloud-sdk init |
Initialize a new project in the current working directory |
cloud-sdk check |
Run lint, type-check, and test passes against the project |
cloud-sdk build |
Build the project artifacts |
cloud-sdk test |
Execute the full test suite |
cloud-sdk deploy |
Show the deployment pipeline guide (build → test → stage → prod) |
cloud-sdk config |
Display or manage project configuration (config.json) |
cloud-sdk status |
Check overall project health and status |
cloud-sdk template \x3Cname> |
Generate a code template for the given component name |
cloud-sdk docs |
Generate project documentation |
cloud-sdk clean |
Remove build artifacts and temporary files |
cloud-sdk help |
Show the built-in help message with all commands |
cloud-sdk version |
Print the current version (v2.0.0) |
Data Storage
All operational data is stored in ~/.local/share/cloud-sdk/ by default. You can override this by setting the CLOUD_SDK_DIR environment variable. Key files inside the data directory:
history.log— timestamped log of every command executedconfig.json— project-level configuration (managed viaconfigcommand)
The tool respects XDG_DATA_HOME if set, falling back to $HOME/.local/share.
Requirements
- Bash 4.0+ (uses
set -euo pipefailfor strict error handling) - coreutils (standard
date,mkdir,echo) - No external dependencies or API keys required
- Works on Linux and macOS out of the box
When to Use
- Bootstrapping a new project — run
cloud-sdk initto set up project scaffolding quickly from the terminal without remembering per-tool init commands - Pre-commit quality gates — use
cloud-sdk checkas part of a Git pre-commit hook to run lint + type-check + tests before every commit - CI/CD pipeline steps — chain
cloud-sdk buildandcloud-sdk testinside your continuous integration scripts for a consistent, tool-agnostic interface - Deployment checklists — run
cloud-sdk deployto get a guided walkthrough of the build → test → stage → prod pipeline so nothing gets skipped - Housekeeping and cleanup — execute
cloud-sdk cleanto wipe build artifacts after releases, freeing disk space and resetting state
Examples
# Initialize a new project in the current directory
cloud-sdk init
# Run all quality checks (lint + type-check + tests)
cloud-sdk check
# Build the project
cloud-sdk build
# Run the test suite
cloud-sdk test
# View the deployment guide
cloud-sdk deploy
# Generate a code template for a component called "service"
cloud-sdk template service
# Generate project documentation
cloud-sdk docs
# Check project health
cloud-sdk status
# Clean up build artifacts
cloud-sdk clean
# Show version
cloud-sdk version
Configuration
Set the CLOUD_SDK_DIR environment variable to change the data directory:
export CLOUD_SDK_DIR="$HOME/my-project/.cloud-sdk"
Default location: ~/.local/share/cloud-sdk/
Output
All command output goes to stdout. Redirect to a file if needed:
cloud-sdk status > project-health.txt
History is automatically logged to $DATA_DIR/history.log with timestamps.
Powered by BytesAgain | bytesagain.com | [email protected]
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install cloud-sdk - 安装完成后,直接呼叫该 Skill 的名称或使用
/cloud-sdk触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Cloud Sdk 是什么?
The Go Cloud Development Kit (Go CDK): A library and tools for open cloud development in Go. go cloud, go, aws, azure, cloud, gcp. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 347 次。
如何安装 Cloud Sdk?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install cloud-sdk」即可一键安装,无需额外配置。
Cloud Sdk 是免费的吗?
是的,Cloud Sdk 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Cloud Sdk 支持哪些平台?
Cloud Sdk 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Cloud Sdk?
由 bytesagain4(@xueyetianya)开发并维护,当前版本 v2.0.1。