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.
npx skills add solana-mobile/solana-mobile-skills --skill seeker-connectgit clone --depth 1 https://github.com/solana-mobile/solana-mobile-skillsWrote 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.
[](https://agentmods.dev/skills/solana-mobile/solana-mobile-skills/seeker-connect)<a href="https://agentmods.dev/skills/solana-mobile/solana-mobile-skills/seeker-connect"><img src="https://agentmods.dev/badge/skills/solana-mobile/solana-mobile-skills/seeker-connect/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.
<a href="https://agentmods.dev/skills/solana-mobile/solana-mobile-skills/seeker-connect"><img src="https://agentmods.dev/badge/skills/solana-mobile/solana-mobile-skills/seeker-connect.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- Socket pass
- Snyk warn
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00094 | $0.03367 |
| Opus 5.5 | $0.00038 | $0.01347 |
| Sonnet 5 | $0.00019 | $0.00673 |
| Haiku 4.5 | $0.00009 | $0.00337 |
Grade A, and why
seeker-connect 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 14d 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.
How it starts
The opening of the file, as written. The whole thing — 281 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Seeker Connect for web dapps
Seeker Connect links a web page open in the browser on the device to a Solana Mobile certified device's own wallet — Seeker is the first such device. It is a dapp-only SDK built on top of the official Mobile Wallet Adapter libraries: a UX/DX layer, not a protocol reimplementation. Where generic MWA centers on a "pick a wallet" chooser, Seeker Connect launches the device wallet directly through the MWA spec's Endpoint-specific URI (Android App Link) mechanism, carries the session over a Nostr relay, and ships Seeker-branded progress and error UI — all exposed to the app as an ordinary Wallet Standard wallet named "Seeker Connect".
Targets: Web is available today. React Native and Android (Kotlin) are planned. Until
they ship, wallet connection inside an Expo or React Native app uses the
solana-mobile-wallet skill instead.
The mental model — read this before writing code
- There is no long-lived connection. Every wallet interaction (connect, sign message, sign transaction) opens its own short-lived MWA session, runs one request, and tears down. Each interaction launches the wallet app and shows a branded progress overlay — the one exception is a silent connect, which only reads the cache and never opens a session. This is by design — do not build reconnect loops or keep-alive logic around it.
- "Connected" means "holds a cached authorization." The first
connect()stores a wallet-issuedauthTokenplus accounts and capabilities (localStorage by default). Later operations replay that token silently — no repeated consent prompt. - Disconnect only forgets the token locally. It deliberately never calls the wallet's
deauthorize, because that would launch the wallet app just to disconnect. - It only completes on the device. On desktop, connect fails with
association-failed— typically within seconds, when nothing answers the wallet launch; the association timeout only applies to a wallet that launches but never connects. Register the wallet unconditionally; it simply won't get past association elsewhere. - The relay is a public Nostr relay, and the SDK ships no default. Use the verified default in Step 2 unless the developer names one. Solana Mobile's own relay is handed out behind a terms-of-use acceptance and is never yours to fill in.
What ships with it
2 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.
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.
- 14d ago First seen · 281 lines · 94 tokens per session scan A 4f942b29d732
seeker-connect is a skill published in the GitHub repository solana-mobile/solana-mobile-skills (8 stars, last pushed 2d ago), licensed Apache-2.0. It adds 94 tokens to every session and 3,367 once invoked, about $0.0004 per session on Opus 5.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-09-12.
Other skills, from other repositories
amethyst
Build customized Amethyst Nostr clients for Android. Fork, rebrand, customize, and distribute your own version.
bitcoin-infrastructure-bluewallet
BlueWallet: mobile Bitcoin + Lightning wallet (iOS/Android). Lightning via self-hosted LndHub, plus a gated Ark/Arkade wallet. Multi-wallet support. USE WHEN: mobile wallet integrations, evaluating BlueWallet vs Phoenix / Breez.
install-wallet-ui-react-native
Use when setting up Wallet UI in a new or existing Expo application. Guides selection between modern @solana/kit (Recommended) or legacy @solana/web3.js.
setup-react-native-app
Scaffold a React Native (Expo) app with Phantom React Native SDK for mobile wallet integration, including polyfills and deep linking.
setup-evm-react-native-app
Scaffold a React Native app with MetaMask EVM integration including required polyfills, metro.config.js shims, import order constraints, mobile deeplinks, and a full component example.
setup-solana-react-native-app
Set up a React Native app with @metamask/connect-solana using polyfills and multichain invokeMethod for Solana operations. Use when building Solana support in React Native where wallet-adapter is not available.