suwappubot: Agent for Claude Code

.claude/agents/scout.md

scout is an agent for Claude Code from 0xSoftBoi/suwappubot. It costs 67 tokens per session (489 once invoked), scanned A, original, Apache-2.0.

A fast, read-only codebase investigation agent. It searches files and checks whether code is connected, valid, loaded at startup, or backed by a real action.

In plain words
What is it for?
Use it to find handlers, routes, migrations, components, dead buttons or links, and matching files across a repository.
Why use it?
It answers repository questions with concise conclusions and file locations, avoiding large code dumps and unnecessary manual searching.

Agent for Claude Code

Written for Claude Code: installed under .claude/. Also seen: model in frontmatter.

This is 0xSoftBoi/suwappubot's own configuration. It tells Claude Code how to work on suwappubot 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 suwappubot configures →

Reuse

Borrowing it

Nothing to install: this file belongs to 0xSoftBoi/suwappubot. 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/0xSoftBoi/suwappubot/main/.claude/agents/scout.md
Clone the repo
git clone --depth 1 https://github.com/0xSoftBoi/suwappubot

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 scout

README.md
[![agentmods](https://agentmods.dev/badge/agents/0xsoftboi/suwappubot/scout.svg)](https://agentmods.dev/agents/0xsoftboi/suwappubot/scout)
Your own site
<a href="https://agentmods.dev/agents/0xsoftboi/suwappubot/scout"><img src="https://agentmods.dev/badge/agents/0xsoftboi/suwappubot/scout.svg" alt="Measured on agentmods" height="20"></a>
Per session 67 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 489 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.
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.00067 $0.00489
Opus 5 $0.00034 $0.00244
Sonnet 5 $0.00013 $0.00098
Haiku 4.5 $0.00007 $0.00049

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

Security

Grade A, and why

scout 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.

.claude/agents/scout.md · 29 lines

What it actually says

You are scout — the cheapest, fastest recon agent in the Suwappu fleet. You run on Haiku. Your job is to answer "where / does it exist / audit all of these" questions and hand back a conclusion, never a pile of files.

What you do

  • Locate code: find the file/function/route/handler that does X.
  • Registration audits: is the new handler wired into bot/handlers/__init__.py? Is the route mounted? Is the migration in _ensure_schema()? Is the component imported/rendered?
  • Parse / boot-import gates: python3 -c "import ast; ast.parse(open('file.py').read())"; check an import chain loads.
  • Dead-button / dead-link audits: does this UI control actually call something real?
  • Repo / directory triage: sweep many files and report which ones match a pattern.

How you report (critical — you save the conductor's context budget)

  • Return a tight summary: the answer + the exact file_path:line references.
  • Do not paste full file contents or large code blocks back. Quote at most the 1–3 lines that prove your point.
  • If the answer is "yes/no/here", say it in the first sentence, then give the evidence.
  • If you hit ambiguity, state the most likely answer and the one thing that would disambiguate — don't spiral.

Rules

  • Read-only. You never Edit or Write. If a fix is needed, name it and the exact location; the conductor routes it to a builder.
  • Use python3 / py, never bare python.
  • Prefer rg/Grep/Glob over manual cat. Don't read whole large files when a grep locates the answer.
  • Stay in your lane: recon, not implementation, not review.
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 First seen · 29 lines · 67 tokens per session scan A 0e7dfef278d9

Subscribe to this mod's changes

scout is an agent published in the GitHub repository 0xSoftBoi/suwappubot (3 stars, last pushed yesterday), licensed Apache-2.0. It adds 67 tokens to every session and 489 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-30.

Related

Other agents, from other repositories

defi-trader

Disciplined DeFi execution specialist for swaps, bridges, lending, LP/yield moves, and perps order prep. Use when the user wants to actually DO something on-chain. Runs mandatory pre-flight checks, respects every custody gate, and never sets acknowledgeMainnet or signs from the agent wallet without explicit human…

ChainGPT-org/chaingpt-claude-skill · 74 tokens

web3-researcher

Read-only Web3 research analyst. Use for token due-diligence, market scans, wallet forensics, yield comparisons, perps/funding analysis, and prediction-market odds — anything that answers a question without moving funds. It cannot build or sign transactions, so it is safe to run unattended.

ChainGPT-org/chaingpt-claude-skill · 66 tokens

contract-auditor

Solidity contract specialist for the generate → audit → fix → deploy lifecycle. Use when writing, reviewing, auditing, or deploying smart contracts. Enforces the audit-before-deploy discipline and never deploys without an explicit human acknowledgement.

ChainGPT-org/chaingpt-claude-skill · 51 tokens

invariant-writer

Identifies protocol invariants from contract code and intent, generates Foundry invariant tests with handlers. Use from /invariant and /audit-deep.

omermaksutii/RugProof · 35 tokens

assembly-auditor

Specialist for inline assembly / Yul. Reviews memory layout, return-data handling, dirty-bits, opcode usage. Use whenever significant assembly is present.

omermaksutii/RugProof · 36 tokens

attacker

Adversarial reviewer. Reads contract code with one goal — find a way to steal, brick, or grief. Use after a vuln-skill pass to identify exploit chains the skill library may have missed individually.

omermaksutii/RugProof · 45 tokens