SeekerClaw: Instructions file for Claude Code

CLAUDE.md

SeekerClaw CLAUDE.md is an instructions file for Claude Code from sepivip/SeekerClaw. It costs 12,001 tokens per session, scanned A, original, MIT.

A project guide for SeekerClaw, an Android app that runs a personal AI agent on a Solana Seeker phone. It tells coding agents where the project’s source of truth is and what user experience principles to follow.

In plain words
What is it for?
Use it when adding features, updating project documentation, checking supported devices, or making interface and configuration decisions in SeekerClaw.
Why use it?
It keeps feature work aligned with the project’s current state and user needs. It also makes agents record progress, shipped work, and known limitations.

Instructions file for Claude Code

Written for Claude Code: the file is CLAUDE.md. Also seen: mentions CLAUDE.md; built for openclaw.

This is sepivip/SeekerClaw's own configuration. It tells Claude Code how to work on SeekerClaw itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything SeekerClaw configures →

Reuse

Borrowing it

Nothing to install: this file belongs to sepivip/SeekerClaw. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/sepivip/SeekerClaw/main/CLAUDE.md
Clone the repo
git clone --depth 1 https://github.com/sepivip/SeekerClaw

Made for: Claude Code.

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 SeekerClaw CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/sepivip/seekerclaw/claude-md.svg)](https://agentmods.dev/instructions/sepivip/seekerclaw/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/sepivip/seekerclaw/claude-md"><img src="https://agentmods.dev/badge/instructions/sepivip/seekerclaw/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 12,001 This file is loaded in full into every session.
When invoked 12,001 The same file — it is already loaded in full.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
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.12001 $0.12001
Opus 5 $0.06000 $0.06000
Sonnet 5 $0.02400 $0.02400
Haiku 4.5 $0.01200 $0.01200

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

Security

Grade A, and why

SeekerClaw CLAUDE.md scanned grade A 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 4d 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.

Runs shell commandslowCapability

Expected in a hook, worth knowing in a rule or an instructions file.

- `node`, `npm`, `npx` commands **cannot** be found or executed via `shell_exec` / `child_process`
CLAUDE.md · 962 lines

How it starts

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

CLAUDE.md — SeekerClaw Project Guide

Background research: See docs/internal/RESEARCH.md | Source of truth: See PROJECT.md

PROJECT.md — Source of Truth

  • Read PROJECT.md before any feature work
  • After shipping any feature: update Shipped section + Changelog
  • After starting any feature: move it to In Progress
  • Keep Limitations section honest — if it doesn't work, list it
  • One-Liner and Elevator Pitch should always reflect current state
  • Update Stats periodically (tool count, skill count, lines of code)

Design Principle: UX First

Always think about user experience. This is the top priority when building SeekerClaw. Every UI decision, feature implementation, and config flow should be designed from the user's perspective. Ask: "Is this intuitive? Will the user lose data? Is switching between options seamless?" When in doubt, prioritize ease of use over technical elegance.

What Is This Project

SeekerClaw (package: com.seekerclaw.app) is an Android app that turns a Solana Seeker phone into a 24/7 personal AI agent. It embeds a Node.js runtime via nodejs-mobile and runs the OpenClaw gateway as a foreground service. Users interact with their agent through Telegram — the app itself is minimal (setup, status, logs, settings).

Supported Devices

  • Primary: Solana Seeker (Android 14, Snapdragon 6 Gen 1, 8GB RAM)
  • Secondary: Any Android 14+ with 4GB+ RAM
  • Note: OEM-modified ROMs (Xiaomi MIUI, Samsung OneUI) may aggressively kill background services — Seeker's stock Android avoids this.

Development Phases

  • Phase 1 (PoC): Mock OpenClaw with a simple Node.js Telegram bot (grammy/telegraf) that responds to a hardcoded message. Proves Node.js runs on device, Telegram round-trip works.
  • Phase 2 (App Shell): Replace mock with real OpenClaw gateway bundle. Full setup flow, all screens, watchdog, boot receiver.

Version Tracking (KEEP UPDATED)

When updating OpenClaw or nodejs-mobile, update these version strings in ONE place: app/build.gradle.kts → the openclawVersion / nodejsVersion vals at the top of the file.

The app version (versionName / versionCode) is also in app/build.gradle.kts, as appVersionName / appVersionCode. All four are declared once and referenced from everywhere else — never retype a value a second time, or the copies drift.

Identity is read at RUNTIME — never off BuildConfig (BAT-1293). UI and diagnostics get versionName / versionCode from BuildProvenance.installed(context), which asks PackageManager about the installed package, and commit / dirty / openclawVersion / nodejsVersion from BuildProvenance.get(context), which reads the packaged assets/build-metadata.json (app/src/main/java/com/seekerclaw/app/config/BuildProvenance.kt).

A buildConfigField for any identity value is FORBIDDEN: it compiles to a static final, which is INLINED into every reader, so when the value changes incremental compilation does not recompile those readers and they keep the OLD literal — that is how a build reported a SHA it did not contain. And build-metadata.json is a build-time COPY, so it is the source for the engine and commit fields only, never for versionName / versionCode. tests/nodejs-project/build-identity-invariant.test.js enforces both halves in CI.

Read the full file on GitHub · 962 lines

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. 4d ago Changed · +20 lines · +343 tokens per session cfd80aa54506
  2. 8d ago First seen · 942 lines · 11,658 tokens per session scan A b470cc40963a

Subscribe to this mod's changes

SeekerClaw CLAUDE.md is an instructions file published in the GitHub repository sepivip/SeekerClaw (314 stars, last pushed today), licensed MIT. It adds 12,001 tokens to every session, about $0.0600 per session on Opus 5. A static security scan graded it A with 1 finding (runs shell commands). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other instructions, from other repositories

codex AGENTS.md

AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.

openai/codex · 5,153 tokens

vscode buildNext.instructions.md

Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).

microsoft/vscode · 6,785 tokens

next.js AGENTS.md

AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.

vercel/next.js · 7,296 tokens

langchain AGENTS.md

AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.

langchain-ai/langchain · 4,469 tokens

vscode oss-third-party-notices.instructions.md

Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).

microsoft/vscode · 5,001 tokens

spec-kit AGENTS.md

AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.

github/spec-kit · 7,104 tokens