peec-checkup

peec-checkup is a skill for Claude Code from AntonioBlago/peec-ai-skills. It costs 165 tokens per session (3,551 once invoked), scanned A, original, MIT.

A read-only health check for a Peec AI project, a tool that measures how visible a brand is in AI-generated answers. It reviews the project setup, current visibility, and biggest improvement opportunities.

In plain words
What is it for?
Use it to audit competitors, customer-journey stages, categories, prompts, and brand performance. It produces a dated Markdown report with five to eight recommended improvements.
Why use it?
It reveals setup mistakes and visibility gaps before they distort your measurements or waste effort. It gives you a short, ranked diagnosis instead of requiring you to inspect the project manually.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter.

Good fit Use it to audit competitors, customer-journey stages, categories, prompts, and brand performance. It produces a dated Markdown report with five to eight recommended improvements.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/antonioblago/peec-ai-skills/peec-checkup
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.

Any agent
npx skills add AntonioBlago/peec-ai-skills --skill peec-checkup
Clone the repo
git clone --depth 1 https://github.com/AntonioBlago/peec-ai-skills

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 peec-checkup

README.md
[![agentmods](https://agentmods.dev/badge/skills/antonioblago/peec-ai-skills/peec-checkup/github.svg)](https://agentmods.dev/skills/antonioblago/peec-ai-skills/peec-checkup)
Your own site
<a href="https://agentmods.dev/skills/antonioblago/peec-ai-skills/peec-checkup"><img src="https://agentmods.dev/badge/skills/antonioblago/peec-ai-skills/peec-checkup/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 peec-checkup

Your own site · 80×15
<a href="https://agentmods.dev/skills/antonioblago/peec-ai-skills/peec-checkup"><img src="https://agentmods.dev/badge/skills/antonioblago/peec-ai-skills/peec-checkup.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 165 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,551 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.00165 $0.03551
Opus 5 $0.00082 $0.01775
Sonnet 5 $0.00033 $0.00710
Haiku 4.5 $0.00016 $0.00355

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

Security

Grade A, and why

peec-checkup 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 12d 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.

skills/peec-checkup/SKILL.md · 302 lines

How it starts

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

Peec Checkup

Role

Single read-only pass over a Peec project that answers three questions:

  1. Setup quality — is the project configured correctly, or are there structural problems holding back every measurement?
  2. Brand performance now — where does the brand actually stand, snapshot today?
  3. Top improvements — which 5–8 concrete moves would move the needle most, ranked?

No writes. No content production. No outreach. Pure diagnosis + recommendations.

Input

  • project_id — Peec project (read from setup_state.json per pre-flight; fallback to mcp__peec-ai__list_projects if state missing)
  • optional date_range — default last 28 days (falls back to whatever data exists if project is younger)
  • optional top_n — number of improvements to surface, default 5, max 8

Output

One markdown report saved to <project>/checkups/YYYY-MM-DD_checkup.md (schema in §6). Mirrored to stdout for the user. Never modifies setup_state.json or any Peec data.

When to use

  • "Wo stehe ich bei Peec?" / "Wie ist mein Status?"
  • "Mein Setup checken" / "Was läuft falsch bei meinem Peec-Projekt?"
  • "Welche Verbesserungspotenziale gibt es?"
  • Onboarding a project from another consultant — first pass to see what was set up
  • Periodic ritual: monthly without 4 weeks of action history (use peec-report instead when history exists)
  • After someone else changed the Peec project and you want to see what shifted

Do not use when:

  • The user wants ONE next action — that is /peec-agent
  • The user wants attribution of past actions — that is /peec-report
  • The project is empty — that is /peec-setup (full mode)
  • The user wants to mutate Peec — every other skill, not this one

Pipeline

0. Pre-flight — setup state required (lenient)

Per _shared/SETUP_STATE.md, this skill prefers a state file but does not hard-stop without one — checkup is itself the audit you'd run when state is missing. Logic:

Read <project>/growth_loop/setup_state.json
If present:
  Use peec_project_id, target_country, prompt_language from state.
  Note the setup age in the report.
If missing:
  Resolve project via mcp__peec-ai__list_projects.
  Note in the report: "no setup_state.json — run /peec-setup
  (mode: import) after this checkup to persist findings."
  Default target_country=DE, prompt_language=de UNLESS the user said otherwise.

Read the full file on GitHub · 302 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. 12d ago First seen · 302 lines · 165 tokens per session scan A a89461ed67f4

Subscribe to this mod's changes

peec-checkup is a skill published in the GitHub repository AntonioBlago/peec-ai-skills (9 stars, last pushed 4mo ago), licensed MIT. It adds 165 tokens to every session and 3,551 once invoked, about $0.0008 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 skills, from other repositories

geo-visibility

Get cited and recommended by AI engines (ChatGPT, AI Overviews and AI Mode, Perplexity, Claude, Gemini). Input: a page or piece of content. Output: passage-level citability fixes (answer-first H2 blocks, self-contained chunks, definitions, sourced stats, comparison tables), a 5-pillar GEO score (0-100), an AI-crawler…

Thibaultbm/claude-seo-geo · 133 tokens

seo-content-collection-page

Optimize e-commerce collection, category, and product listing pages (PLPs) for Google and AI assistants. Input: a collection or category page (Shopify, WooCommerce, Magento, BigCommerce, PrestaShop, or custom). Output: a bottom-of-page SEO text block, faceted-navigation and filter URL control, pagination canonicals…

Thibaultbm/claude-seo-geo · 122 tokens

geo-tracking

Measure AI visibility without paid tools or API keys. Input: your site (GA4 and server logs) and a buyer prompt panel. Output: GA4 AI-traffic reporting (custom channel group plus referrer regex above Referral), monthly brand mention rate, citation rate, and share of voice versus competitors across ChatGPT, Perplexity…

Thibaultbm/claude-seo-geo · 121 tokens

seo-content-blog

Write blog articles that rank on Google and get cited by AI engines (ChatGPT, Perplexity, AI Overviews). Input: a keyword, topic, or existing draft. Output: a publish-ready article, outline, or brief built on a 12-element answer-first skeleton (question H2s, expert quotes, stats, FAQ, internal links, SERP-benchmarked…

Thibaultbm/claude-seo-geo · 110 tokens

seo-content-product-page

Optimize e-commerce product pages (PDPs) for Google and for AI assistants that now recommend products directly. Input: a product page or description (Shopify, WooCommerce, Magento, BigCommerce, PrestaShop, Wix, Webflow, or custom). Output: a rewritten PDP with unique copy, FAQ and definition blocks, review and…

Thibaultbm/claude-seo-geo · 124 tokens

seo-internal-linking

Design internal linking so authority flows to the pages that sell and every page stays crawlable. Input: a sitemap, an article, or a set of posts. Output: money-page mapping, orphan-page fixes, content silos and hub-and-spoke clusters, anchor-text variation, breadcrumb/menu/footer roles, and keyword cannibalization…

Thibaultbm/claude-seo-geo · 111 tokens