Files
agentic-coding-starter-kit/create-agentic-app/package.json
Leon van Zyl 9332df2253 feat: add action-required.md to /create-feature command
Extends the /create-feature command to generate a third file that
extracts manual/human tasks into a dedicated checklist for better
visibility.

Changes:
- Add step 4 to create action-required.md with manual tasks
- Add template format with Before/During/After Implementation sections
- Add "no manual steps" template variant
- Update Next Steps to prioritize reviewing action-required.md
- Add note listing common manual task types (API keys, env vars, etc.)
- Bump create-agentic-app version to 1.1.27

Manual tasks (like account creation, environment variables, OAuth setup)
are now surfaced in a separate file so they're harder to miss during
feature implementation.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-03 12:23:07 +02:00

46 lines
1.0 KiB
JSON

{
"name": "create-agentic-app",
"version": "1.1.27",
"description": "Scaffold a new agentic AI application with Next.js, Better Auth, and AI SDK",
"type": "module",
"bin": {
"create-agentic-app": "./index.js"
},
"files": [
"index.js",
"template"
],
"scripts": {
"sync": "node scripts/sync-templates.js",
"prepublishOnly": "npm run sync"
},
"keywords": [
"ai",
"agents",
"nextjs",
"better-auth",
"starter-kit",
"boilerplate",
"scaffold",
"create-app"
],
"author": "Leon van Zyl",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/leonvanzyl/agentic-coding-starter-kit.git",
"directory": "create-agentic-app"
},
"homepage": "https://github.com/leonvanzyl/agentic-coding-starter-kit#readme",
"bugs": {
"url": "https://github.com/leonvanzyl/agentic-coding-starter-kit/issues"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"fs-extra": "^11.2.0",
"ora": "^8.1.1",
"prompts": "^2.4.2"
}
}