solana-mobile-wallet

solana-mobile-wallet is a skill for Claude Code, Codex from solana-mobile/solana-mobile-skills. It costs 66 tokens per session (2,461 once invoked), scanned A, original, Apache-2.0.

A wallet-connection toolkit for Solana apps built with React Native and Expo. It uses Mobile Wallet Adapter and Wallet UI to connect wallets and request signed actions.

In plain words
What is it for?
Use it to add wallet connection and disconnection, display addresses, sign messages, use Sign-in with Solana, transfer SOL, or send transactions.
Why use it?
It provides the app flow for working with a user's Solana wallet instead of requiring custom wallet integration.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to add wallet connection and disconnection, display addresses, sign messages, use Sign-in with Solana, transfer SOL, or send transactions.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/solana-mobile/solana-mobile-skills/solana-mobile-wallet
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add solana-mobile/solana-mobile-skills --skill solana-mobile-wallet
Clone the repo
git clone --depth 1 https://github.com/solana-mobile/solana-mobile-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for solana-mobile-wallet

README.md
[![agentmods](https://agentmods.dev/badge/skills/solana-mobile/solana-mobile-skills/solana-mobile-wallet/github.svg)](https://agentmods.dev/skills/solana-mobile/solana-mobile-skills/solana-mobile-wallet)
Your own site
<a href="https://agentmods.dev/skills/solana-mobile/solana-mobile-skills/solana-mobile-wallet"><img src="https://agentmods.dev/badge/skills/solana-mobile/solana-mobile-skills/solana-mobile-wallet/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for solana-mobile-wallet

Your own site · 80×15
<a href="https://agentmods.dev/skills/solana-mobile/solana-mobile-skills/solana-mobile-wallet"><img src="https://agentmods.dev/badge/skills/solana-mobile/solana-mobile-skills/solana-mobile-wallet.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 66 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,461 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • Socket pass 5 Sept 2026
  • Snyk warn 5 Sept 2026
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 3 findings, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium MCP Rug Pull · line 216
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
  • medium MCP Rug Pull · line 224
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
  • medium MCP Rug Pull · line 225
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00066 $0.02461
Opus 5 $0.00033 $0.01230
Sonnet 5 $0.00013 $0.00492
Haiku 4.5 $0.00007 $0.00246

Measured 8d ago against content hash 51782ac1e66a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

solana-mobile-wallet scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/solana-mobile-wallet/SKILL.md · 245 lines

How it starts

The opening of the file, as written. The whole thing — 245 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Solana wallets on mobile

Wallet connection and transaction signing through Mobile Wallet Adapter (MWA), wrapped by @wallet-ui/react-native-kit (or @wallet-ui/react-native-web3js on the legacy stack).

MWA requires a development build on Android. Expo Go will not work. If the project has no development build yet, or does not exist, start with the solana-mobile skill.

Step 1: pick the stack — do this before writing any code

Write kit code. @solana/kit with @wallet-ui/react-native-kit is the stack to reach for, and everything in this file describes it.

There is exactly one reason to write @solana/web3.js instead: the project already runs on it. Check package.json first.

package.json says Do this
@wallet-ui/react-native-kit, or no Solana client yet Kit. This file, plus references/kit.md
@wallet-ui/react-native-web3js is the app's Solana client references/web3js.md
The user explicitly asked for web3.js references/web3js.md, and say why kit would be better

Do not introduce web3.js into a kit project, or mix the two in one app. Their provider props, hook return values, and transaction construction all differ, so code from one silently fails on the other. If a project has no Solana client at all, that is a new build — use kit.

Adding a new wallet feature to an existing web3.js app is not a reason to migrate mid-task. Match what is there, and mention migration as a follow-up if it seems worth it.

Step 2: confirm the provider is mounted

useMobileWallet returns empty state without MobileWalletProvider above it. Look for it in the root layout or an app-providers module.

Build the cluster with the createSolana* helpers rather than by hand — a SolanaCluster also needs a label, which the helpers fill in:

import {
  type AppIdentity,
  createSolanaDevnet,
  MobileWalletProvider,
  type SolanaCluster,
} from '@wallet-ui/react-native-kit'

const identity: AppIdentity = { name: 'My App' }
const cluster: SolanaCluster = createSolanaDevnet({ url: 'https://api.devnet.solana.com' })

<MobileWalletProvider cluster={cluster} identity={identity}>
  {children}
</MobileWalletProvider>

Read the full file on GitHub · 245 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago Changed · +17 lines 51782ac1e66a
  2. 12d ago First seen · 228 lines · 66 tokens per session scan A 94b1815d5dfc

Subscribe to this mod's changes

solana-mobile-wallet is a skill published in the GitHub repository solana-mobile/solana-mobile-skills (6 stars, last pushed today), licensed Apache-2.0. It adds 66 tokens to every session and 2,461 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.