open-graph-share-seo-geo

open-graph-share-seo-geo is a skill for Claude Code, Codex from lossless-group/lossless-agent-skills. It costs 226 tokens per session (6,864 once invoked), scanned A, original, MIT.

A guide to the page information that controls link previews in messaging and social apps, search-engine discovery, and visibility to generative AI systems.

In plain words
What is it for?
Setting up or debugging Open Graph and Twitter Card tags, preview images, sitemaps, robots.txt, and llms.txt files.
Why use it?
It helps explain why shared links have missing or incorrect previews and why pages may be hard for search engines or AI tools to find and read.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is import template from '../llms/llms.md?raw';.

Good fit Setting up or debugging Open Graph and Twitter Card tags, preview images, sitemaps, robots.txt, and llms.txt files.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/lossless-group/lossless-agent-skills
agentmods
npx agentmods add skills/lossless-group/lossless-agent-skills/open-graph-share-seo-geo

Made for: Claude Code, Codex.

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 open-graph-share-seo-geo

README.md
[![agentmods](https://agentmods.dev/badge/skills/lossless-group/lossless-agent-skills/open-graph-share-seo-geo/github.svg)](https://agentmods.dev/skills/lossless-group/lossless-agent-skills/open-graph-share-seo-geo)
Your own site
<a href="https://agentmods.dev/skills/lossless-group/lossless-agent-skills/open-graph-share-seo-geo"><img src="https://agentmods.dev/badge/skills/lossless-group/lossless-agent-skills/open-graph-share-seo-geo/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 open-graph-share-seo-geo

Your own site · 80×15
<a href="https://agentmods.dev/skills/lossless-group/lossless-agent-skills/open-graph-share-seo-geo"><img src="https://agentmods.dev/badge/skills/lossless-group/lossless-agent-skills/open-graph-share-seo-geo.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 226 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 6,864 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00226 $0.06864
Opus 5 $0.00113 $0.03432
Sonnet 5 $0.00045 $0.01373
Haiku 4.5 $0.00023 $0.00686

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

Security

Grade A, and why

open-graph-share-seo-geo scanned grade A with 1 finding 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

**Rule:** Verify with `curl -sI` (no `Accept` header) what `content-type` the server returns. Whatever that is — `image/jpeg`, `image/png`, `image/webp` — is what goes in `<meta property="og:image:type">`. The URL's file
open-graph-share-seo-geo/SKILL.md · 426 lines

How it starts

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

OpenGraph, Share, SEO & GEO

Make the link unfurl. Make it fast. Make it match the bytes.

Lossless Group convention for share metadata across all sites (Astro Knots, plugin pages, splash, fundraise decks). Optimized for iMessage and WhatsApp first (the channels we share through most), with Slack, Discord, LinkedIn, X, Facebook, and generative engines (Perplexity, ChatGPT, Claude, Gemini) as concentric rings around that.

When to use this skill

  • Adding or auditing <head> meta tags on any page that gets shared
  • "It's not unfurling in iMessage / WhatsApp / Slack" debugging
  • Picking the OG image format (.webp vs .jpg vs .png)
  • Deciding where to host the OG image (/public vs CDN)
  • Building or modifying a MetaTags-style component
  • Reviewing or shipping a marketing splash, plugin page, blog post, fundraise deck
  • Setting up GEO (Generative Engine Optimization) on a content-heavy page
  • Scaffolding /llms.txt and /llms-full.txt for LLM corpus ingest, or porting that pattern to a new splash
  • Adding @astrojs/sitemap + robots.txt to a splash or marketing site for proper search-engine discoverability

Hard rules (Why + How to apply)

1. Host the OG image on a remote CDN, not /public

Rule: Default OG image goes on a CDN (ImageKit, Cloudflare Images, S3+CloudFront, Vercel Blob). Do not point og:image at a local /public/og.png served by GitHub Pages or a static host.

Why: Local assets behind GitHub Pages unfurl intermittently in iMessage, WhatsApp, and Slack. The original page renders fine, but the unfurler silently skips the image — usually because of slow first-byte time, missing Content-Length, missing CORS, or aggressive negative caching. CDNs (ImageKit in particular) ship the right headers (access-control-allow-origin: *, cache-control: public, max-age=…, accurate content-length, etag) and serve from edges close to the unfurler.

How to apply: When scaffolding a new site's OG defaults, upload the banner to ImageKit first and reference the absolute URL. Treat /public/og-default.png as a fallback only — better yet, do not bother committing it.

Read the full file on GitHub · 426 lines

Files

What ships with it

5 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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 · 426 lines · 226 tokens per session scan A a794df48f117

Subscribe to this mod's changes

open-graph-share-seo-geo is a skill published in the GitHub repository lossless-group/lossless-agent-skills (4 stars, last pushed 19d ago), licensed MIT. It adds 226 tokens to every session and 6,864 once invoked, about $0.0011 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). 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

session-review

End-of-session adversarial review loop. Assemble the session's work into a role-assigned, self-contained brief, then run independent reviewers in parallel — an isolated code-reader (the idea-validator agent) that reads the ACTUAL files and web-checks technology currency, plus an external-family model if you have one …

awrshift/agent-memory-kit · 149 tokens

memory-audit

Audit MEMORY.md against the memory discipline — oversized sections, settled multi-session patterns that belong in knowledge/concepts/, stacked chronicle blocks, stale entries. Produces a move plan as a table for approval, then executes the approved moves atomically. Use when the SessionStart hook reports a tripped…

awrshift/agent-memory-kit · 119 tokens

second-opinion

Cross-check the agent's own answer with independent reviewers before bringing it to the user. Use when the user says 'second opinion', 'sanity check', 'cross-check', 'am I missing something', 'stress-test', 'devil's advocate', 'run a full review', 'this is important', 'high-stakes', 'help me choose between', 'critique…

awrshift/agent-memory-kit · 130 tokens

close-session

An end-of-session workflow that reviews new lessons, asks before promoting repeated patterns, refreshes memory files, and writes a handoff.

awrshift/agent-memory-kit · 64 tokens

next-cache-components

Next.js 16 Cache Components guidance. Use when refactoring React Server Components for performance, debugging Partial Prerendering (PPR) issues, or applying the use cache directive, cacheLife, cacheTag, updateTag, and revalidateTag. Also use when deciding whether data should be static, cached, or dynamic, or when…

neverinfamous/memory-journal-mcp · 99 tokens

agents-sdk

Build AI agents on Cloudflare Workers using the Agents SDK or build Model Context Protocol (MCP) servers. Load when creating stateful agents, durable workflows, MCP servers, checking MCP schema/error responses, or reviewing MCP code quality. Covers Agent class, state management, callable RPC, Workflows integration…

neverinfamous/memory-journal-mcp · 95 tokens