Renamed the ui-developer agent to ui-expert for better clarity and consistency with naming conventions. This change affects both the root project and the create-agentic-app template. Changes made: - Renamed .claude/agents/ui-developer.md to ui-expert.md in both root and template - Updated agent name and references within agent configuration - Bumped create-agentic-app version from 1.1.14 to 1.1.15 - Updated corresponding package-lock.json with new version The agent's functionality and responsibilities remain unchanged - this is purely a naming improvement to better reflect its role as a UI expert rather than just a developer. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
46 lines
1.0 KiB
JSON
46 lines
1.0 KiB
JSON
{
|
|
"name": "create-agentic-app",
|
|
"version": "1.1.15",
|
|
"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"
|
|
}
|
|
}
|