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

推荐订阅源

有赞技术团队
有赞技术团队
美团技术团队
博客园 - 司徒正美
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
阮一峰的网络日志
阮一峰的网络日志
S
SegmentFault 最新的问题
博客园_首页
雷峰网
雷峰网
V
V2EX
The Cloudflare Blog
博客园 - 三生石上(FineUI控件)
量子位
Last Week in AI
Last Week in AI
人人都是产品经理
人人都是产品经理
爱范儿
爱范儿
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 聂微东
V
Visual Studio Blog
Hugging Face - Blog
Hugging Face - Blog
博客园 - 【当耐特】
Jina AI
Jina AI
月光博客
月光博客
L
LangChain Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Stop Re-Explaining Your Codebase to AI Every Single Session
zephex · 2026-05-18 · via DEV Community

zephex

I'm going to describe something that happens to almost every developer using AI editors right now.

You open Cursor. New chat. You ask it to help with something. And before it does anything useful, it asks you what framework you're using. Or it confidently suggests something that completely ignores how your project is actually structured.

Not because the AI is bad. Because it literally has no idea what your project looks like. Every session is a blank slate.

So you paste package.json. You paste a couple of files. You explain the folder structure. You answer the same questions you answered yesterday. And the day before.

I got tired of it. So we built Zephex — a hosted MCP gateway that gives your AI editor real tools to understand your codebase, instead of waiting for you to spoon-feed it.

Here's the 10 tools u gotta know:

The tools that actually matter
There are 10 tools total. These are the ones I reach for every day.
scope_task —run this before touching any code
You describe your task in plain English.

It reads your repo and comes back with the exact files that matter, what utilities already exist that you should reuse, and which callers might break.
task: "add rate limiting to the auth endpoints"
→ 4 focus files, 1 reusable utility found, 2 callers at risk
Before I had this, I'd open like 15 files and half of them weren't relevant. Now I open the right 3.

get_project_context tools stop explaining your stack
One call. It reads your package.json / pyproject.toml / Cargo.toml / whatever and returns your full stack — language, framework, runtime, package manager, scripts, CI setup, entry points, dependency health.

Works for Node, Python, Go, Rust, Java, Kotlin, Swift, PHP, .NET. Also accepts GitHub URLs directly, not just local paths.
find_code — actually useful search
Boolean queries, regex, or literal — scoped to definitions only, or tests only, or imports only.

"stripe AND webhook NOT test" → definitions only
Replaces the thing where you grep for something and get 200 results from node_modules.

audit_package — before you touch a version number
Type in your current version, get back every breaking change, active CVEs, migration examples, and peer dependency conflicts between now and latest.
next @ 13.5.4 → 16.2.1
→ 2 breaking changes, CVE-2025-29927 (CVSS 9.1 — patch immediately), 1 peer conflict

I run this before every upgrade now. Found a critical CVE in a package I was about to update to.
audit_headers — after every production deploy
Checks your live URL's security headers, SSL cert, redirect chain, and cookies. Returns a letter grade and paste-ready fix snippets for Vercel, Cloudflare, or Nginx.

zephex.dev → Grade: A
CSP: present (1 issue: unsafe-inline in script-src)
HSTS: max-age 31536000, preload eligible
TLS: 1.3, cert valid until Aug 2026
thinking — for when you're stuck
This one sounds abstract but it's genuinely useful. Hard bug, weird multi-system issue, something you've been staring at for two hours — open a thinking session before you start reading code. It tracks your hypotheses and flags when you're going in circles or drifting off the actual problem.

What actually changed
The honest version: I stopped context-dumping at the start of every session.

That's it. That's the whole thing. The AI knows what my project looks like, what the conventions are, what already exists. I ask it to do something, and it actually does the right thing on the first try more often than not.

The first week I used it I caught myself thinking "wait, I didn't have to explain anything." That's a weird feeling when you've been doing the paste-files-and-explain dance for a year.

works with a bunch of editors:

Claude Code ,Cursor , VS Code ,Windsur opencode ,Gemini CLIKiro IDEFactory (Droid)GooseCodex CLIGitHub Copilot CLI Warp

If you try it, the two tools to start with are scope_task and get_project_context. Those two alone are worth the setup time.