editorial-web

editorial-web is a skill for Claude Code, Codex from earlyaidopters/marks-pi-harness. It costs 108 tokens per session (1,613 once invoked), scanned A, original, MIT.

A design and build guide for editorial-style websites that use expressive serif headings, warm backgrounds, rounded image areas, alternating content sections, and gentle scrolling effects. It is intended for sites that should feel like a carefully designed magazine.

In plain words
What is it for?
Use it for product, software, hospitality, outdoor, and brand websites that need a calm editorial layout with images, feature sections, and light motion.
Why use it?
It gives a clear visual direction for building a polished website without relying on 3D graphics, WebGL, or scroll-controlled video. It also includes checks for common build and markup mistakes.

Skill for Claude CodeCodex

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

Good fit Use it for product, software, hospitality, outdoor, and brand websites that need a calm editorial layout with images, feature sections, and light motion.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/earlyaidopters/marks-pi-harness/editorial-web
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 earlyaidopters/marks-pi-harness --skill editorial-web
Clone the repo
git clone --depth 1 https://github.com/earlyaidopters/marks-pi-harness

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 editorial-web

README.md
[![agentmods](https://agentmods.dev/badge/skills/earlyaidopters/marks-pi-harness/editorial-web/github.svg)](https://agentmods.dev/skills/earlyaidopters/marks-pi-harness/editorial-web)
Your own site
<a href="https://agentmods.dev/skills/earlyaidopters/marks-pi-harness/editorial-web"><img src="https://agentmods.dev/badge/skills/earlyaidopters/marks-pi-harness/editorial-web/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 editorial-web

Your own site · 80×15
<a href="https://agentmods.dev/skills/earlyaidopters/marks-pi-harness/editorial-web"><img src="https://agentmods.dev/badge/skills/earlyaidopters/marks-pi-harness/editorial-web.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 108 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,613 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.00108 $0.01613
Opus 5 $0.00054 $0.00807
Sonnet 5 $0.00022 $0.00323
Haiku 4.5 $0.00011 $0.00161

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

Security

Grade A, and why

editorial-web 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 9d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (assets/template-editorial/src/main.js), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

5. **Verify with your eyes.** `npm run dev`, then `browser_check` with `expect` at scrollTo 0 (nav + serif hero + hero media frame), 0.3 (manifesto/features revealed, correct alternation), 0.6 (card rail + banner panel),
skills/editorial-web/SKILL.md · 74 lines

How it starts

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

Editorial websites

Build the class of site that looks like a printed magazine came alive: one expressive serif, soft paper canvas, media presented as rounded plates, calm confident motion. This genre wins on RESTRAINT — read references/editorial-anatomy.md first; it defines the two proven moods (soft-light product / warm editorial brand), the 10-section layout grammar, the motion grammar, and the instant-fail tells.

Routing: if the request needs WebGL, 3D, a game world, or scroll-driven video scrubbing, STOP and use the immersive-web skill. This skill is the no-WebGL editorial lane.

Pipeline (one shot)

Run on the LARGEST available model (the 122B). Set gates before starting:

/gate npm run build
/gate ! grep -rq '{{' index.html
/gate test -f DESIGN.md

Running non-interactively (no /gate available)? Then run those three commands yourself before declaring the build done, plus the CSS-markup contract check below. A failing check means the job is NOT done, no matter how good the screenshots look.

CSS-markup contract check (mandatory): every class selector you ADD to style.css must exist in index.html. A real 122B build wrote .banner__bg / .banner__overlay styles but never added those divs — the section silently rendered text-on-background-color with no image. After any CSS edit that introduces new class selectors, verify each one:

for cls in $(grep -o '^\.[a-z][a-z0-9_-]*' src/style.css | sort -u | tr -d '.'); do
  grep -q "class=\"[^\"]*$cls" index.html || echo "MISSING IN HTML: .$cls"
done

Investigate every MISSING line (JS-created classes like .cursor-dot/.grain/.progress are the only legitimate misses).

  1. Start from the template (verified working — do not rebuild the machinery):
# do NOT mkdir the target first — cp creates it
cp -R ~/.pi/agent/skills/editorial-web/assets/template-editorial ./SITE_DIR && cd SITE_DIR
ls package.json   # MUST exist here before continuing
npm install

README.md inside maps every file. The boot wiring in src/main.js (Lenis + ScrollTrigger single RAF, split-line reveals, drag rail) is correct — extend it, never re-derive it.

Read the full file on GitHub · 74 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 · 74 lines · 108 tokens per session scan A 6f3bce0f8498

Subscribe to this mod's changes

editorial-web is a skill published in the GitHub repository earlyaidopters/marks-pi-harness (11 stars, last pushed 29d ago), licensed MIT. It adds 108 tokens to every session and 1,613 once invoked, about $0.0005 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

chakra-ui-builder

Build responsive, accessible UI components and layouts using Chakra UI v3, install or configure Chakra UI in new and existing projects, and design scalable themes using tokens, semantic tokens, recipes, and slot recipes. Use this skill whenever a user asks to build, create, or generate any UI component, page, form…

chakra-ui/chakra-ui · 214 tokens

visual-ralph

Visual Ralph orchestration for frontend UI from generated references, static references, or live URL targets, using $ralph with built-in visual verdict and pixel-diff evidence until the implementation matches and leaves a reproducible design system.

Yeachan-Heo/oh-my-codex · 50 tokens

frontend-ui-dark-ts

Build dark-themed React applications using Tailwind CSS with custom theming, glassmorphism effects, and Framer Motion animations. Use when creating dashboards, admin panels, or data-rich interfaces with a refined dark aesthetic.

microsoft/skills · 48 tokens

reveal-hover-effect

Build cursor-following spotlight reveals that expose a second aligned image through a soft radial mask. Use for hover-to-color, before-and-after, x-ray, material, texture, product-detail, and illustrated hero effects where a desaturated or embossed base image should remain visible while another treatment follows an…

MengTo/Skills · 66 tokens

frontend-visual-qa

Audits already-rendered web, landing-page, HTML deck/slide, browser tool/game, dashboard/admin, design-system, and desktop UIs using real-browser or native-app journeys, inspected screenshots, DOM geometry, responsive or projection viewports, and a bundled Playwright sweep. Use after UI implementation to find…

daymade/claude-code-skills · 145 tokens

prototype-web

A clickable, high-fidelity web product prototype with navigation, a hero section, feature cards, steps, social proof, and optional pricing. It is designed to resemble a finished landing page while remaining a prototype.

nexu-io/html-anything · 24 tokens