CodePilot
Community

Changelog

Release history and notable changes to CodePilot.

All notable changes to CodePilot are documented on this page.

v1.0.0 — Initial Release

The first production release of CodePilot, featuring the complete repository analysis pipeline.

Features

  • Repository Ingestion — Clone GitHub repositories, parse files with ts-morph AST analysis, chunk code into semantic segments, generate vector embeddings, and store in PostgreSQL with pgvector
  • AI-Powered Chat — Ask natural-language questions about any indexed codebase using Retrieval-Augmented Generation (RAG)
  • Semantic Search — Find relevant code by meaning using cosine similarity search over vector embeddings
  • AI Code Review — Automated pull request reviews triggered by GitHub webhooks
  • Repository Intelligence — Auto-generated repository overviews, architecture summaries, and health scores
  • GitHub Integration — OAuth login, GitHub App installation, webhook handling for push and pull request events
  • Incremental Sync — Re-ingest only changed files on new commits
  • Background Workers — BullMQ-powered async job processing with retry logic and priority queuing
  • Docker Deployment — Full Docker Compose configuration for development and production

Tech Stack

  • Frontend: Next.js 16, React 19, Tailwind CSS, shadcn/ui
  • API: Express 5, TypeScript, Zod validation
  • Database: PostgreSQL 18 + pgvector, Prisma 7
  • Queue: BullMQ + Redis
  • AI: Ollama (nomic-embed-text, qwen2.5-coder:3b, qwen2.5:7b)
  • Monorepo: Turborepo, pnpm workspaces

Documentation

  • Complete documentation site built with Fumadocs
  • Architecture deep-dives for all system components
  • Step-by-step installation and deployment guides
  • Comprehensive environment variable reference

On this page