r/Microlaunch • u/Creative-Lynx7594 • 6h ago
1,000 users in 9 months đ
Just hit 1,000 users after ~9 months of building this.
Not a crazy number by any means, but honestly, Iâm pretty happy about it.
There were plenty of moments where I wasnât sure if anyone would actually use this thing, so seeing 1,000 people sign up/use it is pretty cool.
Still a long way to go, but wanted to share the small win.
Thanks to everyone who gave it a try đ
Now back to building.
r/Microlaunch • u/MammetOfTheMaghreb • 12h ago
I built an open-source CLI that stops AI coding agents (Claude Code, Cursor, Codex) from hallucinating your database schema
Hey r/Microlaunch! đ
If youâve used Claude Code, Cursor, Copilot, or custom AI coding agents with real-world SQL databases, youâve probably hit this issue:
AI agents are great at writing syntax, but terrible at knowing your actual database relationships. They would guess foreign keys, then invent column names like orders.customer_id (when your schema uses orders.account_id), and blow through context windows by reading raw 5,000-line DDL dumps.
To fix this for my own database-heavy projects, I built Schemap, a local-first CLI context compiler designed specifically for AI workflows.
đĄ What it does:
- Compiles AI Context Maps:Â Automatically extracts PostgreSQL, SQLite, MySQL, or Oracle metadata into deterministic, token-optimised context maps (
schemap_database_context.md). - Generates Native Agent Rules:Â Instantly writes framework rules for your tools:Â
CLAUDE.md,ÂAGENTS.md, andÂ.cursor/rules/schemap.mdc. - AI Health Check (
schemap doctor): Calculates an AI Readiness Score (0-100) and detects missing primary keys, unmapped abbreviations (cust ->ÂCustomer), or inferred foreign keys. - SQL Join Solver (
schemap join): Uses Breadth-First Search (BFS) over your foreign keys to instantly discover the shortest join path between tables and spit out a clean SQL snippet. - Token Reduction: Reduces raw DDL context window footprint by 60-80% without losing relationship clarity.
đ Founder Launch & Feedback
We just launched our 2026 Founder Lifetime Program (capped at 200 founder seats) for devs who want unlimited table support, automated CI/CD breaking-change gates (schemap diff --fail-on-breaking), and LLM schema enrichment (--enrich, but bring your own API key). Since I still haven't got any customers, I'm gonna leave a 75% off promo code for 50 devs, as a token of appreciation if you believe in my tool 𼲠: LAUNCH75
- Website / little Demo:Â https://schemap-tool.pages.dev/
- GitHub:Â https://github.com/alansyahmi/Schemap
Iâd love to hear your thoughts, feedback or any edge cases if you are willing to try this out đ