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.
npx agentmods add skills/agentconfig/agentconfig.org/create-pagenpx skills add agentconfig/agentconfig.org --skill create-pagegit clone --depth 1 https://github.com/agentconfig/agentconfig.orgWhat 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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00044 | $0.01477 |
| Opus 5 | $0.00022 | $0.00739 |
| Sonnet 5 | $0.00009 | $0.00295 |
| Haiku 4.5 | $0.00004 | $0.00148 |
Grade A, and why
create-page 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 2d 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.
How it starts
The opening of the file, as written. The whole thing — 219 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Create Page
Create a new content page on agentconfig.org following project conventions.
Overview
This skill creates all the necessary files for a new page:
- HTML entry point (
site/{slug}/index.html) - Page renderer (
site/src/pages/{slug}.tsx) - Page component (
site/src/components/{Name}Page/) - Data file (
site/src/data/{slug}Tutorial.ts) - Vite config entry
- Navigation link
- Page registry entry for llms generation
When to Use
Use this skill when:
- Creating a new tutorial or content page
- Adding a major new section to the site
- The page needs to be included in llms.txt generation
Step-by-Step Process
Step 1: Create HTML Entry Point
Create site/{slug}/index.html:
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>{Page Title} - agentconfig.org</title>
<meta name="description" content="{One-line description}" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/pages/{slug}.tsx"></script>
</body>
</html>
Step 2: Create Page Renderer
Create site/src/pages/{slug}.tsx:
import { render } from 'preact'
import { {Name}Page } from '@/components/{Name}Page'
import '@/index.css'
const rootElement = document.getElementById('root')
if (!rootElement) {
throw new Error('Root element not found')
}
render(<{Name}Page />, rootElement)
Step 3: Create Page Component
Create site/src/components/{Name}Page/index.ts:
export { {Name}Page } from './{Name}Page'
Create site/src/components/{Name}Page/{Name}Page.tsx:
import type { VNode } from 'preact'
import { PageLayout } from '@/layouts'
import { TableOfContents } from '@/components/TableOfContents'
import { tocItems } from '@/data/{slug}Tutorial'
export function {Name}Page(): VNode {
return (
<PageLayout>
{/* Hero Section */}
<header className="border-b border-border bg-muted/30">
<div className="container mx-auto px-4 py-12 md:py-16">
<h1 className="text-4xl md:text-5xl font-bold mb-4">
{Page Title}
</h1>
<p className="text-xl text-muted-foreground max-w-2xl">
{Description}
</p>
</div>
</header>
{/* Main Content */}
<div className="container mx-auto px-4 py-8">
{/* Add page content here */}
</div>
</PageLayout>
)
}
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.
- 2d ago First seen · 219 lines · 44 tokens per session scan A 7d666137b910
create-page is a skill published in the GitHub repository agentconfig/agentconfig.org (8 stars, last pushed 5d ago), licensed ISC. It adds 44 tokens to every session and 1,477 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-31.
Other skills, from other repositories
manim-composer
Trigger when: (1) User wants to create an educational/explainer video, (2) User has a vague concept they want visualized, (3) User mentions "3b1b style" or "explain like 3Blue1Brown", (4) User wants to plan a Manim video or animation sequence, (5) User asks to "compose" or "plan" a math/science visualization.…
html-ppt-tech-sharing
Open Design internals: how the agent stream, sandbox, and artifacts work — an engineering deep-dive talk. Built as a decision-grade AI literacy deck for engineers, dev community.
molecular-cloning
Molecular cloning simulation and design. PCR amplicon prediction, restriction enzyme digestion, Golden Gate and Gibson assembly simulation, primer design, CRISPR sgRNA design, and plasmid annotation. For protein-level sequence analysis use biopython or esm; for database lookups use gene-database or ensembl-database.
flow-cytometry-analysis
Complete flow cytometry analysis pipeline. FCS file handling, compensation, manual/automated gating, immunophenotyping, CFSE proliferation analysis, cell cycle analysis (Dean-Jett-Fox), and apoptosis assays. Extends flowio with analytical workflows. For raw FCS parsing only use flowio.
datamol
Pythonic wrapper around RDKit with simplified interface and sensible defaults. Preferred for standard drug discovery including SMILES parsing, standardization, descriptors, fingerprints, clustering, 3D conformers, parallel processing. Returns native rdkit.Chem.Mol objects. For advanced control or custom parameters…
explain-for
Explain a topic, a piece of code, an error, or a design decision calibrated to one named audience — a 5-year-old, a 5th grader, a manager, a designer, a graduate student, a parent. Resolves who the explanation is for (from the request, or from what memory already records about that person), establishes the ground…