seoagent CLAUDE.md

seoagent CLAUDE.md is an instructions file for coding agents from yagomp/seoagent. It costs 593 tokens per session, scanned A, original, MIT.

A project-specific instruction file for SEOAgent, an open-source toolkit for keyword research, search-rank tracking, website audits, competitor analysis, and related SEO work. It documents the TypeScript monorepo, its packages, tools, and commands.

In plain words
What is it for?
Use it when adding features, finding the core business logic, running builds or tests, or working with the command-line tool, MCP server, dashboard, and database.
Why use it?
It gives a coding agent the project structure and working conventions it needs to make changes in the right place and run the right checks.

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/yagomp/seoagent/claude-md
Clone the repo
git clone --depth 1 https://github.com/yagomp/seoagent

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

README.md
[![agentmods](https://agentmods.dev/badge/instructions/yagomp/seoagent/claude-md.svg)](https://agentmods.dev/instructions/yagomp/seoagent/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/yagomp/seoagent/claude-md"><img src="https://agentmods.dev/badge/instructions/yagomp/seoagent/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 593 This file is loaded in full into every session.
When invoked 593 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.00593 $0.00593
Opus 5 $0.00296 $0.00296
Sonnet 5 $0.00119 $0.00119
Haiku 4.5 $0.00059 $0.00059

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

Security

Grade A, and why

seoagent 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 3d 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 · 57 lines

How it starts

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

SEOAgent

Open-source, agent-first SEO toolkit — keyword research, rank tracking, site audits, competitor analysis, content gap analysis, domain reputation, and AI-powered strategy generation.

Architecture

TypeScript pnpm monorepo with 4 packages:

  • packages/core/ (@seoagent/core) — all business logic. Every feature is a function here first.
  • packages/cli/ (seoagent) — commander.js CLI, thin wrapper over core
  • packages/mcp/ (seoagent-mcp) — MCP server with 24 tools, thin wrapper over core
  • packages/dashboard/ — Vite + React + Tailwind local web UI (read-only)

Tech Stack

  • TypeScript, Node.js >= 20, pnpm workspaces
  • SQLite via better-sqlite3 (one DB per project at ~/.seoagent/projects/<slug>/seoagent.db)
  • Vitest for testing (260 tests across 38 files)
  • DataForSEO for keyword/SERP/backlink data
  • Google Search Console API (googleapis)
  • LLM strategy: Anthropic SDK, OpenAI SDK, Ollama (fetch)
  • Crawler: undici + cheerio
  • Dashboard: Vite, React, React Router, Tailwind CSS v4, Recharts

Key Commands

pnpm install          # install all deps
pnpm build            # build all packages
pnpm test             # run all tests
pnpm -r run test      # run tests across all packages

# Core only
cd packages/core && pnpm test
cd packages/core && pnpm build

Code Conventions

  • All business logic in packages/core/src/. CLI/MCP/Dashboard are thin wrappers.
  • Barrel export from packages/core/src/index.ts — add new exports there.
  • Tests in packages/core/src/__tests__/ using Vitest with globals.
  • TDD workflow: test first, implement, verify.
  • SQLite schema in packages/core/src/schema.ts — tables created via openDatabase().
  • Config at ~/.seoagent/config.json, projects at ~/.seoagent/projects/<slug>/.
  • SEOAGENT_HOME env var overrides ~/.seoagent (used in tests with temp dirs).

Data Sources

  1. Free: Google Search Console API, PageSpeed Insights, local crawler
  2. Paid: DataForSEO (~$0.001/query) — keyword volumes, SERP, backlinks
  3. Derived: content gaps, rank deltas, audit scores, strategy (LLM or rule-based)

Read the full file on GitHub · 57 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. 3d ago First seen · 57 lines · 593 tokens per session scan A f9df59746a41

Subscribe to this mod's changes

seoagent CLAUDE.md is an instructions file published in the GitHub repository yagomp/seoagent (0 stars, last pushed 5mo ago), licensed MIT. It adds 593 tokens to every session, about $0.0030 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.

Related

Other instructions, from other repositories