From bd74276feb04dd123470c5b079044efb2a89e1d0 Mon Sep 17 00:00:00 2001 From: Leon van Zyl Date: Thu, 6 Nov 2025 07:17:58 +0200 Subject: [PATCH] fix/ remove container name from docker compose --- create-agentic-app/package.json | 2 +- .../template/.claude/commands/checkpoint.md | 34 +++++++++++++++++-- .../template/docker-compose.yml | 3 -- create-agentic-app/template/package.json | 2 +- docker-compose.yml | 3 -- package.json | 3 +- 6 files changed, 35 insertions(+), 12 deletions(-) diff --git a/create-agentic-app/package.json b/create-agentic-app/package.json index bf61362..63d5e54 100644 --- a/create-agentic-app/package.json +++ b/create-agentic-app/package.json @@ -1,6 +1,6 @@ { "name": "create-agentic-app", - "version": "1.0.1", + "version": "1.0.2", "description": "Scaffold a new agentic AI application with Next.js, Better Auth, and AI SDK", "type": "module", "bin": { diff --git a/create-agentic-app/template/.claude/commands/checkpoint.md b/create-agentic-app/template/.claude/commands/checkpoint.md index baecb50..b6c06e8 100644 --- a/create-agentic-app/template/.claude/commands/checkpoint.md +++ b/create-agentic-app/template/.claude/commands/checkpoint.md @@ -1,2 +1,32 @@ -Please commit all changes and provide a suitable comment for the commit. -Run git init if git has not been instantiated for the project as yet. +Please create a comprehensive checkpoint commit with the following steps: + +1. **Initialize Git if needed**: Run `git init` if git has not been instantiated for the project yet. + +2. **Analyze all changes**: + - Run `git status` to see all tracked and untracked files + - Run `git diff` to see detailed changes in tracked files + - Run `git log -5 --oneline` to understand the commit message style of this repository + +3. **Stage everything**: + - Add ALL tracked changes (modified and deleted files) + - Add ALL untracked files (new files) + - Use `git add -A` or `git add .` to stage everything + +4. **Create a detailed commit message**: + - **First line**: Write a clear, concise summary (50-72 chars) describing the primary change + - Use imperative mood (e.g., "Add feature" not "Added feature") + - Examples: "feat: add user authentication", "fix: resolve database connection issue", "refactor: improve API route structure" + - **Body**: Provide a detailed description including: + - What changes were made (list of key modifications) + - Why these changes were made (purpose/motivation) + - Any important technical details or decisions + - Breaking changes or migration notes if applicable + - **Footer**: Include co-author attribution as shown in the Git Safety Protocol + +5. **Execute the commit**: Create the commit with the properly formatted message following this repository's conventions. + +IMPORTANT: +- Do NOT skip any files - include everything +- Make the commit message descriptive enough that someone reviewing the git log can understand what was accomplished +- Follow the project's existing commit message conventions (check git log first) +- Include the Claude Code co-author attribution in the commit message diff --git a/create-agentic-app/template/docker-compose.yml b/create-agentic-app/template/docker-compose.yml index 09733e9..99d87da 100644 --- a/create-agentic-app/template/docker-compose.yml +++ b/create-agentic-app/template/docker-compose.yml @@ -1,9 +1,6 @@ -version: "3.8" - services: postgres: image: pgvector/pgvector:pg18 - container_name: postgres environment: POSTGRES_DB: postgres_dev POSTGRES_USER: dev_user diff --git a/create-agentic-app/template/package.json b/create-agentic-app/template/package.json index 453f4ca..b141157 100644 --- a/create-agentic-app/template/package.json +++ b/create-agentic-app/template/package.json @@ -1,6 +1,6 @@ { "name": "agentic-coding-starter-kit", - "version": "0.1.1", + "version": "1.1.2", "scripts": { "dev": "next dev --turbopack", "build": "pnpm run db:migrate && next build", diff --git a/docker-compose.yml b/docker-compose.yml index 09733e9..99d87da 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,9 +1,6 @@ -version: "3.8" - services: postgres: image: pgvector/pgvector:pg18 - container_name: postgres environment: POSTGRES_DB: postgres_dev POSTGRES_USER: dev_user diff --git a/package.json b/package.json index ffa2a7b..a1f6707 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,6 @@ { "name": "agentic-coding-starter-kit", - "version": "0.1.1", - "private": true, + "version": "1.1.2", "scripts": { "dev": "next dev --turbopack", "build": "pnpm run db:migrate && next build",