A drop-in reference package that teaches any coding agent — Claude Code, Codex, or otherwise — how to write Almide correctly on the first try.
Almide is a statically-typed language designed specifically for LLM code generation. The compiler's own diagnostics are written to be read by an agent and fixed automatically. This package is the syntax/stdlib reference that closes the loop: give it to your agent before it writes a single line.
No installation required — try it in the browser.
To install locally:
# macOS / Linux
curl -fsSL https://raw.githubusercontent.com/almide/almide/main/tools/install.sh | sh# Windows
irm https://raw.githubusercontent.com/almide/almide/main/tools/install.ps1 | iexThen set up this package (below) so your agent knows the syntax, and ask it to write something:
almide run app.almdAGENTS.md— the reference, in the emerging cross-tool AGENTS.md convention (Codex and other tools read this automatically from a project root).claude-skill/almide/SKILL.md— the same reference, packaged as a Claude Code skill.
Copy (or symlink) the skill directory into your user-level skills folder:
git clone https://github.com/almide/almide-agents.git /tmp/almide-agents
cp -r /tmp/almide-agents/claude-skill/almide ~/.claude/skills/almideClaude Code will pick it up automatically whenever a task involves Almide.
Copy AGENTS.md into the root of the project where you want to write Almide:
curl -o AGENTS.md https://raw.githubusercontent.com/almide/almide-agents/main/AGENTS.mdIf your project already has an AGENTS.md, append this one's contents instead of overwriting it.
AGENTS.md is plain Markdown with no tool-specific syntax. Paste it into a system prompt, a project-instructions field, or a chat message — any model will be able to use it.
Almide's own CHEATSHEET.md has always been written for AI code generation. This repo just makes it installable, instead of something you have to remember to paste in by hand.
This reference mirrors docs/CHEATSHEET.md in the main almide/almide repo. If the language changes, that's the source of truth — PRs updating this repo to match are welcome.