ponscli CLAUDE.md

ponscli CLAUDE.md is an instructions file for coding agents from mesutgulecen/ponscli. It costs 804 tokens per session, scanned A, original, MIT.

A project instruction file for ponscli, a TypeScript command-line tool and MCP server for the Pons launchpad on Robinhood Chain. It documents the code layout, deployment-specific facts, and how to verify changes.

In plain words
What is it for?
Use it when modifying ponscli's business logic, command-line interface, MCP server, blockchain access, generated contract interfaces, documentation, or tests.
Why use it?
It gives an agent the project rules needed to avoid trusting outdated contract sources or making unsupported claims about live blockchain behavior.

Instructions file

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.

agentmods
npx agentmods add instructions/mesutgulecen/ponscli/claude-md
Clone the repo
git clone --depth 1 https://github.com/mesutgulecen/ponscli

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

README.md
[![agentmods](https://agentmods.dev/badge/instructions/mesutgulecen/ponscli/claude-md.svg)](https://agentmods.dev/instructions/mesutgulecen/ponscli/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/mesutgulecen/ponscli/claude-md"><img src="https://agentmods.dev/badge/instructions/mesutgulecen/ponscli/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 804 This file is loaded in full into every session.
When invoked 804 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
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 $0.00804 $0.00804
Opus 5 $0.00402 $0.00402
Sonnet 5 $0.00161 $0.00161
Haiku 4.5 $0.00080 $0.00080

Measured 4d ago against content hash 96e2a6d8301a, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

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

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.md · 68 lines

How it starts

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

ponscli

A TypeScript + viem CLI for the Pons launchpad on Robinhood Chain (4663). Two binaries: pons for people, pons-mcp for models.

The rule that matters most

Protocol values come from the chain, not from contract source and not from this file. The deployed values differ from the sources in ways that change results: snipeTaxSeconds is 3 where the source says 15, the V3 factory is not at its canonical address, and the approved quote-asset list has both grown and shrunk. Anything you assert about how Pons behaves should be something you read off mainnet, and docs/architecture/ponscli.md records how every existing claim was measured. If a measurement contradicts that document, the document is what is wrong. Correct it in place and say so.

Layout

src/core/ Business logic. Framework-free: no commander, no reporter, no argv.
src/commands/ Thin CLI wiring over core/.
src/mcp/ The MCP server, also thin, over the same core/.
src/chain/ The two-tier RPC waterfall, endpoint health, transports.
src/abi/ Generated and committed. Do not edit by hand.
docs/architecture/ponscli.md Every decision, and the measurement behind it.

New behaviour belongs in core/, where both front ends can reach it. If you find yourself copying logic from a command into an MCP tool, that logic was in the wrong place.

Verifying a change

Use the verify skill, or run npm run typecheck, npm run lint, npm test, npm run build. npm run abi:check reaches the network and is deliberately not part of the test suite.

Things that will bite

  • --json is the default when stdout is not a TTY. A command emits exactly one payload per invocation; anything conversational goes to stderr through reporter.note or reporter.warn.
  • pons-mcp writes JSON-RPC on stdout. Nothing in that process may console.log. One stray line desynchronises the client's parser.
  • The MCP server never signs, and nothing should be added that does. It reads and it builds unsigned plans; a person sends them.
  • Never put a private key or a password on a command line. argv is in the process table and in shell history. PONS_PRIVATE_KEY for import, PONS_PASSWORD or the hidden prompt for unlocking. A hook enforces this.
  • --confirm spends real money. The other three modes, plan, --dry-run and --unsigned, cost nothing. Every mode but --unsigned simulates against live state with a balance override, so the default already proves a call works without funds; --dry-run asks for the same thing explicitly.
  • A launch cannot be undone. pons launch is the one irreversible command.

Read the full file on GitHub · 68 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 First seen · 68 lines · 804 tokens per session scan A 96e2a6d8301a

Subscribe to this mod's changes

ponscli CLAUDE.md is an instructions file published in the GitHub repository mesutgulecen/ponscli (0 stars, last pushed yesterday), licensed MIT. It adds 804 tokens to every session, about $0.0040 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-31.