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 skills add pedroiff0/awesome-skills --skill markdown-site-source-pipelinegit clone --depth 1 https://github.com/pedroiff0/awesome-skillsWrote 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.
[](https://agentmods.dev/skills/pedroiff0/awesome-skills/markdown-site-source-pipeline)<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.
<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>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.
| Model | Per session | Once 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 |
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.
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_DATAinassets/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
src/<site>.md— editable source (clean Markdown, see format below).tools/build.py(or .js) — parses the MD, emits the data artifact.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.tools/seed.<js>— one-off generator that freezes the CURRENT site content into the MD source (run when bootstrapping or re-syncing)..git/hooks/pre-commit— runsbuild.pyso 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
### Titleper 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 bothsrc/portfolio.mdandsrc/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. Seetemplates/portfolio.source.mdfor a concrete example.
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.
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.
- 8d ago First seen · 49 lines · 89 tokens per session scan A 9e2ae576e2a0
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.
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 →…
mnemosyne-maintenance
Use when: upgrading Mnemosyne, diagnosing slow/hung consolidation (mnemosynesleep), fixing missing embeddings, or troubleshooting import/version mismatches.
plugin-first-web-dashboard
Build remote dashboards as plugins in MCP-first services.
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.
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.
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.