setup-cloudbase-openclaw

skills-sh:tencentcloudbase_skills__setup-cloudbase-openclaw

View source
B
76/100

First Seen

Feb 18, 2026

Last Scanned

Feb 20, 2026

Findings

7

Score

76/100

MEDIUM 3
LOW 4

Findings (7)

MEDIUM
Auto-confirm flag bypassing user verification
L334

Detects -y, --yes, or --auto-approve flags in MCP/skill install commands that bypass user confirmation

add
tencentcloudbase/skills
-y
FIX

Remove the -y/--yes auto-confirm flag from MCP server launch arguments. This flag bypasses user confirmation prompts and allows unattended execution of potentially dangerous operations.

FP?

Likely FP if the matched text is an isolated flag (-y or --yes) in documentation describing command-line options, not in an actual MCP config.

MEDIUM
Auto-confirm flag bypassing user verification
L339

Detects -y, --yes, or --auto-approve flags in MCP/skill install commands that bypass user confirmation

add
tencentcloudbase/skills
-y
FIX

Remove the -y/--yes auto-confirm flag from MCP server launch arguments. This flag bypasses user confirmation prompts and allows unattended execution of potentially dangerous operations.

FP?

Likely FP if the matched text is an isolated flag (-y or --yes) in documentation describing command-line options, not in an actual MCP config.

MEDIUM
Auto-confirm flag bypassing user verification
L346

Detects -y, --yes, or --auto-approve flags in MCP/skill install commands that bypass user confirmation

add
tencentcloudbase/skills
-y
FIX

Remove the -y/--yes auto-confirm flag from MCP server launch arguments. This flag bypasses user confirmation prompts and allows unattended execution of potentially dangerous operations.

FP?

Likely FP if the matched text is an isolated flag (-y or --yes) in documentation describing command-line options, not in an actual MCP config.

LOW
Unverified npx package execution
L70

Detects npx executing packages from unverified sources without pinned versions

npx @cloudbase/setup-openclaw 
FIX

Pin the npx package to an exact version (e.g., npx @scope/package@1.2.3). Unversioned npx commands can silently install a different or malicious package version.

FP?

Likely FP if the npx command targets a well-known package in documentation context, though unpinned versions are a real supply chain concern.

LOW
npx MCP server without version pin
L152

Detects MCP server configs using npx to run packages without version pinning

"command"
:
"npx"
FIX

Pin the npx package in the MCP config to an exact version (e.g., @scope/server@1.2.3). Unpinned npx commands can silently fetch a compromised package version.

FP?

Likely FP if the MCP config is a local development setup example, though unpinned npx in production configs is a real supply chain risk.

LOW
Hardcoded secrets in MCP env block
L162

Detects hardcoded API keys, tokens, or passwords in MCP server environment configuration

"env"
:
{ + "TENCENTCLOUD_SECRETKEY"
:
"your_secret_key_here"
FIX

Remove shell metacharacters (semicolons, pipes, ampersands, backticks) from MCP server arguments. Use explicit argument arrays and avoid shell expansion in MCP configurations.

FP?

Likely FP if the metacharacter is a literal part of a non-shell argument (e.g., a regex pattern or a URL query parameter containing ampersands).

LOW
Unverified npx package execution
L283

Detects npx executing packages from unverified sources without pinned versions

npx @cloudbase/setup-openclaw 
FIX

Pin the npx package to an exact version (e.g., npx @scope/package@1.2.3). Unversioned npx commands can silently install a different or malicious package version.

FP?

Likely FP if the npx command targets a well-known package in documentation context, though unpinned versions are a real supply chain concern.