AI-powered changelog generator
Chronicler is a modern changelog management system that helps automate the creation of user-friendly changelogs from your Git commits. It uses AI to transform technical commit messages into clear, meaningful changelog entries that your users will actually understand.
- 🤖 AI-Powered Generation: Automatically convert commit messages into user-friendly changelog entries
- 🔄 GitHub Integration: Seamless sync with your GitHub repositories
- 🎨 Beautiful Public Pages: Clean, searchable changelog pages for your users
- 📱 Responsive Design: Works great on all devices
- 🚀 Easy Deployment: Deploy to Vercel with one click
Chronicler leverages Mastra, a powerful framework for building AI-driven workflows:
- Intelligent Agents - Custom AI agents analyze commits and generate human-readable changelog entries
- Automated Processing - Extract meaningful changes from technical commit messages
- Context-Aware Generation - Group related changes and maintain semantic consistency
- Custom Tools - Purpose-built tools help agents understand your codebase and repository structure
- Workflow Orchestration - Multi-step AI workflows ensure quality and consistency
The AI system uses a combination of LLM-powered agents and tailored workflows to transform cryptic commit messages like fix(auth): resolve JWT validation edge case #142 into user-friendly descriptions like "Fixed an issue where some users might experience login problems in rare circumstances."
- Clone the repository:
git clone https://github.com/yourusername/chronicler.git
cd chronicler- Install dependencies:
bun install- Set up your environment variables:
cp .env.example .env.local- Set up your database:
bun db:push- Run the development server:
bun devVisit http://localhost:3000 to see your app.
DATABASE_URL= # Your Neon DB URL
GITHUB_CLIENT_ID= # GitHub OAuth App Client ID
GITHUB_CLIENT_SECRET= # GitHub OAuth App Secret
OPENAI_API_KEY= # OpenAI API Key
BETTERAUTH_SECRET= # BetterAuth Secret Key
ADMIN_EMAIL= # Initial admin user email- Framework: Next.js 15 (App Router)
- Database: Neon (Postgres) + Drizzle ORM
- Auth: BetterAuth
- AI: Vercel AI SDK + OpenAI + Mastra for workflow orchestration
- Styling: Tailwind CSS 4 + shadcn/ui
- Deployment: Vercel
app/ # Next.js app router pages
components/ # React components
lib/ # Utility functions and configs
public/ # Static assets
bun dev # Start development server
bun run build # Build for production
bun start # Start production server
bun lint # Run ESLint
bun format # Run Prettier
bun db:push # Push database changes
bun db:studio # Open Drizzle Studio- Create a new project on Vercel
- Connect your repository
- Set up your environment variables
- Deploy!