Files
agentic-coding-starter-kit/create-agentic-app/package.json
Leon van Zyl 97a9f1b807 docs: add Claude Code commands documentation to README
Add comprehensive documentation for the custom Claude Code slash commands
that enable GitHub-integrated feature development workflow:

- /create-feature: Create feature specs with requirements and implementation plan
- /publish-to-github: Publish features to GitHub Issues and Projects
- /continue-feature: Implement tasks one at a time with automatic GitHub updates
- /checkpoint: Create detailed checkpoint commits

Documentation includes:
- Prerequisites (GitHub CLI setup, project scopes)
- Step-by-step typical workflow guide
- Example terminal session
- Offline mode instructions
- Command files location

Also bumps package version to 1.1.26 for this documentation update.

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

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

46 lines
1.0 KiB
JSON

{
"name": "create-agentic-app",
"version": "1.1.26",
"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"
}
}