Contribute in 10 Minutes
AILmanac is only "complete and always fresh" because people like you add to it. You do not need to be a developer — fixing a typo, adding a glossary term, or sharing a template are all real contributions.
The fast path
- Find the page on the site and click "Edit this page" at the bottom (it opens the file on GitHub).
- Click the ✏️ pencil to edit in your browser. GitHub forks the repo for you automatically.
- Make your change in Markdown.
- At the bottom, write a short description and propose changes → open a pull request.
- A maintainer reviews it. That's it. 🎉
Prefer local? Clone the repo, then:
npm install
npm run start # live preview at http://localhost:3000
npm run build # must pass: it fails on broken links
The 4 rules every page follows
Keeping these makes review fast and keeps quality high:
- Tag the level. Start the body with
<LevelBadge level="beginner" />(orintermediate/advanced/all). - Link the source for volatile facts. Anything about model names, prices, limits, or features that changes must cite the official page — and use
<VerifyNote lastVerified="YYYY-MM-DD" source="..." />. Never hard-code a model fact; link to the models table. - Be opinionated, then honest. Give the recommended way first; note alternatives. Don't duplicate the official docs — link to them.
- Plain English, examples over theory. Short sentences. Show, don't just tell.
Page front-matter template
---
sidebar_position: 2
title: Your Page Title
description: One sentence shown in search and previews.
keywords: [relevant, search, terms]
---
<LevelBadge level="beginner" />
Your first paragraph...
What makes a great first contribution
- Add a missing glossary term.
- Add a template or prompt you already use.
- Fix something newly shipped that a page now gets wrong (and update its
lastVerifieddate). - Translate a page — see the Translation Playbook.
Licensing & sign-off
By contributing you agree your prose is shared under CC BY 4.0 and code under MIT, and you add a Signed-off-by line (DCO) to your commits (git commit -s). Details in the governance page.
Be kind — we follow the Contributor Covenant Code of Conduct.