seeker-genesis-token

seeker-genesis-token is a skill for Claude Code, Codex from solana-mobile/solana-mobile-skills. It costs 76 tokens per session (2,548 once invoked), scanned B, original, Apache-2.0.

A server-side check for Seeker Genesis Token ownership using Sign-in with Solana. The token is a digital proof associated with an eligible Seeker device, and server-side means the check happens on the backend.

In plain words
What is it for?
Use it to restrict content or rewards to Seeker owners, verify token ownership, reduce duplicate identities, or allow one claim per device.
Why use it?
It helps an app confirm ownership instead of trusting a claim made only by the device or user.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: positional $N argument.

Good fit Use it to restrict content or rewards to Seeker owners, verify token ownership, reduce duplicate identities, or allow one claim per device.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/solana-mobile/solana-mobile-skills/seeker-genesis-token/github.svg)](https://agentmods.dev/skills/solana-mobile/solana-mobile-skills/seeker-genesis-token)
Your own site
<a href="https://agentmods.dev/skills/solana-mobile/solana-mobile-skills/seeker-genesis-token"><img src="https://agentmods.dev/badge/skills/solana-mobile/solana-mobile-skills/seeker-genesis-token/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-genesis-token

Your own site · 80×15
<a href="https://agentmods.dev/skills/solana-mobile/solana-mobile-skills/seeker-genesis-token"><img src="https://agentmods.dev/badge/skills/solana-mobile/solana-mobile-skills/seeker-genesis-token.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 76 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,548 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • Socket pass 3 Sept 2026
  • Snyk pass 3 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.00076 $0.02548
Opus 5 $0.00038 $0.01274
Sonnet 5 $0.00015 $0.00510
Haiku 4.5 $0.00008 $0.00255

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

Security

Grade B, and why

seeker-genesis-token scanned grade B with 1 finding 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.

Sends data to an external URLmediumData exfiltration

A POST to an outside endpoint may be telemetry or may be exfiltration; either way the mod talks to somewhere, and you should know where.

const issued = await fetch('https://yourdapp.com/api/siws/nonce', { method: 'POST' }).then(
skills/seeker-genesis-token/SKILL.md · 258 lines

How it starts

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

Seeker Genesis Token verification

The Seeker Genesis Token (SGT) is a Token-2022 NFT minted once per Seeker device. Holding one is evidence of owning a Seeker, which makes it useful for gating rewards and for one-claim-per-device logic.

Verification has two halves, and both are required:

  1. Prove the user controls the wallet — Sign-in-with-Solana (SIWS)
  2. Prove that wallet holds an SGT — inspect the wallet's Token-2022 mints

Doing only the second means anyone can submit a real Seeker owner's public address and pass. Doing only the first proves wallet control but says nothing about a device.

This must run on a server

Never decide entitlement client-side. A client can be patched, so a client-side hasSGT boolean is worth nothing. The client's job is to collect a signature; the server verifies it and owns the result.

Requirements:

  • A backend you control that can make Solana mainnet RPC calls
  • Storage for nonces and claim records
  • An RPC endpoint. A paid provider helps, since the check may enumerate many token accounts — keep that key server-side only, never in an EXPO_PUBLIC_* variable

Prerequisites

A working wallet connection. If the app has none, use the solana-mobile-wallet skill first; this skill assumes useMobileWallet() is available.

Testing needs a physical Seeker device — an emulator cannot hold an SGT. Plan for a code path you can exercise without one, such as a server-side allowlist in development.

Step 1: issue the payload from the server

The server issues the whole SIWS payload, not just a nonce, and stores it under the nonce with a short TTL. Every field the client supplies is a field an attacker chooses, and each one is fed straight to the signature check, so pin them all at issue time.

// POST /api/siws/nonce
const issuedAt = new Date()
const nonce = crypto.randomBytes(16).toString('hex')

const payload = {
  chainId: 'solana:mainnet',
  domain: 'yourdapp.com',
  expirationTime: new Date(issuedAt.getTime() + 300_000).toISOString(),
  issuedAt: issuedAt.toISOString(),
  nonce,
  statement: 'Sign in to verify Seeker ownership',
  uri: 'https://yourdapp.com',
  version: '1',
}

await store.put(nonce, payload, { ttlSeconds: 300 })
return payload

Read the full file on GitHub · 258 lines

Files

What ships with it

1 file 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 · +92 lines scan A → B 7d941efe1c3b
  2. 12d ago First seen · 166 lines · 76 tokens per session scan A 3c200ee44f9a

Subscribe to this mod's changes

seeker-genesis-token is a skill published in the GitHub repository solana-mobile/solana-mobile-skills (6 stars, last pushed yesterday), licensed Apache-2.0. It adds 76 tokens to every session and 2,548 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it B with 1 finding (sends data to an external url). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.