web/docs/wasp-ai/coding-agent-plugin.md
Wasp provides an official plugin for coding agents that transforms them into Wasp framework experts.
The plugin gives your agent curated access to Wasp docs, workflows, and best practices so it can develop full-stack web apps (React, Node.js, Prisma) more effectively.
The plugin / skills work with just about all the popular coding agents, such as Claude Code, Cursor, Codex, Gemini CLI, GitHub Copilot, OpenCode, and more.
CLAUDE.md, AGENTS.md).First, add the Wasp plugin marketplace:
claude plugin marketplace add wasp-lang/wasp-agent-plugins
Then install the Wasp plugin:
claude plugin install wasp@wasp-agent-plugins --scope project
:::tip
We recommend installing with project scope so the settings are committed to git (via settings.json). Use local scope if you prefer settings that aren't committed (via settings.local.json).
:::
Run the following command and select all the skills:
npx skills add wasp-lang/wasp-agent-plugins
After installing, initialize the plugin in an active agent session by explicitly invoking the /wasp-plugin-init skill:
Run the '/wasp-plugin-init' skill.
This adds Wasp knowledge to your project's CLAUDE.md or AGENTS.md file.
Next, start the development server as a background task so your agent has full insight into the running app while developing:
Run the 'start-dev-server' skill.
To see all available features and skills:
/wasp-plugin-help
Check out the Wasp Agent Plugins repository for more details.