openpress-create-pages

openpress-create-pages is a skill for Claude Code, Codex from quan0715/open-press. It costs 33 tokens per session (828 once invoked), scanned A, original, MIT.

Instructions for creating page-based OpenPress documents such as reports, proposals, papers, books, teaching notes, and handbooks. OpenPress is a tool for building these documents from structured page content.

In plain words
What is it for?
Use them to create a new page artifact or add one to an existing workspace. They cover setup, A4 page geometry, and registering public MDX content.
Why use it?
They define the required project setup, page size, source registration, and document structure. This reduces guesswork when starting or extending an OpenPress project.

Skill for Claude CodeCodex

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

Good fit Use them to create a new page artifact or add one to an existing workspace. They cover setup, A4 page geometry, and registering public MDX content.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/quan0715/open-press/openpress-create-pages
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 quan0715/open-press --skill openpress-create-pages
Clone the repo
git clone --depth 1 https://github.com/quan0715/open-press

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 openpress-create-pages

README.md
[![agentmods](https://agentmods.dev/badge/skills/quan0715/open-press/openpress-create-pages/github.svg)](https://agentmods.dev/skills/quan0715/open-press/openpress-create-pages)
Your own site
<a href="https://agentmods.dev/skills/quan0715/open-press/openpress-create-pages"><img src="https://agentmods.dev/badge/skills/quan0715/open-press/openpress-create-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 openpress-create-pages

Your own site · 80×15
<a href="https://agentmods.dev/skills/quan0715/open-press/openpress-create-pages"><img src="https://agentmods.dev/badge/skills/quan0715/open-press/openpress-create-pages.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 33 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 828 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.00033 $0.00828
Opus 5 $0.00016 $0.00414
Sonnet 5 $0.00007 $0.00166
Haiku 4.5 $0.00003 $0.00083

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

Security

Grade A, and why

openpress-create-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 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.

skills/openpress-create-pages/SKILL.md · 65 lines

How it starts

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

OpenPress Create Pages

This skill owns page-artifact structure and content judgment. openpress owns CLI lifecycle and delivery; openpress-collaborate owns revision mode for existing authored content.

Setup

OpenPress requires Node 20 or newer. Detect whether the workspace already has a Press:

node -v
find press -mindepth 2 -maxdepth 2 -name press.tsx -print -quit 2>/dev/null | grep -q . && echo EXISTING || echo FRESH
  • Fresh empty folder: use npm create @open-press <target> -- --type pages, then extend the generated minimal pages Press. Do not force a non-empty target.
  • Existing workspace: inspect press/*/press.tsx, choose a new slug, run open-press create <slug> --type pages --title "<title>", then extend only the new press/<slug>/.

Page Contract

Gather the document brief and confirmed source material before writing. OpenPress-specific defaults and constraints:

  • Use page="a4" for reports, proposals, whitepapers, papers, books, teaching notes, and handbooks. Ask only when custom geometry is required.
  • Keep geometry on <Press page>, not in CSS.
  • Register public MDX sources in press/<slug>/press.tsx; keep internal planning in press/design.md, memory/, or skills.
  • Keep artifact-local components, media, and theme under press/<slug>/; use press/shared/ only for intentional cross-Press reuse.
  • Use self-hosted licensed fonts or system fallbacks; final themes must not depend on remote font CSS.
  • Preserve confirmed facts. Mark missing material as [TODO: ...], [DRAFT: ...], or [FIX: ...] instead of inventing it.

Read references/press-tree.md before creating the folder tree or Press TSX. Read references/theme.md before writing theme or page components.

Document Structure

  • #: document title or cover identity only.
  • ##: formal chapter or document unit; enters the TOC.
  • ###: major topic group; enters the TOC.
  • ####: local procedure, theorem, example, or reference item; normally stays out of the TOC.
  • Put <TableCaption> before captioned tables; OpenPress owns figure/table numbering.
  • When prose refers to a figure or table, give the target a stable semantic ID and write @fig-stable-name or @tbl-stable-name instead of a literal number. OpenPress resolves the current localized number during render. Read references/press-tree.mdCaption Targets And Semantic References before authoring these links.
  • When the author explicitly wants the following content to start on a new page, put <PageBreak /> immediately before it. Do not recreate that intent with spacer content or increasingly specific pagination CSS.

Read the full file on GitHub · 65 lines

Files

What ships with it

2 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. 9d ago First seen · 65 lines · 33 tokens per session scan A f44f7159d4e9

Subscribe to this mod's changes

openpress-create-pages is a skill published in the GitHub repository quan0715/open-press (14 stars, last pushed 10d ago), licensed MIT. It adds 33 tokens to every session and 828 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 skills, from other repositories

kb-import

Import knowledge from existing documents into structured KB entries. Reads source documents (Markdown, PDF, DOCX, plain text), extracts key information, and creates properly formatted KB entries with YAML frontmatter.

techwolf-ai/ai-first-toolkit · 42 tokens

prose-clarity

Rewrite and self-check drafted prose against a machine-checkable clarity standard derived from ASD-STE100 (Simplified Technical English) — no marketing adjectives, no phrasal verbs, no semicolons, active voice, short sentences, and a required carve-out for the epistemic hedge markers the evidence ledger depends on.…

synaptiai/synapti-marketplace · 146 tokens

doc-package-contract

Enforce the fixed 23-file, 8-directory documentation package under the resolved output root — routing each document to its required-content contract in references/package-contract-.md, stamping the internal or public header, and refusing to add, drop, rename, or merge a canonical file. Use when scaffolding a package…

synaptiai/synapti-marketplace · 119 tokens

accounting-workflow

End-to-end Malaysian accounting engagement workflow. Takes a client folder and produces accrual-basis financial statements (Excel working papers + PDF) compliant with MPERS / MFRS / ITA 1967. Covers Sole Proprietor, Partnership, Sdn Bhd, Berhad, and NGO. USE THIS SKILL when the user wants to: Start or continue an…

mecheri-prog/skills · 359 tokens

orbit-notion

Open Orbit briefing skill — selected by the Orbit pipeline when Notion is the user's only connected connector, or when the user explicitly scopes their daily digest to Notion. Pulls the past 24 hours of document edits, comments, mentions, and database row changes from the user's authenticated Notion connection and…

nexu-io/open-design · 117 tokens

baoyu-youtube-transcript

A tool for downloading the written captions, subtitles, chapter information, speaker labels, and cover image from a YouTube video using its URL or ID.

JimLiu/baoyu-skills · 107 tokens