autonomous-execution

clawhub:autonomous-execution

View source
B
77/100

First Seen

Feb 18, 2026

Last Scanned

Feb 22, 2026

Findings

2

Score

77/100

HIGH 1
MEDIUM 1

Findings (2)

HIGH
Autonomous agent spawning
L9

Detects autonomous sub-agent or cron-based execution without human oversight

Autonomous Execution + autonomous
FIX

Remove directives that force the agent to call specific tools or APIs not required for the skill's stated functionality. Tool calls should be determined by user intent, not embedded directives.

FP?

Likely FP if the skill legitimately needs to call other tools as part of its workflow (e.g., a deployment skill that calls git and cloud CLI tools).

MEDIUM
Cross-tool data leakage
L77

Detects patterns where credential or secret reads are combined with external data transmission

access environment variables or secret + send result
FIX

Prevent credentials and sensitive data obtained by one MCP tool from being passed to other tools. Implement data isolation between tools and restrict cross-tool data flow for secrets.

FP?

Likely FP if the cross-tool data flow is intentional API authentication (e.g., a tool fetches an auth token that another tool uses for the same service).