Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions commands/new-tool.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
description: Scaffold a new PolicyEngine interactive tool (Next.js 14 + Tailwind 4 + ui-kit theme + embedding boilerplate)
description: Scaffold a new PolicyEngine interactive tool (Next.js 16 + Turbopack + Tailwind 4 + ui-kit theme + embedding boilerplate)
---

# New interactive tool scaffold
Expand All @@ -20,8 +20,8 @@ Ask the user for:
## Step 2: Create the project

```bash
# Create Next.js 14 + Tailwind project
bunx create-next-app@14 TOOL_NAME --js --app --tailwind --eslint --no-src-dir --import-alias "@/*"
# Create Next.js 16 + Turbopack + Tailwind project
bunx create-next-app@latest TOOL_NAME --js --app --tailwind --eslint --no-src-dir --import-alias "@/*" --turbopack
cd TOOL_NAME

# Install dependencies
Expand Down
5 changes: 5 additions & 0 deletions skills/frontend/policyengine-ui-kit-consumer-skill/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -283,3 +283,8 @@ Both `colors.gray[N]` and `colors.text.warning` change visible color on migratio
- `policyengine-tailwind-shadcn-skill` — `@theme` namespace mechanics, SVG var() usage
- `policyengine-interactive-tools-skill` — Full tool scaffolding checklist
- `policyengine-vercel-deployment-skill` — Deploying consumer apps

## Related Guides

- `references/migration-from-broken-setup.md` — Fixing repos where ui-kit was imported incorrectly
- `references/vite-to-nextjs-migration.md` — Migrating Vite/React apps to Next.js 16 App Router
Loading