diff --git a/.release-please-manifest.develop.json b/.release-please-manifest.develop.json index 5a2e6dd..94d32c7 100644 --- a/.release-please-manifest.develop.json +++ b/.release-please-manifest.develop.json @@ -1,5 +1,5 @@ { - ".": "0.1.0-alpha.1", - "apps/web": "0.1.0-alpha.1", + ".": "0.1.0-alpha.2", + "apps/web": "0.1.0-alpha.2", "apps/worker": "0.1.0-alpha.1" } diff --git a/Agents.md b/Agents.md index b4ff47b..31b3ee0 100644 --- a/Agents.md +++ b/Agents.md @@ -12,10 +12,14 @@ This document provides instructions for AI agents working on the Vibed Coding co - **Backend:** Next.js Route Handlers (Vercel) - **Auth:** Supabase Auth with GitHub OAuth - **Database:** Supabase Postgres with Row Level Security -- **Background Jobs:** Supabase Edge Functions -- **LLM:** Claude API (server-side only) +- **Background Jobs:** Inngest (primary) or standalone worker (fallback) +- **LLM:** Anthropic Claude, OpenAI, or Google Gemini (server-side only, configurable) -See `docs/PRD.md` for full product requirements. +See `docs/PRD.md` for full product requirements and `docs/architecture/inngest-integration.md` for job processing details. + +**Key Reference Docs:** +- [How Vibed Works](docs/how-vibed-works.md) — Product-friendly explanation of analysis +- [Vibed Analysis Pipeline](docs/architecture/vibed-analysis-pipeline.md) — Technical architecture with algorithms and data flow --- diff --git a/CHANGELOG-DEVELOP.md b/CHANGELOG-DEVELOP.md index 9742082..a61cb70 100644 --- a/CHANGELOG-DEVELOP.md +++ b/CHANGELOG-DEVELOP.md @@ -1,5 +1,12 @@ # Changelog +## [0.1.0-alpha.2](https://github.com/devakone/vibed-coding/compare/vibed-coding-v0.1.0-alpha.1...vibed-coding-v0.1.0-alpha.2) (2026-01-21) + + +### Features + +* enhance profile sharing and versioning features ([411ba50](https://github.com/devakone/vibed-coding/commit/411ba506074e2d35c5ec0c07aff8f824a86ef96b)) + ## [0.1.0-alpha.1](https://github.com/devakone/vibed-coding/compare/vibed-coding-v0.1.0-alpha.0...vibed-coding-v0.1.0-alpha.1) (2026-01-20) diff --git a/apps/web/CHANGELOG-DEVELOP.md b/apps/web/CHANGELOG-DEVELOP.md index 04b1499..41fe9e2 100644 --- a/apps/web/CHANGELOG-DEVELOP.md +++ b/apps/web/CHANGELOG-DEVELOP.md @@ -1,5 +1,12 @@ # Changelog +## [0.1.0-alpha.2](https://github.com/devakone/vibed-coding/compare/web-v0.1.0-alpha.1...web-v0.1.0-alpha.2) (2026-01-21) + + +### Features + +* enhance profile sharing and versioning features ([411ba50](https://github.com/devakone/vibed-coding/commit/411ba506074e2d35c5ec0c07aff8f824a86ef96b)) + ## [0.1.0-alpha.1](https://github.com/devakone/vibed-coding/compare/web-v0.1.0-alpha.0...web-v0.1.0-alpha.1) (2026-01-20) diff --git a/apps/web/src/app/AppHeader.tsx b/apps/web/src/app/AppHeader.tsx index f9062c4..271f669 100644 --- a/apps/web/src/app/AppHeader.tsx +++ b/apps/web/src/app/AppHeader.tsx @@ -25,7 +25,7 @@ export default function AppHeader(props: { const baseLinks = props.isAuthed ? [ - { href: "/", label: "My Vibed" }, + { href: "/", label: "My VCP" }, { href: "/repos", label: "Repos" }, { href: "/analysis", label: "Reports" }, { href: "/settings/llm-keys", label: "Settings" }, @@ -54,7 +54,7 @@ export default function AppHeader(props: { > - Vibed Coding + Vibe Coding Profile