Uniswap Self Funding Setup

AdvisoryAudited by Static analysis on Apr 30, 2026.

Overview

No suspicious patterns detected.

Findings (0)

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.

ConcernMedium Confidence
ASI02: Tool Misuse and Exploitation
What this means

A broad request could lead to wallet funding, token deployment, liquidity setup, treasury rules, identity registration, and payment configuration with real financial or public blockchain effects.

Why it was flagged

This shows a broad multi-agent workflow that can make financial and on-chain changes. The provided artifacts do not show explicit approval gates, transaction review, or spending limits for each high-impact step.

Skill content
“Orchestrates 5 specialized agents in sequence ... wallet, optional token, treasury management, on-chain identity, and payment acceptance -- in a single command.”
Recommendation

Require explicit user confirmation for each transaction and policy change. Use a test environment first, review generated addresses/contracts, and set hard spending and chain limits before any production run.

ConcernMedium Confidence
ASI03: Identity and Privilege Abuse
What this means

If the agent receives access to wallet credentials, provider accounts, or funds, mistakes or overbroad policies could put assets at risk.

Why it was flagged

The skill involves delegated wallet signing authority, funding, and spending-policy configuration. That is purpose-aligned, but the provided metadata declares no primary credential, env vars, or config paths, so the credential and funding boundaries are not clear.

Skill content
“walletProvider ... privy (dev) / turnkey (production) / safe (max security)” and “Provision wallet with signing capabilities ... Configure spending policies ... Fund with gas (2x estimated need)”
Recommendation

Use dedicated low-balance wallets and least-privilege provider credentials. Confirm the exact funding source, wallet provider, permitted chains, daily spend limits, and revocation/backup process before use.

What this means

The visible skill may appear simple, while the actual wallet, token, treasury, and identity operations depend on other agents whose instructions and safeguards are not shown here.

Why it was flagged

The skill delegates the important work to named subagents. The provided package contains only README.md and SKILL.md, so the behavior and provenance of those high-impact subagents cannot be reviewed from these artifacts.

Skill content
“allowed-tools: - Task(subagent_type:wallet-provisioner) - Task(subagent_type:token-deployer) - Task(subagent_type:treasury-manager) - Task(subagent_type:identity-verifier)”
Recommendation

Review and install the referenced subagents from trusted sources before using this composite skill, especially for production wallets or real funds.

ConcernMedium Confidence
ASI08: Cascading Failures
What this means

A mistake in an early wallet, token, or configuration step could affect later treasury, identity, and payment setup, and some completed blockchain actions may not be reversible.

Why it was flagged

The workflow intentionally chains outputs across stages and preserves earlier changes after later failures. For on-chain financial setup, that can leave partial, persistent infrastructure if a later step fails or a bad parameter propagates.

Skill content
“Each agent receives the output of all prior agents” and “If Step 3 fails, Steps 1 and 2 are still valid and preserved.”
Recommendation

Use staged execution with dry runs and checkpoints. Confirm every intermediate address, contract, chain, and policy before allowing the next stage to proceed.