Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
d2c43ec
feat(visualizer): add zero-latency static analysis suite
Sidhant0707 May 29, 2026
5f61b5a
refactor(analyze): decompose page.tsx into modular hooks and UI compo…
Sidhant0707 May 29, 2026
5919ceb
Merge branch 'main' into feat/static-analysis
Sidhant0707 May 29, 2026
eaf7813
fix: restore clean refactored page.tsx, remove merge pollution
Sidhant0707 May 29, 2026
5f9c558
feat(visualizer): implement multi-source reverse BFS for PR blast radius
Sidhant0707 May 29, 2026
148e87e
fix: restore missing AiGate import in DoctorPanel
Sidhant0707 May 29, 2026
d16e2db
merge: sync with main, keep feat/pr-blast-radius changes
Sidhant0707 May 29, 2026
aad4d37
feat(analysis): implement pure DSA architecture insights and interact…
Sidhant0707 May 29, 2026
a9b3931
fix: resolve merge conflicts with main — keep pagerank feature, add c…
Sidhant0707 May 29, 2026
ada8623
feat: add Lemon Squeezy payment integration
Sidhant0707 May 30, 2026
726d72c
fix: replace auth-helpers-nextjs with supabase/ssr in checkout route
Sidhant0707 May 30, 2026
ed52cb4
fix: use correct SUPABASE_SERVICE_KEY env var in webhook
Sidhant0707 May 30, 2026
f88ae31
feat: wire up Specialist tier on pricing page
Sidhant0707 May 30, 2026
bee687b
fix: update free tier limit from 10 to 5 autopsies per day
Sidhant0707 May 30, 2026
f7ffc83
fix: resolve merge conflict in DoctorPanel
Sidhant0707 May 30, 2026
099023f
feat: update pricing constants - Specialist tier live at ₹99/mo
Sidhant0707 May 30, 2026
9abefa0
feat: reduce token usage and add deepseek-r1 for pro chat tier
Sidhant0707 May 30, 2026
679503e
fix: add missing isPro and diagnosticCount props to DebugInterface in…
Sidhant0707 May 30, 2026
4e9b6d6
Merge branch 'main' into feat/token-optimization
Sidhant0707 May 30, 2026
a4d341b
feat: gate Auto-Patch behind pro tier in RiskDashboard
Sidhant0707 May 30, 2026
840c63a
fix: replace amber pro accents with project-native slate/white palette
Sidhant0707 May 30, 2026
7df0a03
Merge branch 'main' into feat/token-optimization
Sidhant0707 May 30, 2026
fc17a29
fix: replace amber pro accents with project-native slate/white palette
Sidhant0707 May 30, 2026
a0b35d4
refactor(debug): optimise engine pipeline
Sidhant0707 May 30, 2026
6b7892c
refactor(arch-insights): fix AP algorithm, types, tests, and Pro gate UI
Sidhant0707 May 30, 2026
3171587
The graph computation layer — wherever computePageRank / findSCCs live
Sidhant0707 May 30, 2026
0001c25
fix(blueprint-map): compute PageRank internally when scores not passe…
Sidhant0707 May 31, 2026
88c979f
merge: integrate remote main with nerve-center pagerank fix
Sidhant0707 May 31, 2026
ad7f486
merge: use fix/nerve-center-pagerank version of ArchitectureMap
Sidhant0707 May 31, 2026
21969b1
fix: always insert new row for logged-in users on re-analysis
Sidhant0707 May 31, 2026
8319650
perf: reduce groq token spend with caching and model switch
Sidhant0707 May 31, 2026
0f89444
feat: integrate lemon squeezy, semantic caching, betweenness centrali…
Sidhant0707 Jun 1, 2026
31ccefd
seo: og-image, sitemap, robots.txt, schema markup
Sidhant0707 Jun 7, 2026
bfa82a5
Merge branch 'main' into feat/seo-improvements
Sidhant0707 Jun 7, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 36 additions & 6 deletions app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import { Analytics } from "@vercel/analytics/next";
import { Analytics } from "@vercel/analytics/next";
import "./globals.css";

const geistSans = Geist({
Expand All @@ -15,11 +15,13 @@ const geistMono = Geist_Mono({

export const metadata: Metadata = {
title: "CodeAutopsy | AI-Powered Codebase Visualization",
description: "Stop wrestling with unfamiliar code. CodeAutopsy analyzes GitHub repositories to provide visual architecture, execution flows, and AI-driven insights in minutes.",
description:
"Stop wrestling with unfamiliar code. CodeAutopsy analyzes GitHub repositories to provide visual architecture, execution flows, and AI-driven insights in minutes.",
metadataBase: new URL("https://codeautopsy-lyart.vercel.app"),
openGraph: {
title: "CodeAutopsy | Dissect Any Codebase",
description: "AI-powered architecture maps and execution flows for any GitHub repository. Understand code faster.",
description:
"AI-powered architecture maps and execution flows for any GitHub repository. Understand code faster.",
url: "https://codeautopsy-lyart.vercel.app",
siteName: "CodeAutopsy",
images: [
Expand All @@ -36,7 +38,8 @@ export const metadata: Metadata = {
twitter: {
card: "summary_large_image",
title: "CodeAutopsy | Dissect Any Codebase",
description: "Understand any codebase in minutes. AI-powered visual architecture and execution flows.",
description:
"Understand any codebase in minutes. AI-powered visual architecture and execution flows.",
creator: "@Sidhant07",
images: ["/og-image.png"],
},
Expand All @@ -52,10 +55,37 @@ export default function RootLayout({
lang="en"
className={`${geistSans.variable} ${geistMono.variable} h-full antialiased`}
>
<head>
<script
type="application/ld+json"
dangerouslySetInnerHTML={{
__html: JSON.stringify({
"@context": "https://schema.org",
"@type": "SoftwareApplication",
name: "CodeAutopsy",
description:
"AI-powered GitHub repository analyzer. Visualize dependencies, detect fragile points, and understand codebases faster.",
applicationCategory: "DeveloperApplication",
operatingSystem: "Web",
url: "https://codeautopsy-lyart.vercel.app",
offers: {
"@type": "Offer",
price: "0",
priceCurrency: "USD",
},
author: {
"@type": "Person",
name: "Sidhant Kumar",
url: "https://sidcore.in",
},
}),
}}
/>
</head>
<body className="min-h-full flex flex-col">
{children}
<Analytics />
<Analytics />
</body>
</html>
);
}
}
16 changes: 16 additions & 0 deletions generate-og.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 25 additions & 0 deletions next-sitemap.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
/** @type {import('next-sitemap').IConfig} */
const config = {
siteUrl: 'https://codeautopsy-lyart.vercel.app',
generateRobotsTxt: true,
exclude: [
'/api/*',
'/auth/*',
'/dashboard',
'/dashboard/*',
'/profile',
'/history',
'/analyze',
'/pr-scan',
'/view/*',
'/actions/*',
],
robotsTxtOptions: {
policies: [
{ userAgent: '*', allow: '/' },
{ userAgent: '*', disallow: ['/api/', '/auth/', '/dashboard/', '/profile/', '/history/', '/analyze/', '/pr-scan/', '/view/'] },
],
},
};

export default config;
Loading
Loading