technical-analyst

technical-analyst is an agent for Claude Code from mshahiddigital/agentic-local-seo-audit. It costs 43 tokens per session (962 once invoked), scanned A, original, MIT.

A technical SEO audit agent for checking whether a website can be found, loaded, understood, and used by search engines and people.

In plain words
What is it for?
Use it to review robots.txt, sitemaps, indexing, AI crawler access, URLs, HTTPS, redirects, canonical links, Core Web Vitals, speed, and accessibility.
Why use it?
It helps expose blocked pages, broken redirects, slow loading, security issues, accessibility problems, and other technical obstacles to search visibility.

Agent for Claude Code

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

Part of the local-seo-audit plugin — 6 skills, 42 commands, 6 agents shipped together

Good fit Use it to review robots.txt, sitemaps, indexing, AI crawler access, URLs, HTTPS, redirects, canonical links, Core Web Vitals, speed, and accessibility.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/mshahiddigital/agentic-local-seo-audit/technical-analyst
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.

Clone the repo
git clone --depth 1 https://github.com/mshahiddigital/agentic-local-seo-audit

Made for: Claude Code.

Or install local-seo-audit, the plugin that ships this one along with the rest of its 6 skills, 42 commands, 6 agents.

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 technical-analyst

README.md
[![agentmods](https://agentmods.dev/badge/agents/mshahiddigital/agentic-local-seo-audit/technical-analyst/github.svg)](https://agentmods.dev/agents/mshahiddigital/agentic-local-seo-audit/technical-analyst)
Your own site
<a href="https://agentmods.dev/agents/mshahiddigital/agentic-local-seo-audit/technical-analyst"><img src="https://agentmods.dev/badge/agents/mshahiddigital/agentic-local-seo-audit/technical-analyst/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for technical-analyst

Your own site · 80×15
<a href="https://agentmods.dev/agents/mshahiddigital/agentic-local-seo-audit/technical-analyst"><img src="https://agentmods.dev/badge/agents/mshahiddigital/agentic-local-seo-audit/technical-analyst.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 43 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 962 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.00043 $0.00962
Opus 5 $0.00022 $0.00481
Sonnet 5 $0.00009 $0.00192
Haiku 4.5 $0.00004 $0.00096

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

Security

Grade A, and why

technical-analyst 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 9d 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/technical-analyst.md · 92 lines

How it starts

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

You are a technical SEO specialist handling 3 audit phases. You work as part of a multi-agent audit team.

Your Phases

  1. Phase 2 — Technical SEO → Output: {AUDIT_DIR}/technical-findings.md
  2. Phase 10 — Core Web Vitals & Speed → Output: {AUDIT_DIR}/speed-findings.md
  3. Phase 19 — Accessibility → Output: {AUDIT_DIR}/accessibility-findings.md

First Step (ALWAYS)

Read {AUDIT_DIR}/intake-data.md to get: business name, URL, location, PROJECT_DIR, AUDIT_DIR, REPORTS_DIR.

Phase 2: Technical SEO Checklist

Read the full skill at audit/technical-seo/SKILL.md for detailed instructions. Key areas:

  • Crawlability: robots.txt, XML sitemap, index coverage, crawl budget, orphan pages
  • AI Crawler Access: Check all 14 AI crawlers (3 tiers). Tier 1 MUST be allowed: GPTBot, OAI-SearchBot, ChatGPT-User, ClaudeBot, PerplexityBot
  • IndexNow: Check for /.well-known/indexnow-key.txt, Bing Webmaster Tools
  • llms.txt: Check for /llms.txt presence
  • URL structure: Lowercase, hyphens, clean paths, max 3-click depth
  • HTTPS: SSL valid, HTTP→HTTPS redirect, HSTS, security headers
  • Redirects: Chains, loops, 302 misuse
  • Canonicals: Self-referencing, no conflicts with noindex
  • Schema: LocalBusiness, Organization, FAQPage, HowTo, BreadcrumbList, Service, Speakable
  • JS rendering: Content visible without JS (critical for AI crawlers)
  • CWV technical assessment: LCP <2.5s, INP <200ms, CLS <0.1

Use python3 scripts/site_crawler.py and python3 scripts/check_url.py for data gathering.

Phase 10: Speed & Core Web Vitals

Read audit/speed-optimization/SKILL.md. Key areas:

  • PageSpeed Insights API for field + lab data
  • LCP root causes (images, fonts, server response)
  • INP root causes (JS event handlers, third-party scripts)
  • CLS root causes (images without dimensions, dynamic content)
  • Image optimization (WebP/AVIF, lazy loading, srcset)
  • Critical rendering path (render-blocking CSS/JS)

Phase 19: Accessibility

Read the full file on GitHub · 92 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. 9d ago First seen · 92 lines · 43 tokens per session scan A e9328a3a48f5

Subscribe to this mod's changes

technical-analyst is an agent published in the GitHub repository mshahiddigital/agentic-local-seo-audit (20 stars, last pushed 5mo ago), licensed MIT. It adds 43 tokens to every session and 962 once invoked, about $0.0002 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

seo-auditor

Run a full SEO + AEO + GEO audit on a website or codebase. Use when user asks to "audit my site", "comprehensive SEO audit", "full site audit", "complete SEO check", or wants an end-to-end report covering technical, on-page, schema, AEO, GEO, and AI visibility. Autonomously crawls the codebase or fetches URLs and…

akii-technologies-ltd/akii-seo-ai-search-optimizer · 90 tokens

ai-visibility-analyzer

Deep autonomous brand visibility analysis across all 6 AI engines — multi-pass real-query probes (5+ engines × 5–10 queries), business-DB scan, citation source enumeration, competitor disambiguation, full 30-day defense plan. Use ONLY when the user explicitly asks for "deep AI visibility analysis", "agent mode"…

akii-technologies-ltd/akii-seo-ai-search-optimizer · 155 tokens

competitor-analyzer

Deep autonomous competitor research — multi-pass crawl across 5+ competitors with full backlink delta, 1000+-term keyword overlap, schema coverage scan, and review-platform delta. Use ONLY when the user explicitly asks for "deep competitor analysis", "agent mode", "autonomous competitor research", "full competitor…

akii-technologies-ltd/akii-seo-ai-search-optimizer · 120 tokens

content-strategist

Deep autonomous content strategy — multi-pass site crawl, competitor content audit, full keyword + topic gap analysis, pillar + cluster topology, and 90-day publishing queue grounded in real GSC/SERP data. Use ONLY when the user explicitly asks for "deep content audit", "agent mode", "autonomous content strategy"…

akii-technologies-ltd/akii-seo-ai-search-optimizer · 122 tokens

schema-generator

Deep autonomous schema generation across 3+ pages or the whole site — multi-file scan, JSON-LD generation, validation, and writing into source files (with user approval per file). Use ONLY when the user explicitly asks for "bulk schema", "schema across my site", "audit all schema", "fix schema everywhere", "every…

akii-technologies-ltd/akii-seo-ai-search-optimizer · 124 tokens

ecto-schema-designer

Ecto schema architect - designs migrations, data models, and query patterns. Use proactively when planning database structure for new features.

oliver-kriska/claude-elixir-phoenix · 30 tokens