seoagent AGENTS.md

Repository instructions for SEOAgent, a codebase for search-engine-optimization work, covering its packages, feature workflow, and testing patterns.

In plain words
What is it for?
Use them when adding or testing SEOAgent features across its core package, CLI, MCP server, or dashboard.
Why use it?
They show where business logic, types, tests, command-line commands, MCP tools, and dashboard code belong, so changes fit the project structure.

Instructions file for CodexOpenCode

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

Made for: Codex, OpenCode.

Per session 1,018 This file is loaded in full into every session.
When invoked 1,018 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.01018 $0.01018
Opus 5 $0.00509 $0.00509
Sonnet 5 $0.00204 $0.00204
Haiku 4.5 $0.00102 $0.00102

Measured yesterday against content hash 95d4841f78af, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

seoagent AGENTS.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 yesterday.

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.

AGENTS.md · 115 lines

How it starts

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

SEOAgent — Agent Instructions

This file provides instructions for AI coding agents (Claude Code, Codex, Gemini, Cursor, etc.) working on the SEOAgent codebase.

Quick Start

pnpm install && pnpm build && pnpm test

Where Things Live

What Where
All business logic packages/core/src/
Public API packages/core/src/index.ts (barrel export)
Types packages/core/src/types.ts
Database schema packages/core/src/schema.ts
Tests packages/core/src/__tests__/*.test.ts
CLI commands packages/cli/src/commands/
MCP tool handlers packages/mcp/src/tools/
Dashboard API packages/dashboard/src/server/routes.ts
Dashboard pages packages/dashboard/src/app/pages/

Adding a New Feature

  1. Add types to packages/core/src/types.ts (if needed)
  2. Write failing test in packages/core/src/__tests__/
  3. Implement in packages/core/src/ (new file or existing module)
  4. Export from packages/core/src/index.ts
  5. Add CLI command in packages/cli/src/commands/
  6. Add MCP tool in packages/mcp/src/tools/
  7. Add dashboard endpoint + page if applicable

Testing Patterns

  • Mock HTTP calls with vitest.mock("undici") or vitest.mock("googleapis")
  • Mock DataForSEO with vitest.mock("../dataforseo.js")
  • Use SEOAGENT_HOME env var pointing to temp dir for isolated tests
  • Database tests: create temp dir, openDatabase(), cleanup in afterEach
let tmpDir: string;
beforeEach(() => {
  tmpDir = fs.mkdtempSync(path.join(os.tmpdir(), "seoagent-test-"));
  process.env.SEOAGENT_HOME = tmpDir;
});
afterEach(() => {
  fs.rmSync(tmpDir, { recursive: true, force: true });
});

MCP Server

24 tools prefixed seoagent_. Install config:

{
  "mcpServers": {
    "seoagent": {
      "command": "node",
      "args": ["<absolute-path>/packages/mcp/dist/index.js"],
      "env": { "SEOAGENT_PROJECT": "<project-slug>" }
    }
  }
}

CLI

seoagent project add mysite --domain example.com --niche tech
seoagent project use mysite
seoagent config set dataforseo.login <login>
seoagent config set dataforseo.password <password>
seoagent keywords research "seo tips" --format json
seoagent audit crawl --max-pages 100
seoagent strategy generate

Read the full file on GitHub · 115 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. yesterday First seen · 115 lines · 1,018 tokens per session scan A 95d4841f78af

Subscribe to this mod's changes

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