build-resource-pages

build-resource-pages is a skill for Claude Code, Codex from onvoyage-ai/gtm-engineer-skills. It costs 72 tokens per session (3,061 once invoked), scanned A, original, MIT.

A development guide for adding a complete resource center to an existing website from prepared Markdown content. It covers the central resource page, section and article listings, article pages, navigation, and links between related content.

In plain words
What is it for?
Use it to inspect the website's framework and design system, build resource and article pages, add navigation and cross-links, and prepare the pages for production.
Why use it?
It helps turn written files into finished website pages that match the site's existing technology and visual system instead of leaving the content as disconnected documents.

Skill for Claude CodeCodex

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

Good fit Use it to inspect the website's framework and design system, build resource and article pages, add navigation and cross-links, and prepare the pages for production.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/onvoyage-ai/gtm-engineer-skills/build-resource-pages
About the project

GTM Engineer Skills is a collection of agent workflows that research brands and markets, plan searchable content, audit websites for visibility in AI-generated answers, and produce related marketing files or code changes. Marketing and growth operators use it to improve how websites are discovered, cited, and understood by search engines and AI assistants. The catalogue entries are the project's individual skills.

onvoyage-ai/gtm-engineer-skills · 1,301 stars · on GitHub

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 onvoyage-ai/gtm-engineer-skills --skill build-resource-pages
Clone the repo
git clone --depth 1 https://github.com/onvoyage-ai/gtm-engineer-skills

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 build-resource-pages

README.md
[![agentmods](https://agentmods.dev/badge/skills/onvoyage-ai/gtm-engineer-skills/build-resource-pages/github.svg)](https://agentmods.dev/skills/onvoyage-ai/gtm-engineer-skills/build-resource-pages)
Your own site
<a href="https://agentmods.dev/skills/onvoyage-ai/gtm-engineer-skills/build-resource-pages"><img src="https://agentmods.dev/badge/skills/onvoyage-ai/gtm-engineer-skills/build-resource-pages/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 build-resource-pages

Your own site · 80×15
<a href="https://agentmods.dev/skills/onvoyage-ai/gtm-engineer-skills/build-resource-pages"><img src="https://agentmods.dev/badge/skills/onvoyage-ai/gtm-engineer-skills/build-resource-pages.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 72 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,061 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00072 $0.03061
Opus 5 $0.00036 $0.01530
Sonnet 5 $0.00014 $0.00612
Haiku 4.5 $0.00007 $0.00306

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

Security

Grade A, and why

build-resource-pages 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 13d 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.

build-resource-pages/SKILL.md · 260 lines

How it starts

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

Build Resource Pages

You are a senior frontend engineer building resource centers for professional websites. You take existing content (markdown files produced by the content writing skills) and implement production-final resource pages — listing pages, article pages, navigation, and cross-linking — using the client's existing tech stack and design system.

Your output ships directly to production. Every page must be indistinguishable from the rest of the site. No rough edges. No placeholder text. No prototype styling. No "we'll polish this later." The pages you build are the pages visitors see.

Your output is code, not content. The content already exists.


Workflow

Phase 1: Discover the Stack

Before writing any code, understand what you're working with.

  1. Find the frontend codebase — ask the user for the path if not obvious
  2. Identify the framework — Next.js, Astro, Nuxt, SvelteKit, Remix, plain React, etc.
  3. Find the design system — look for:
    • Theme files (CSS variables, Tailwind config, styled-components theme)
    • Color tokens (backgrounds, accents, text colors)
    • Typography (font families, sizes, weights, line heights)
    • Existing components (cards, shells, layouts, navigation, buttons, CTAs)
    • Spacing system (margin/padding tokens, section spacing patterns)
  4. Find existing content patterns — how does the site already render markdown or structured content? Look for MDX loaders, content collections, CMS integrations, or static generation patterns
  5. Find the routing pattern — file-based routing, dynamic routes, or manual route config
  6. Study the site's page structure — look at how existing pages handle <head> metadata, Open Graph tags, canonical URLs, and structured data. Match the exact pattern.

Report findings to the user before proceeding. Confirm: framework, styling approach, existing components to reuse, and content loading mechanism.

Phase 2: Load the Content

  1. Read the content architecture — load the customer's content_architecture.md from their workspace folder
  2. Read the markdown files — scan workspace/[brand]/content/resources/ for all existing content across learn/, guides/, blog/, comparisons/
  3. Map content to pages — build a manifest of: slug, title, section, subsection, date, keywords, description, and any relationships (supports, internal links)
  4. Identify what to build — confirm with user which sections to implement (all, or a subset)

Read the full file on GitHub · 260 lines

Files

What ships with it

1 file 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. 13d ago First seen · 260 lines · 72 tokens per session scan A b207baad2e8c

Subscribe to this mod's changes

build-resource-pages is a skill published in the GitHub repository onvoyage-ai/gtm-engineer-skills (1,301 stars, last pushed 3mo ago), licensed MIT. It adds 72 tokens to every session and 3,061 once invoked, about $0.0004 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 skills, from other repositories

bytesagain-geo-seo

GEO SEO — Generative Engine Optimization reference. Complete guide for optimizing websites for AI search engines. Covers llms.txt spec, GEO checklist, automated scanning, AI bot tracking with nginx, AEO (Answer Engine Optimization) for getting cited by ChatGPT/Perplexity/Gemini, citation monitoring, and content…

bytesagain/ai-skills · 77 tokens

geo-optimizer-skill

Run geo audit first. It scores the site 0–100 across 8 categories and generates a prioritized action list.

Auriti-Labs/geo-optimizer-skill · 0 tokens

image-seo-audit

Audit every image on a page for SEO, performance, and accessibility — alt text quality, tiered file-size thresholds, WebP/AVIF format adoption, srcset/sizes responsiveness, lazy loading, fetchpriority on the LCP image, and width/height for CLS — producing an optimization list sorted by file-size savings. Triggers on…

indranilbanerjee/digital-marketing-pro · 139 tokens

landing-page-audit

Audit a landing page across six conversion dimensions — above-fold clarity, trust signals, form friction, message match against the upstream ad or email, page speed, and mobile experience — each scored 1-10, rolled into an overall score benchmarked against industry averages, with the top 5 fixes ranked by expected…

indranilbanerjee/digital-marketing-pro · 141 tokens

seo-llmeo

SEO and LLM Engine Optimization (LLMEO) skill for BroomVA content. Analyzes pages for traditional search-engine signals (meta tags, structured data, Core Web Vitals, internal linking) and for LLM discoverability (llms.txt, semantic headings, FAQ schema, citation-friendly structure). Generates actionable audits and…

broomva/skills · 139 tokens

content-thicken

Evidence-driven blog driver. Takes ONE target from the fused search plus AI-answer content library, pulls the real questions it has to answer, drafts a thick long-form guide against a template contract, validates it deterministically, and stops at preview. Two modes, thicken an already-earning post IN PLACE (never…

Jasper0122/agent-seo-kit · 126 tokens