SUPAH Base Intelligence
Analysis
This skill is mostly aligned with Base token intelligence, but its automatic USDC payment flow has inconsistent cost limits and its docs include unsafe auto-trading guidance.
Findings (4)
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.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
### Automated Trading Bot
```javascript
// Get signals and auto-execute
const signals = await supah.getSignals({ minScore: 85 });
for (const signal of signals) {
if (signal.gates.sec >= 90) {
await executeTrade(signal.address);
}
}
```The documentation encourages automatically executing trades from signal output without showing human confirmation, position limits, or rollback controls. Trading is a high-impact financial action and is broader than the skill's otherwise read-only API implementation.
"x402": { "enabled": true, "currency": "USDC", "network": "base", "maxPerCall": "0.08" } ... | Signal feed | $0.15 | ... Your agent's x402-compatible HTTP client pays automatically.The declared maximum per call is $0.08, but the same artifact advertises a $0.15 signal-feed call and says the agent pays automatically. This makes the actual payment boundary unclear.
git clone https://github.com/supahonbase/supah-openclaw-skill supah-base-intelligence
The manual install source differs from other artifact repository claims, including clawhub.json's repository and package.json's repository, while the registry source is listed as unknown. This creates provenance ambiguity.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
const API_BASE = process.env.SUPAH_API_BASE || 'api.supah.ai'; ... const data = await apiRequest(`/agent/v1/portfolio/${wallet}`);The skill sends token and wallet identifiers to an external SUPAH API host. This is purpose-aligned, but wallet addresses can reveal portfolio interests or trading research.
