惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

P
Proofpoint News Feed
Blog — PlanetScale
Blog — PlanetScale
GbyAI
GbyAI
C
Check Point Blog
腾讯CDC
Stack Overflow Blog
Stack Overflow Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
The GitHub Blog
The GitHub Blog
A
About on SuperTechFans
Recent Announcements
Recent Announcements
L
LangChain Blog
Microsoft Azure Blog
Microsoft Azure Blog
小众软件
小众软件
J
Java Code Geeks
博客园_首页
Jina AI
Jina AI
美团技术团队
H
Help Net Security
MyScale Blog
MyScale Blog
Engineering at Meta
Engineering at Meta
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
人人都是产品经理
人人都是产品经理
Y
Y Combinator Blog
S
SegmentFault 最新的问题

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
VibeDrift: Stop your AI agent from getting worse as your ...
samiahmadkha · 2026-06-25 · via Hacker News: Show HN

It forgets your patterns, repeats code, and breaks what worked. VibeDrift catches the drift before it spreads.

Agent quality over sessions

With VibeDriftWithout

the drift92 · A41 · Dsession 5session 50

Plays nice with

Claude CodeCursorGitHub CopilotWindsurfAntigravityOpenAI CodexKiroAny MCP clientClaude CodeCursorGitHub CopilotWindsurfAntigravityOpenAI CodexKiroAny MCP clientClaude CodeCursorGitHub CopilotWindsurfAntigravityOpenAI CodexKiroAny MCP clientClaude CodeCursorGitHub CopilotWindsurfAntigravityOpenAI CodexKiroAny MCP clientClaude CodeCursorGitHub CopilotWindsurfAntigravityOpenAI CodexKiroAny MCP clientClaude CodeCursorGitHub CopilotWindsurfAntigravityOpenAI CodexKiroAny MCP clientClaude CodeCursorGitHub CopilotWindsurfAntigravityOpenAI CodexKiroAny MCP clientClaude CodeCursorGitHub CopilotWindsurfAntigravityOpenAI CodexKiroAny MCP clientClaude CodeCursorGitHub CopilotWindsurfAntigravityOpenAI CodexKiroAny MCP clientClaude CodeCursorGitHub CopilotWindsurfAntigravityOpenAI CodexKiroAny MCP client


Same project. Two different styles.

Your AI wrote both files, in two sessions. Both pass the linter. Together they teach it your project has no rules.

user_handler.ts

import { UserRepository } from '../repositories/user';
import { requireAuth } from '../middleware/auth';

export async function getUser(req: Request) {
  requireAuth(req);
  const user = await UserRepository.findById(id);
  if (!user) throw new NotFoundError();
  return user;
}

✓ Uses the repository pattern

✓ Checks the user is logged in

✓ Proper typed error

order_handler.ts

import { db } from '../config/database';

export async function getOrder(req: Request) {
  const id = req.params.id;
  const rows = await db.query('SELECT * FROM orders...');
  if (rows.length === 0) {
    return { status: 404, error: 'not found' };
  }
  return rows[0];
}

✗ Raw SQL, no repository

✗ Anyone can call it, no auth

✗ Random error format

8 checks~2sruns locally


Your agent checks before it writes.

A report tells you about drift after it lands. The VibeDrift MCP server stops it from landing at all. Mid-task, Claude Code and Cursor ask your codebase what it already does, and get an evidence-backed answer in under a second. That turns drift detection into drift prevention.

get_dominant_pattern

“What's this repo's error-handling pattern?”

find_similar_function

“Does a function like this already exist?”

check_file_drift

“Does this file match the repo's conventions?”

validate_change

“Would this change introduce drift?”

get_intent_hints

“What conventions has the team declared?”

Five tools. Local and free, your code never leaves your machine, no login.

Add it in one line (Claude Code, Cursor, Windsurf, any MCP client)

$ claude mcp add vibedrift -- npx -y @vibedrift/cli mcp


// Everything you get

Find it, fix it, keep it clean.

One scan ranks what's wrong by how much it hurts, hands your agent a copy-paste fix, and leaves a memory it reads every session.

Find it. Fix it. In seconds.

0

drifts found

ranked by how much they hurt

my-saas-app

ERRORTwo patterns fighting

orderService.ts:42

ERRORMissing login check

admin/reports.ts:8

WARNSame function, two names

format.ts ↔ money.ts

+ 14 more, worst first

Three steps, no setup

1

Run npx @vibedrift/cli .

scans locally in ~2s

2

Read worst problems first

ranked by how much they hurt

3

Paste the fix into your agent

every finding ships with one

Agent memory

A .vibedrift/ folder your agent reads every session.

context.md

Patterns & open drifts

fix-prompts.md

One fix at a time

patterns.json

Machine-readable

Live checks (MCP)

Your agent asks your codebase mid-task, answer in under a second.

Does this already exist?

↳ Yes, see format.ts

What's our error pattern?

↳ Typed errors, never raw 404s

Will this cause drift?

↳ It would. Use the repo pattern.

Watch mode

Refreshes the memory on every save. Zero network calls.

Open source

VibeDrift / VibeDrift

TypeScript4MIT


// Proof

We checked if it works. Honestly.

With and without VibeDrift, graded by an independent pass, it only changes things when the model would've gotten it wrong, and we show where it did nothing.

Conventions the agent could already infer

≈ 0

No measurable change.

When the model would match your conventions anyway, the signal does nothing, and we're not hiding that.

Conventions it couldn't see or wouldn't pick

Cut by a statistically significant margin.

95% CI [0.57, 1.11] , clears zero.


// Local vs Deep

Patterns catch the visible drift. Deep catches what they can't.

The free local scan catches the obvious drift in seconds. The deep scan reads what your code actually means, so it finds the deeper conflicts a quick scan can't, the kind that quietly pile up in big codebases.

Local scan

Free · Open source · Unlimited

  • Static + Code DNA analysis, pattern, structure, and duplicate checks, all on your machine in ~2s
  • Drift detectors, mismatched patterns and missing auth guards
  • Scaffolding detection, flags half-finished, copy-pasted code
  • Scan-over-scan delta, what changed since your last scan
  • CI-ready, fast enough for every save and pull request

Catches the stuff your code visibly does differently.

Deep scan

Pro · AI-powered

  • Semantic duplicates, the same logic hiding under different names
  • Intent mismatch detection, when a function's name doesn't match what it does
  • AI-validated findings, every result is double-checked by Claude, so you don't chase false alarms
  • Coherence report, a ranked scorecard of how consistent your code is with itself, worst first
  • Fix prompts, a ready-to-paste fix for each finding
  • In-editor via MCP, catches issues right as your agent writes them

Catches the conflicts you can't spot by eye, the ones hiding in what the code means.

The deep scan helps most exactly where your AI agent can't see your conventions on its own, which is right when drift creeps in.


Free to start. Pay only for deep scans.

Local scans and the local MCP tools are free on every plan, forever. Paid plans add a deep-scan budget and in-editor checks.

Free

$0

Start free. No card needed.

1 deep scan / month

+Unlimited local scans

+Free MCP tools, forever

+Vibe Drift Score + reports

+Scan-over-scan delta

Most popular

Pro

$15/mo

For developers shipping every day.

Everything in Free, plus

12 deep scans / month

+Drift trend over time

+In-editor deep checks via MCP

+Coherence report + copy-ready fixes

+Watch mode + git pre-push gate

+Top-ups: 5 scans for $10

Enterprise

Let's talk

Regulated, air-gapped, or self-hosted.

Everything in Pro, plus

Self-host in your cloud (BYOC)

+Team seats + shared dashboard

+SSO / SAML

+Custom rules + SLA

+GitHub App, auto-PR

+Dedicated support

Out of deep scans? Top up 5 for $10, on any plan. Credits never expire.


// FAQ

Questions, answered.

How do I get started?+

Run npx @vibedrift/cli . in any project, no account, no config. Local scans are free and unlimited; sign in only when you want a deep scan or the dashboard.

Does it auto-fix, or just flag drift?+

Both. Every scan writes copy-ready fix prompts to .vibedrift/fix-plan.md so you, or your agent, can apply them. Deep scans add AI-synthesized fixes for the contradictions patterns can't see.

What's the Vibe Drift Score?+

A 0–100 score across five categories, graded against your own codebase's dominant patterns, not a generic rulebook. It tells you how internally consistent your project is and which files drag it down.

Is it really open source?+

Yes. The local scanner is MIT-licensed at github.com/VibeDrift/VibeDrift.

Stop blaming the model.

See what your codebase has been teaching your AI.

Not ready to scan? Get notified of updates.