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

推荐订阅源

The GitHub Blog
The GitHub Blog
M
MIT News - Artificial intelligence
Engineering at Meta
Engineering at Meta
云风的 BLOG
云风的 BLOG
博客园 - 叶小钗
Jina AI
Jina AI
Last Week in AI
Last Week in AI
The Cloudflare Blog
博客园 - 【当耐特】
Stack Overflow Blog
Stack Overflow Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
WordPress大学
WordPress大学
博客园_首页
I
InfoQ
G
Google Developers Blog
Martin Fowler
Martin Fowler
Recent Announcements
Recent Announcements
H
Help Net Security
U
Unit 42
Blog — PlanetScale
Blog — PlanetScale
阮一峰的网络日志
阮一峰的网络日志
P
Proofpoint News Feed
IT之家
IT之家
Microsoft Security Blog
Microsoft Security 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
I Spent 3 Years Looking for This Tool. It Didn't Exist. S...
Alex Sofroni · 2026-05-04 · via DEV Community

Every time we hired a new developer, the same nightmare started.

Week 1: "Alex, how does this service work?"
Week 2: "Alex, where does this connect to?"
Week 3: still pulling me and my senior devs away from real work.

I managed a team building software across multiple projects — Java backends, ESP32 firmware in C/C++, frontend apps. The codebase was real, complex, and completely undocumented in any readable form.

New hires weren't the problem. The codebase was.


The Tools I Tried (And Why They All Failed)

I spent a long time looking for a fix before I decided to build one.

Confluence — Someone has to write it first. We never did. Nobody does.

Notion wikis — Outdated before you finish typing. Great intentions, zero maintenance.

NotebookLM — Genuinely great product. Doesn't support code files. Dead end.

ChatGPT/Claude — Paste your entire codebase manually or through CLI always updated manually. Sure.

Swimm and Mintlify — The closest things to what I needed. Both require manual input, both are expensive for private repos, and neither lets your non-technical teammates actually use them.

Nothing solved the full problem: scan my private codebase automatically, generate structured docs, and let my entire team — devs and non-devs — chat with them.


What I Actually Needed

Let me be specific about the problem, because I think a lot of dev leads feel this but can't articulate it clearly.

The real cost of undocumented codebases isn't the onboarding time. It's the interruption tax on your senior developers.

Every time a new hire asks a question:

  • A senior dev context-switches out of deep work
  • Answers a question they've answered 6 times before
  • Loses 20-90 minutes of productive flow Multiply that by every new hire, every week, across every project. It's not a small problem. It's thousands of hours of your best engineers' time wasted every year.

And it's not just new devs. Marketing needs to understand what's being built. Sales needs to explain it to clients. Product managers need to know what's possible. Your entire non-technical team is flying blind.


So I Built ShipDocs

The concept is simple:

  1. Point it at your private repos (GitHub, GitLab, Bitbucket, zip upload or CLI)
  2. AI scans every file and generates structured documentation automatically
  3. Your whole team browses the docs or chats with them directly No manual writing. No outdated wikis. No copy-pasting code into any AI tool.

The docs are structured into real components — Overview, Architecture, Backend, Frontend, Workers, CLI, Migrations — whatever your actual codebase looks like. Not one-size-fits-all pages.

And the chat cites file paths. Every answer tells you exactly where in the codebase the information comes from. No hallucinated APIs. No vague summaries.


For Those Who Live in the Terminal

$ curl -fsSL shipdocs.sh | sh

Enter fullscreen mode Exit fullscreen mode

That's it. One command installs the CLI. Auth via browser, then:

$ shipdocs
→ scanning 1,284 files…
→ detecting components…
✓ found: backend · frontend · workers · cli · migrations
→ writing docs [6/9]
✓ done in 2m 14s
$ open shipdocs.sh/p/your-repo

Enter fullscreen mode Exit fullscreen mode

Your entire codebase documented without leaving your terminal.


What It Detects

ShipDocs auto-detects your stack — languages, frameworks, package managers — and writes the run instructions automatically.

It handles:

  • TypeScript, JavaScript, React, Vue, Svelte
  • Python, Django, FastAPI, Flask
  • Java, Spring Boot, Maven, Gradle
  • C, C++, ESP32 firmware, Arduino, PlatformIO
  • Go, Rust, PHP, Swift
  • Bun, Elysia, Hono, Express
  • Docker, Kubernetes, Terraform
  • Monorepos, microservices, micro-CLIs
  • and many more... If you write it, ShipDocs reads it.

The Security Question (I Know You're Thinking It)

Private code is private. I built this for teams with real IP in their repos. Here's what we do:

  • AES-256-GCM encryption at rest — per-project keys, KMS-backed vault
  • Never used for AI training — your code is never used to train any model, ours or anyone else's. We pay the model providers directly and use TEE models so you stay out of training data.
  • GDPR-aligned — right to erasure, defined retention windows, 90-day grace before hard delete

- Nothing usable hits the database in plaintext

Three Free Tools (No Account Needed)

While you're deciding whether ShipDocs is right for you, I built three free tools that work on public repos right now:

AI README Generator — Paste a repo URL, get a professional README in seconds. No more blank page.

Repo Complexity Score — Scan any public repo and get a complexity report. Weirdly addictive to run on repos you know.

Explain Repo in a Tweet — Paste a repo URL, get a one-sentence explanation. Great for understanding unfamiliar codebases fast.

All three are free, no account needed. Try them on a repo you know well and see how accurate the output is.


The Stack (Since You'll Ask)

  • Frontend: TanStack Start (React, file-based routing)
  • Backend: ElysiaJS + Bun (fast, excellent WebSocket support for streaming)
  • Database: PostgreSQL on Neon
  • Auth: Better-Auth (magic link, GitHub, GitLab, Bitbucket OAuth)
  • AI: OpenRouter — different models per plan tier
  • Payments: Polar
  • Hosting: Cloudflare Pages

- Domain: shipdocs.sh (yes, the domain is the install command)

Pricing and Early Access

ShipDocs is in early access right now. 151 devs have already joined and the feedback is amazing! First 500 members get founding pricing locked in forever:

Plan Founding Price Normal Price Repos Messages/mo
Free $0 $0 2 100
Starter $7.20/mo $9/mo 8 2,000
Pro $23.20/mo $29/mo 50 3,000

Free plan is genuinely free — no credit card, no trial period, just two repos and 100 messages a month forever.

Early access → shipdocs.sh


One Last Thing

If you've ever been the senior dev who got pulled out of deep work to explain the same module for the sixth time — this is for you.

If you've ever been the new hire who felt like they were drowning in an undocumented codebase for the first three weeks — this is for you.

If you've ever been the founder who couldn't explain to their marketing team what the engineers are actually building — this is for you.

Stop writing docs. Start shipping them.


Built by @DevOffScript — follow along as I build in public.

Questions, feedback, or brutal honesty → drop a comment below or find me on X.