From wasp
Adds Wasp's built-in full-stack features: authentication (email, social), email sending, database setup, and styling (Tailwind, ShadCN). Guides users through configuring one feature at a time.
How this skill is triggered — by the user, by Claude, or both
Slash command
/wasp:add-featureThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Add Wasp's batteries-included features to your app. Each invocation focuses on one feature at a time.
Add Wasp's batteries-included features to your app. Each invocation focuses on one feature at a time.
main.wasp or main.wasp.ts)Present these features to the user and let them choose ONE to configure:
| Feature | Description |
|---|---|
| App Branding | Set your app's name, description, and meta tags |
| Authentication | Add login methods (Email, Google, GitHub, etc.) |
| Email Provider | Configure email sending (SendGrid, Mailgun, etc.) |
| Database | Set up your database (PostgreSQL, SQLite, etc.) |
| Styling (CSS, UI) | Add Tailwind CSS or ShadCN UI (on top of Tailwind CSS) |
Using the AskUserQuestion tool, ask the user which Wasp feature they'd like to configure:
Based on the user's selection, follow the corresponding guides below. ALWAYS follow the feature guide's corresponding raw text documentation URLs and use it as the basis for assisting the user.
When asking the user to choose from fetched lists (e.g., auth methods, email providers):
Always display the full list to the user before asking them to choose, so they know all available options.
Use the most popular/common options as the selectable choices in AskUserQuestion (limited to 2-4 options).
Remind users they can select "Other" to specify any option from the full list that isn't shown in the quick-select options.
Example format:
Available auth methods: Username & Password, Email, Google, GitHub, Discord, Keycloak, Slack
[AskUserQuestion with 3-4 most common options]
Note: Select "Other" to choose from additional options like Discord, Keycloak, or Slack.
After completing a feature configuration:
npx claudepluginhub wasp-lang/wasp-agent-plugins --plugin waspAdds NextAuth (Auth.js) authentication to an existing T3 project with admin or user mode, including email/password signup, account management, and optional OAuth providers.
Scaffold signin and signup authentication endpoints for a project. Use when the user wants to add authentication, create login/register flows, or set up auth from scratch.
Generates full-stack TanStack Start app on Cloudflare Workers: SSR, routing, D1+Drizzle DB, better-auth, Tailwind v4+shadcn/ui. Fresh file generation per project.