Near Faucet

PassAudited by ClawScan on May 1, 2026.

Overview

This appears to be a straightforward NEAR testnet faucet helper with disclosed network calls and no credential, file, or persistence behavior, though its docs and metadata slightly overstate or under-declare some details.

This skill looks safe for simple NEAR testnet faucet use. Be aware that it contacts NEAR testnet services with the account ID you provide, and the advertised status/rate-limit features do not appear to be implemented locally.

Findings (2)

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

Using the request command shares a testnet account ID with the NEAR faucet and may submit a token request for that account.

Why it was flagged

The command sends the provided NEAR testnet account ID to the disclosed faucet endpoint to request tokens. This is purpose-aligned, but it is still an external account-related action users should recognize.

Skill content
hostname: 'wallet.testnet.near.org', path: '/api/faucet', method: 'POST' ... JSON.stringify({ account_id: accountId })
Recommendation

Use it only with intended NEAR testnet accounts and confirm before asking the agent to request tokens.

What this means

Users may expect local status and rate-limit protections that are not actually implemented by the included script.

Why it was flagged

The documentation advertises status checking and rate limiting, but the included CLI code only implements request and balance and shows no local rate-limit tracking. This looks like a documentation/functionality mismatch rather than malicious behavior.

Skill content
- Check faucet request status
- Rate limiting per address
...
### `near-faucet status [request_id]`
Recommendation

Do not rely on this skill for local rate-limit enforcement or status tracking unless those features are added and reviewed.