WurstScript projects include built-in support for AI coding agents. When you create or install a project with grill, an AGENT.md file is added to the project root that gives AI assistants (Claude, Copilot, Cursor, and others) the information they need to work effectively with WurstScript code.
grill writes AGENT.md to new and updated projects automatically. This file describes:
wurst/, wurst.build, dependencies)AI agents reading this file can answer questions, suggest code, and make changes that fit the conventions of a Wurst project without needing to be trained on WurstScript specifically.
The generated agent instructions point agents at the same small verification commands humans use:
grill typecheck
grill test NAME
Use grill typecheck to check the whole project quickly. Use grill test NAME to run a specific unit test after changing a focused part of the codebase.
AGENT.md is created automatically. If you are starting a new project:
grill generate my-map
If you are adding Wurst to an existing project:
grill install
In both cases AGENT.md is written alongside the rest of the project scaffolding.
AGENT.md is managed by grill. Running grill install on an existing project will update it to the current version. You can commit it to version control so the whole team benefits.