RobotX Deploy CLI

ReviewAudited by ClawScan on May 10, 2026.

Overview

This is a coherent RobotX deployment helper, but it relies on an external CLI install, RobotX credentials, and commands that can deploy or publish applications.

Before installing, verify the RobotX CLI source and avoid blindly running remote install scripts. Use least-privilege RobotX credentials, protect ~/.robotx.yaml, and only allow the agent to run deploy or publish commands after you confirm the target application, build, and environment.

Findings (3)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

Installing the CLI this way runs remote code on the user's machine, so a compromised or changed upstream script could affect the local environment.

Why it was flagged

The skill directs users to run an unpinned remote install script from GitHub; this is a user-directed setup step for the CLI, but the downloaded script is outside the provided artifacts and was not statically reviewed.

Skill content
curl -fsSL https://raw.githubusercontent.com/haibingtown/robotx_cli/main/scripts/install.sh | bash
Recommendation

Review the install script first, prefer pinned releases or checksums when available, and run installation in a controlled environment.

What this means

Anyone or any agent process with access to those credentials may be able to view or change RobotX projects according to the key's permissions.

Why it was flagged

The skill requires RobotX account credentials to perform API actions. This is expected for a deployment tool, but those credentials grant access to RobotX resources.

Skill content
Set credentials by config file (`~/.robotx.yaml`) or env vars: `ROBOTX_BASE_URL`, `ROBOTX_API_KEY`
Recommendation

Use least-privilege API keys, avoid sharing credentials in chat, prefer environment variables in CI, and rotate keys if they are exposed.

What this means

A mistaken command could update or publish the wrong RobotX application or build.

Why it was flagged

The documented CLI can create or update deployments and optionally publish them. This matches the skill's purpose, but it is a high-impact operation if run against the wrong path, project, or account.

Skill content
robotx deploy [path] --name "My App" [--publish] [--wait=true]
Recommendation

Require explicit user confirmation before deploy or publish actions, verify the target path/project/build IDs, and use non-production projects for testing.