Borrowing it
Nothing to install: this file belongs to gotgenes/pi-anthropic-auth. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/gotgenes/pi-anthropic-auth/main/.pi/skills/markdown-conventions/SKILL.mdgit clone --depth 1 https://github.com/gotgenes/pi-anthropic-authWrote 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/gotgenes/pi-anthropic-auth/markdown-conventions)<a href="https://agentmods.dev/skills/gotgenes/pi-anthropic-auth/markdown-conventions"><img src="https://agentmods.dev/badge/skills/gotgenes/pi-anthropic-auth/markdown-conventions.svg" alt="Measured on agentmods" 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.00049 | $0.01152 |
| Opus 5 | $0.00024 | $0.00576 |
| Sonnet 5 | $0.00010 | $0.00230 |
| Haiku 4.5 | $0.00005 | $0.00115 |
Grade A, and why
markdown-conventions 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 6d 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 — 77 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Markdown Conventions
Load this skill when writing or editing markdown files.
Formatting rules
The enforcer is rumdl (runs as part of pnpm run lint, available standalone via pnpm run lint:md; also the pre-commit rumdl fmt hook).
Rules below are named by their markdownlint MDxxx IDs because rumdl implements the same rule family; use the IDs for reference, not the tool.
Lines and sentences
- Use one sentence per line (unbroken) for better diffs. Each sentence occupies exactly one line; never wrap a sentence across lines or place two sentences on the same line. This applies to all prose, including list-item continuations.
rumdl'sMD057can report an existing relative link as missing when its sentence runs long; split the sentence per the rule above rather than hunting the path.- Author and append markdown with the
Write/Edittools, not shell heredocs (cat <<EOF) — heredocs don't interpolate\uXXXXescapes and make one-sentence-per-line slips easy, both of which trip the markdown linter.
Code fences
- Always specify a language on fenced code blocks (e.g.,
```typescript,```bash,```jsonc,```text); usetextfor plain output. - When embedding markdown that itself contains fenced code blocks, use a 4-backtick outer fence (
````markdown).
Inserting a new section
Before inserting a new ##/### section into an existing document, read the parent section end to end.
An insertion point that reads correctly at the seam can reparent what follows it — a shared example block, a trailing summary sentence — under the new heading.
Lists, headings, and emphasis
- Use sequential numbering (
1.2.3.) in ordered lists, restarting at1.under each new heading — markdownlint's MD029 rejects continued numbering across section boundaries. - Do not use bold text (
**...**) as a substitute for headings — use proper heading syntax; markdownlint's MD036 rejects emphasis used as headings.
Tables and blockquotes
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.
- 6d ago First seen · 77 lines · 49 tokens per session scan A 0b5f45614521
markdown-conventions is a skill published in the GitHub repository gotgenes/pi-anthropic-auth (235 stars, last pushed yesterday), licensed MIT. It adds 49 tokens to every session and 1,152 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.
Other skills, from other repositories
surf
Control Chrome browser via CLI for testing, automation, and debugging. Use when the user needs browser automation, screenshots, form filling, page inspection, network/CPU emulation, DevTools streaming, or AI queries via ChatGPT/Gemini/Perplexity/Grok/AI Studio.
prose-review
Review prose written for others (e.g., user-facing documentation, prompts for other LLMs, reports, plans, inline comments, docstrings) for local jargon leakage, orphaned references, missing grounding, and audience or genre mismatch. Always run on prose you produce or materially edit, except for routine conversational…
text-search
Search indexed text corpora with qmd. For indexed content, prefer qmd over grep.
repoprompt-tool-guidance-refresh
Refresh RepoPrompt tool guidance when the CLI/MCP surface changes. Tracks RepoPrompt CE (rpce-cli, the maintained target) across versions, and can diff the frozen Classic CLI (rp-cli) against CE. Uses /.pi/agent/skills/repoprompt-tool-guidance-refresh/scripts/track-rp-version.sh to capture/diff --help and -l (tool…
xcodebuildmcp
Build/test Xcode projects via the XcodeBuildMCP MCP server using a local CLI wrapper for pi (no MCP support). Use when the user mentions Xcode, xcodebuild, iOS builds/tests, or XcodeBuildMCP.
auth0-docs
Auth0 — identity platform: auth flows, Universal Login, SSO, identity providers, MFA, RBAC, Actions, tokens.