seeker-connect

seeker-connect is a skill for Claude Code, Codex from solana-mobile/solana-mobile-skills. It costs 94 tokens per session (3,367 once invoked), scanned A, original, Apache-2.0.

A browser SDK that connects a website to the built-in wallet on a Seeker phone. It supports Solana sign-in, message signing, and transaction signing through a short-lived wallet session.

In plain words
What is it for?
It is for adding wallet connection and Solana signing to browser-based decentralised applications running on Seeker phones.
Why use it?
It lets a web app request wallet actions on a Seeker device without implementing its own wallet protocol. The wallet session starts for each request and then ends.

Skill for Claude CodeCodex

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

Good fit It is for adding wallet connection and Solana signing to browser-based decentralised applications running on Seeker phones.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/solana-mobile/solana-mobile-skills/seeker-connect
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 seeker-connect
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 seeker-connect

README.md
[![agentmods](https://agentmods.dev/badge/skills/solana-mobile/solana-mobile-skills/seeker-connect/github.svg)](https://agentmods.dev/skills/solana-mobile/solana-mobile-skills/seeker-connect)
Your own site
<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.

agentmods 80×15 button for seeker-connect

Your own site · 80×15
<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>
Per session 94 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,367 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 12 Sept 2026
  • Snyk warn 12 Sept 2026
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.00094 $0.03367
Opus 5.5 $0.00038 $0.01347
Sonnet 5 $0.00019 $0.00673
Haiku 4.5 $0.00009 $0.00337

Measured 14d ago against content hash 4f942b29d732, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-26, from the pricing page.

Security

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.

skills/seeker-connect/SKILL.md · 281 lines

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-issued authToken plus 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.

Read the full file on GitHub · 281 lines

Files

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.

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. 14d ago First seen · 281 lines · 94 tokens per session scan A 4f942b29d732

Subscribe to this mod's changes

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.