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

推荐订阅源

Vercel News
Vercel News
博客园 - 【当耐特】
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
小众软件
小众软件
Hugging Face - Blog
Hugging Face - Blog
aimingoo的专栏
aimingoo的专栏
WordPress大学
WordPress大学
G
Google Developers Blog
博客园 - 叶小钗
大猫的无限游戏
大猫的无限游戏
P
Proofpoint News Feed
J
Java Code Geeks
U
Unit 42
云风的 BLOG
云风的 BLOG
阮一峰的网络日志
阮一峰的网络日志
N
Netflix TechBlog - Medium
宝玉的分享
宝玉的分享
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
D
Docker
V
Visual Studio Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
H
Help Net Security
V
V2EX
T
Tailwind CSS 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
How I Built an AI Architecture Visualizer in 8 Hours (And...
Yash Bodade · 2026-05-20 · via DEV Community

Tired of reading messy codebases? Meet AETHER. ---

Have you ever joined a new project, looked at the repository, and realized you're going to lose the next three days just trying to figure out how the files connect?

Yeah, me too.

As a Full-Stack developer, I got tired of manually mapping out data flows and component hierarchies. So, for the Baidu "Build with MeDo" Hackathon, I built AETHER: an AI-powered Developer Onboarding & Scoping Assistant.

AETHER takes any public GitHub repository and instantly maps its entire architecture using AI-generated interactive Mermaid.js diagrams.

Here is how I built it without writing custom backend code, and how I bypassed some major LLM and API bottlenecks.


⚡ What AETHER Actually Does

I didn't just want a passive visualizer; I wanted an active workflow tool for the Work & Productivity track. AETHER has three main features:

1. Instant Architecture Mapping

You paste a GitHub URL, and AETHER instantly generates an interactive visual graph of the codebase. To avoid visual noise on massive repos, it includes a Context Pruning filter so you can isolate just the Frontend, Backend, or Database models.

2. "Impact Analysis" Mode (My Favorite Feature)

If you are scoping a sprint, you can type a feature request like "Migrate database to PostgreSQL". AETHER runs an Impact Analysis, highlighting the exact nodes/files on the diagram in orange that need to be modified, alongside a step-by-step implementation checklist.

3. One-Click Auto-Documentation

Productivity tools need tangible deliverables. With one click, AETHER takes its context and generates a comprehensive, formatted ARCHITECTURE.md file that you can immediately download and commit to your repo.


🛠️ How I Built It (The MeDo Magic)

AETHER was built entirely using MeDo, Baidu's AI application builder. Because I understand full-stack architecture, I treated MeDo like an orchestrator rather than a simple chatbot.

I wired together specific MeDo Skills to handle the heavy lifting:

  1. HTTP Request Skill: Safely communicates with the GitHub API to fetch recursive file trees.
  2. Data Processing Skill: Cleans the payload by stripping out heavy folders like node_modules and binaries. This is crucial—if you send a raw Node/Python project to an LLM, you will instantly blow up the context window.
  3. File Generator Skill: Compiles the AI's analysis into the final, downloadable .md file.

Overcoming the Bottlenecks

Building AI wrappers is easy. Building a reliable AI workflow is hard. I ran into two major roadblocks that I had to engineer my way out of:

1. The GitHub API Rate Limit Wall
Unauthenticated GitHub API requests limit you to 60 calls per hour. AETHER burns through that instantly.

  • The Fix: I instructed MeDo to build a secure UI modal where users can input their own GitHub Personal Access Token (PAT). MeDo saves this locally and injects it into the HTTP Request header, bumping the limit to 5,000 requests an hour.

2. The Mermaid Syntax Hallucinations
LLMs are notoriously bad at finishing long blocks of code. AETHER kept crashing because the AI would hit its Output Token Limit mid-generation, leaving unclosed brackets that broke the Mermaid.js client renderer.

  • The Fix: I engineered highly strict system prompts forcing the AI to optimize tokens by grouping minor files, dropping spaces in subgraph IDs, and I maximized the token ceiling in MeDo's settings to guarantee flawless execution.

🚀 Try It Out

Building this for the #BuiltWithMeDo hackathon was an incredible experience in "Vibe Coding" and spec-driven development.

Vote Me here

If you test it on one of your repositories, let me know how accurately it maps your architecture in the comments below! 👇