create-agentic-app 1.1.63 → 1.1.64
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/template/README.md +21 -1
- package/template/src/app/page.tsx +1 -1
package/package.json
CHANGED
package/template/README.md
CHANGED
|
@@ -44,6 +44,26 @@ Open [http://localhost:3000](http://localhost:3000).
|
|
|
44
44
|
|
|
45
45
|
The CLI copies the starter files, installs dependencies with your selected package manager, and prepares the environment file. If you use `npm`, replace the `pnpm` commands above with `npm run`.
|
|
46
46
|
|
|
47
|
+
## Guided Setup with Claude Code (Optional)
|
|
48
|
+
|
|
49
|
+
If you use Claude Code, you can install the `create-agentic-app` skill and have Claude walk you through the entire setup — folder strategy, package manager, PostgreSQL (Docker / Neon / Vercel / BYO), `.env` config, migrations, optional integrations (OpenRouter, Vercel Blob, Polar, email), build verification, and dev-server check — ending at a verified `http://localhost:3000`.
|
|
50
|
+
|
|
51
|
+
Install the skill:
|
|
52
|
+
|
|
53
|
+
```bash
|
|
54
|
+
npx skills add leonvanzyl/agentic-coding-starter-kit@create-agentic-app --agent claude-code
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
The `--agent claude-code` flag is required. Without it, the installer drops the skill into 37+ IDE adapter folders at the project root.
|
|
58
|
+
|
|
59
|
+
Once installed, ask Claude something like:
|
|
60
|
+
|
|
61
|
+
```text
|
|
62
|
+
Scaffold a new Agentic Coding Starter Kit project here.
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
Claude will run the skill end-to-end and ask you the few decisions it actually needs to make.
|
|
66
|
+
|
|
47
67
|
## Prerequisites
|
|
48
68
|
|
|
49
69
|
- Node.js 18 or newer
|
|
@@ -359,7 +379,7 @@ Ask your agent to add Google OAuth through Better Auth while keeping email/passw
|
|
|
359
379
|
|
|
360
380
|
Watch the original walkthrough:
|
|
361
381
|
|
|
362
|
-
[Agentic Coding Boilerplate Tutorial](https://youtu.be/
|
|
382
|
+
[Agentic Coding Boilerplate Tutorial](https://youtu.be/zVZotTk6ZWU)
|
|
363
383
|
|
|
364
384
|
Some details in older videos may differ from the current starter. This README is the source of truth for the current default workflow.
|
|
365
385
|
|
|
@@ -43,7 +43,7 @@ export default function Home() {
|
|
|
43
43
|
<div className="relative pb-[56.25%] h-0 overflow-hidden rounded-lg border">
|
|
44
44
|
<iframe
|
|
45
45
|
className="absolute top-0 left-0 w-full h-full"
|
|
46
|
-
src="https://www.youtube.com/embed/
|
|
46
|
+
src="https://www.youtube.com/embed/zVZotTk6ZWU"
|
|
47
47
|
title="Agentic Coding Boilerplate Tutorial"
|
|
48
48
|
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
|
|
49
49
|
allowFullScreen
|