Skip to content

Commit 01c2978

Browse files
authored
Merge pull request #32 from devakone/develop
Release: develop → main
2 parents 09f8812 + 9b12020 commit 01c2978

24 files changed

Lines changed: 2448 additions & 266 deletions

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,3 +70,6 @@ coverage/
7070
*.pid
7171
*.seed
7272
*.pem
73+
74+
# Sentry Config File
75+
.env.sentry-build-plugin
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
".": "0.1.0-alpha.11",
3-
"apps/web": "0.1.0-alpha.11",
2+
".": "0.1.0-alpha.13",
3+
"apps/web": "0.1.0-alpha.13",
44
"apps/worker": "0.1.0-alpha.3"
55
}

Agents.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ This document provides instructions for AI agents working on the Vibed Coding co
1818
See `docs/PRD.md` for full product requirements and `docs/architecture/inngest-integration.md` for job processing details.
1919

2020
**Key Reference Docs:**
21-
- [How Vibed Works](docs/how-vibed-works.md) — Product-friendly explanation of analysis
21+
- [How Vibe Coding Profile Works](docs/how-vibe-coding-profile-works.md) — Product-friendly explanation of analysis
2222
- [Vibed Analysis Pipeline](docs/architecture/vibed-analysis-pipeline.md) — Technical architecture with algorithms and data flow
2323

2424
---

CHANGELOG-DEVELOP.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Changelog
22

3+
## [0.1.0-alpha.13](https://github.com/devakone/vibe-coding-profiler/compare/vibe-coding-profiler-v0.1.0-alpha.12...vibe-coding-profiler-v0.1.0-alpha.13) (2026-02-12)
4+
5+
6+
### Features
7+
8+
* **analysis:** dampen initial/bulk commits in Automation axis ([2c2cf47](https://github.com/devakone/vibe-coding-profiler/commit/2c2cf472c31e24e3ce7e1c6fa5e6b389a4c16a5e))
9+
10+
11+
### Bug Fixes
12+
13+
* add disconnect button to repos settings page ([a349c67](https://github.com/devakone/vibe-coding-profiler/commit/a349c67e5b53aa78fee86bb13f83f2eab22253fa))
14+
15+
## [0.1.0-alpha.12](https://github.com/devakone/vibe-coding-profiler/compare/vibe-coding-profiler-v0.1.0-alpha.11...vibe-coding-profiler-v0.1.0-alpha.12) (2026-02-12)
16+
17+
18+
### Features
19+
20+
* add Sentry error tracking ([71d09da](https://github.com/devakone/vibe-coding-profiler/commit/71d09da398280deb2198635e2a21e050e0624552))
21+
322
## [0.1.0-alpha.11](https://github.com/devakone/vibe-coding-profiler/compare/vibe-coding-profiler-v0.1.0-alpha.10...vibe-coding-profiler-v0.1.0-alpha.11) (2026-02-01)
423

524

apps/web/CHANGELOG-DEVELOP.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Changelog
22

3+
## [0.1.0-alpha.13](https://github.com/devakone/vibe-coding-profiler/compare/web-v0.1.0-alpha.12...web-v0.1.0-alpha.13) (2026-02-12)
4+
5+
6+
### Features
7+
8+
* **analysis:** dampen initial/bulk commits in Automation axis ([2c2cf47](https://github.com/devakone/vibe-coding-profiler/commit/2c2cf472c31e24e3ce7e1c6fa5e6b389a4c16a5e))
9+
10+
11+
### Bug Fixes
12+
13+
* add disconnect button to repos settings page ([a349c67](https://github.com/devakone/vibe-coding-profiler/commit/a349c67e5b53aa78fee86bb13f83f2eab22253fa))
14+
15+
## [0.1.0-alpha.12](https://github.com/devakone/vibe-coding-profiler/compare/web-v0.1.0-alpha.11...web-v0.1.0-alpha.12) (2026-02-12)
16+
17+
18+
### Features
19+
20+
* add Sentry error tracking ([71d09da](https://github.com/devakone/vibe-coding-profiler/commit/71d09da398280deb2198635e2a21e050e0624552))
21+
322
## [0.1.0-alpha.11](https://github.com/devakone/vibe-coding-profiler/compare/web-v0.1.0-alpha.10...web-v0.1.0-alpha.11) (2026-02-01)
423

524

apps/web/instrumentation-client.js

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
// This file configures the initialization of Sentry on the client.
2+
// The added config here will be used whenever a users loads a page in their browser.
3+
// https://docs.sentry.io/platforms/javascript/guides/nextjs/
4+
5+
import * as Sentry from "@sentry/nextjs";
6+
7+
Sentry.init({
8+
dsn: "https://0ddc11d7b3f42d5ca32ecf0b74ff61ef@o4510870266118144.ingest.us.sentry.io/4510870274899968",
9+
10+
// Add optional integrations for additional features
11+
integrations: [Sentry.replayIntegration()],
12+
13+
// Define how likely traces are sampled. Adjust this value in production, or use tracesSampler for greater control.
14+
tracesSampleRate: 1,
15+
// Enable logs to be sent to Sentry
16+
enableLogs: true,
17+
18+
// Define how likely Replay events are sampled.
19+
// This sets the sample rate to be 10%. You may want this to be 100% while
20+
// in development and sample at a lower rate in production
21+
replaysSessionSampleRate: 0.1,
22+
23+
// Define how likely Replay events are sampled when an error occurs.
24+
replaysOnErrorSampleRate: 1.0,
25+
26+
// Enable sending user PII (Personally Identifiable Information)
27+
// https://docs.sentry.io/platforms/javascript/guides/nextjs/configuration/options/#sendDefaultPii
28+
sendDefaultPii: true,
29+
});
30+
31+
export const onRouterTransitionStart = Sentry.captureRouterTransitionStart;

apps/web/instrumentation.js

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import * as Sentry from "@sentry/nextjs";
2+
3+
export async function register() {
4+
if (process.env.NEXT_RUNTIME === "nodejs") {
5+
await import("./sentry.server.config");
6+
}
7+
8+
if (process.env.NEXT_RUNTIME === "edge") {
9+
await import("./sentry.edge.config");
10+
}
11+
}
12+
13+
export const onRequestError = Sentry.captureRequestError;

apps/web/next.config.ts

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import { withSentryConfig } from "@sentry/nextjs";
12
import type { NextConfig } from "next";
23
import path from "node:path";
34

@@ -34,4 +35,18 @@ const nextConfig: NextConfig = {
3435
},
3536
};
3637

37-
export default nextConfig;
38+
export default withSentryConfig(nextConfig, {
39+
// For all available options, see:
40+
// https://www.npmjs.com/package/@sentry/webpack-plugin#options
41+
org: "100kode",
42+
project: "javascript-nextjs",
43+
44+
// Only print logs for uploading source maps in CI
45+
silent: !process.env.CI,
46+
47+
// Upload a larger set of source maps for prettier stack traces (increases build time)
48+
widenClientFileUpload: true,
49+
50+
// Route browser requests to Sentry through a Next.js rewrite to circumvent ad-blockers.
51+
tunnelRoute: "/monitoring",
52+
});

apps/web/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
"test:watch": "vitest"
1313
},
1414
"dependencies": {
15+
"@sentry/nextjs": "^10.38.0",
1516
"@radix-ui/react-dropdown-menu": "^2.1.16",
1617
"@radix-ui/react-popover": "^1.1.15",
1718
"@radix-ui/react-toast": "^1.2.15",

apps/web/sentry.edge.config.js

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// This file configures the initialization of Sentry for edge features (middleware, edge routes, and so on).
2+
// The config you add here will be used whenever one of the edge features is loaded.
3+
// Note that this config is unrelated to the Vercel Edge Runtime and is also required when running locally.
4+
// https://docs.sentry.io/platforms/javascript/guides/nextjs/
5+
6+
import * as Sentry from "@sentry/nextjs";
7+
8+
Sentry.init({
9+
dsn: "https://0ddc11d7b3f42d5ca32ecf0b74ff61ef@o4510870266118144.ingest.us.sentry.io/4510870274899968",
10+
11+
// Define how likely traces are sampled. Adjust this value in production, or use tracesSampler for greater control.
12+
tracesSampleRate: 1,
13+
14+
// Enable logs to be sent to Sentry
15+
enableLogs: true,
16+
17+
// Enable sending user PII (Personally Identifiable Information)
18+
// https://docs.sentry.io/platforms/javascript/guides/nextjs/configuration/options/#sendDefaultPii
19+
sendDefaultPii: true,
20+
});

0 commit comments

Comments
 (0)