LLM Docs
Using AI Tools with Jac
Section titled “Using AI Tools with Jac”Jac is a new language. AI models tend to hallucinate syntax from outdated or nonexistent versions, and things break. To fix this, we maintain an official condensed language reference designed specifically for LLM context windows: jaseci-llmdocs.
Grab the latest jac-llmdocs.md from the releases page and paste it into your AI tool’s persistent context.
curl -LO https://github.com/jaseci-labs/jaseci-llmdocs/releases/download/v0.10.4/jac-llmdocs.mdWhere to Put It
Section titled “Where to Put It”Every AI coding tool has a file or setting where you can drop persistent instructions. Paste the contents of jac-llmdocs.md there:
| Tool | Context File |
|---|---|
| Claude Code | CLAUDE.md in project root (or ~/.claude/CLAUDE.md for global) |
| Gemini CLI | GEMINI.md in project root (or ~/.gemini/GEMINI.md for global) |
| Cursor | .cursor/rules/jac-reference.mdc (or Settings > Rules) |
| Antigravity | GEMINI.md in project root (or .antigravity/rules.md) |
| OpenAI Codex | AGENTS.md in project root (or ~/.codex/AGENTS.md for global) |
Quick setup:
# Claude Codecat jac-llmdocs.md >> CLAUDE.md
# Gemini CLIcat jac-llmdocs.md >> GEMINI.md
# Cursormkdir -p .cursor/rules && cp jac-llmdocs.md .cursor/rules/jac-reference.mdc
# Antigravitycat jac-llmdocs.md >> GEMINI.md
# OpenAI Codexcat jac-llmdocs.md >> AGENTS.mdWhen you update Jac, pull a fresh copy from the releases page to stay current.