markdown-site-source-pipeline

markdown-site-source-pipeline is a skill for Claude Code, Codex from pedroiff0/awesome-skills. It costs 89 tokens per session (1,310 once invoked), scanned A, original, MIT.

A workflow that keeps a static website's editable content in Markdown, a simple text format, and generates the JavaScript or JSON data the site displays.

In plain words
What is it for?
It helps set up Markdown source files, generate site data, preserve existing HTML and CSS, and compare the generated content with a known baseline.
Why use it?
It avoids hand-editing generated data files while checking that content changes do not alter the site's structure or appearance.

Skill for Claude CodeCodex

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

Good fit It helps set up Markdown source files, generate site data, preserve existing HTML and CSS, and compare the generated content with a known baseline.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/pedroiff0/awesome-skills/markdown-site-source-pipeline
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 pedroiff0/awesome-skills --skill markdown-site-source-pipeline
Clone the repo
git clone --depth 1 https://github.com/pedroiff0/awesome-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 markdown-site-source-pipeline

README.md
[![agentmods](https://agentmods.dev/badge/skills/pedroiff0/awesome-skills/markdown-site-source-pipeline/github.svg)](https://agentmods.dev/skills/pedroiff0/awesome-skills/markdown-site-source-pipeline)
Your own site
<a href="https://agentmods.dev/skills/pedroiff0/awesome-skills/markdown-site-source-pipeline"><img src="https://agentmods.dev/badge/skills/pedroiff0/awesome-skills/markdown-site-source-pipeline/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 markdown-site-source-pipeline

Your own site · 80×15
<a href="https://agentmods.dev/skills/pedroiff0/awesome-skills/markdown-site-source-pipeline"><img src="https://agentmods.dev/badge/skills/pedroiff0/awesome-skills/markdown-site-source-pipeline.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 89 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,310 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.
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.00089 $0.01310
Opus 5 $0.00044 $0.00655
Sonnet 5 $0.00018 $0.00262
Haiku 4.5 $0.00009 $0.00131

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

Security

Grade A, and why

markdown-site-source-pipeline 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 8d 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/web/markdown-site-source-pipeline/SKILL.md · 49 lines

How it starts

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

Markdown → Static Site Source Pipeline

When to use

  • A static site (HTML + CSS + JS) renders content from a data file (e.g. window.PORTFOLIO_DATA in assets/js/*.js, or a JSON fed to a template).
  • The user wants to author content in Markdown/Obsidian, not in JS/YAML/JSON.
  • Goal: edits to the Markdown must produce a byte-faithful (semantically identical) artifact so the rendered site is UNCHANGED in structure/appearance.

Core principle

Treat the data artifact (JS/JSON) as a build output, never as source. The site's render logic (HTML/CSS/main.js) stays untouched. Markdown is the source of truth. This guarantees "render exactly the same" because the consumer reads the same object shape.

Pipeline shape

  1. src/<site>.md — editable source (clean Markdown, see format below).
  2. tools/build.py (or .js) — parses the MD, emits the data artifact.
  3. tools/verify.<js|py> — loads BOTH the generated artifact and a stable baseline, deep-equals the parsed object (semantic, NOT byte diff). Fails the build if different.
  4. tools/seed.<js> — one-off generator that freezes the CURRENT site content into the MD source (run when bootstrapping or re-syncing).
  5. .git/hooks/pre-commit — runs build.py so every commit recompiles the artifact.

Source format (USER PREFERENCE — do not violate)

This user (Pedro) REJECTED nested YAML frontmatter as "muito ruim de editar". Use clean Markdown, not a YAML document:

  • One ### Title per item (project/bolsa/contact).
  • Single-line fields: repo:, stack:, tags:, cat:, visibility:, icon:.
  • Multilingual text via inline flag prefixes, one paragraph each: 🇧🇷 pt text / 🇺🇸 en text / 🇪🇸 es text / 🇫🇷 fr text.
  • If a translation is missing, INHERIT the 🇧🇷 text (don't force all 4 languages).
  • Keep rarely-edited interface/i18n menus in a SEPARATE file (src/interface.yaml), NOT inside the editable MD. The generator reads both src/portfolio.md and src/interface.yaml. Pedro found a trailing i18n block inside the MD still "muito dificil" — isolating it in its own file is what made editing tractable. See templates/portfolio.source.md for a concrete example.

Read the full file on GitHub · 49 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. 8d ago First seen · 49 lines · 89 tokens per session scan A 9e2ae576e2a0

Subscribe to this mod's changes

markdown-site-source-pipeline is a skill published in the GitHub repository pedroiff0/awesome-skills (1 stars, last pushed 4d ago), licensed MIT. It adds 89 tokens to every session and 1,310 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-09-03.

Related

Other skills, from other repositories

hermes-desktop-plugins

Write plugins for the Hermes desktop app: statusbar items, layout panes, command-palette commands, keybinds, routes, and themes. A plugin is a single plain-JavaScript ESM file the app loads at runtime — no build step, no repo changes. A plugin can also talk to its own Python backend namespace (ctx.rest/ctx.socket →…

AtlasOmnia/donna-starter · 25 tokens

mnemosyne-maintenance

Use when: upgrading Mnemosyne, diagnosing slow/hung consolidation (mnemosynesleep), fixing missing embeddings, or troubleshooting import/version mismatches.

AtlasOmnia/donna-starter · 40 tokens

plugin-first-web-dashboard

Build remote dashboards as plugins in MCP-first services.

ggg123124/vrchat-assistant · 15 tokens

pebble-protocol-ui

Component catalogue for Pebble pebblesend type "ui" blocks — OpenUI Lang syntax, components, the action model (buttons, forms, $state), and what Pebble does NOT support. View when building an interactive UI block.

skyf0xx/Pebble · 58 tokens

receiving-webhooks

General guidelines for building a robust webhook receiver/handler: verifying signatures, raw-body access, replay protection, async processing, retries and endpoint auto-disabling. Use whenever you write, review, or debug a handler that consumes incoming webhooks from any provider.

svix/ai · 56 tokens

agile-web-builder-agent

A Web front-end planning helper that turns product handover materials into a project structure, suggested page files, components, screen states and a first coding task list.

zcweah1981/awesome-hermes-agent-zh · 50 tokens