# all·markdown

Markdown templates

Every file a project is expected to have, ready to take. Fill in a few boxes and the placeholders update across the whole document, then copy it, download it, or open it in the editor. No repository to clone, no account, and nothing leaves your browser.

AI and agent files

The files coding assistants and language models read instead of guessing. New enough that the conventions are still settling: these follow what the tools actually look for.

Project files

The documents a repository is expected to have. Each one answers a question a newcomer arrives with, which is the only reason any of them are worth writing.

GitHub workflow

The files GitHub reads from special locations and turns into part of the interface.

Writing

Documents that are read by people rather than by tooling, where the structure is the hard part and the words are yours.

Which file do I need?

You want to…The file
Explain what a project is and how to run itREADME.md
Tell contributors how to send a changeCONTRIBUTING.md
Set expectations for behavior, and how to reportCODE_OF_CONDUCT.md
Give reviewers what they need on every pull requestpull_request_template.md
Tell people where to report a vulnerabilitySECURITY.md
Record what changed, per releaseCHANGELOG.md
Tell any coding agent how to work in the repoAGENTS.md
The same, specifically for Claude CodeCLAUDE.md
Package a capability an agent loads on demandSKILL.md
The same, specifically for GitHub Copilotcopilot-instructions.md
Point language models at the right pages of a sitellms.txt
Put something on your GitHub profile pageprofile README.md
Write a CV you can export to PDFresume.md

If a repository needs several of these, the box above builds them together: one project name into every file, and the paths already right.

What a template is here

A starting document, not a wizard. Opening one creates an ordinary tab in the editor with the text already in it: you rewrite the parts that matter, delete the parts that do not, and export whatever you end up with. There is no lock-in and nothing to undo, because it is just a Markdown file from the first keystroke.

The structures are opinionated on purpose. A README template that is only a heading and a blank line saves nobody any time; the value is in knowing which sections earn their place and what order a reader wants them in.

Each page carries the whole file, not an excerpt, so you can read it before deciding, and copy it by hand if you would rather not use the form. The form only saves typing: it replaces the placeholders in one pass, so a project name entered once fills the title, the install line and every URL that mentions it.

Why plain text for documents like these

A resume, a changelog and a set of meeting notes have the same three problems in common: they are edited under time pressure, they need to outlive whichever app you wrote them in, and they are often private. Markdown answers all three: the layout cannot break while you type, the file opens in anything, and here the conversion to PDF or Word happens on your own device rather than on someone's server.

Common questions

How do I use one of these templates?
Open it and the editor loads a copy pre-filled, named and ready to edit. It becomes an ordinary document in your list of open tabs: rename it, rewrite it, export it, or close it without saving.
Do I need an account?
No. There are no accounts on this site at all. The template is fetched by your browser and filled into the editor locally; nothing about it reaches a server.
Will my edits be saved?
Yes, in this browser. Documents autosave to local storage on your own device, so closing the tab and coming back keeps your work. They are not synced anywhere and are not readable by us.
Can I export the finished document?
Yes, PDF, Word, standalone HTML or Markdown, all from the editor's Export menu. Every conversion runs in your browser, which is what keeps an unpublished draft or a private resume off the network.
Are the AI templates different from the others?
Only in subject. CLAUDE.md, AGENTS.md and llms.txt are ordinary Markdown files that happen to be read by coding assistants and language models rather than by people, so the conventions around them are newer and less settled.
Can I suggest a template?
The list follows what people actually search for, so the useful ones tend to surface on their own. A template earns a place here when it has a real structure worth getting right, rather than being a blank file with a heading.