Claude-skill-registry agentuity-cli-cloud-deploy
Deploy project to the Agentuity Cloud. Requires authentication. Use for Agentuity cloud platform operations
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/agentuity-cli-cloud-deploy" ~/.claude/skills/majiayu000-claude-skill-registry-agentuity-cli-cloud-deploy && rm -rf "$T"
manifest:
skills/data/agentuity-cli-cloud-deploy/SKILL.mdsource content
Cloud Deploy
Deploy project to the Agentuity Cloud
Prerequisites
- Authenticated with
agentuity auth login - Project context required (run from project directory or use
)--project-id - auth login
Usage
agentuity cloud deploy [options]
Options
| Option | Type | Required | Default | Description |
|---|---|---|---|---|
| string | Yes | - | The url to the CI build logs |
| string | No | | The trigger that caused the build |
| string | Yes | - | The url to the CI commit |
| string | Yes | - | The message to associate with this deployment |
| string | Yes | - | The commit SHA for this deployment |
| string | Yes | - | The git branch for this deployment |
| string | Yes | - | The CI provider name (attempts to autodetect) |
| string | Yes | - | The repo url |
| string | No | | The event that triggered the deployment |
| number | Yes | - | the pull request number |
| string | Yes | - | the pull request url |
| string | Yes | - | file path to save build report JSON with errors, warnings, and diagnostics |
| boolean | No | | Internal: run as forked child process |
Examples
Deploy current project:
bunx @agentuity/cli cloud deploy
Deploy with verbose output:
bunx @agentuity/cli cloud deploy --log-level=debug
Output
Returns JSON object:
{ "success": "boolean", "deploymentId": "string", "projectId": "string", "logs": "array", "urls": "object" }
| Field | Type | Description |
|---|---|---|
| boolean | Whether deployment succeeded |
| string | Deployment ID |
| string | Project ID |
| array | The deployment startup logs |
| object | Deployment URLs |