
BoneScript, a new opensource Compiler for complete backend development
I developed an LSP, VS-Code extension and NPM package, please try it out and give me your thoughts!

I developed an LSP, VS-Code extension and NPM package, please try it out and give me your thoughts!
Figured I’d post mine as well since Cursor limits how many referral signups work each month
Referral gives 50% off the first month on Cursor Pro,Pro+,and Ultra plans:
https://cursor.com/referral?code=V6CY3ZZOOPEX
Looks like it’s for new accounts / first paid signup only. I also get usage credits if someone signs up through it (ill give you a smooch)
Been using Cursor a lot lately for React,Swift,and general AI workflow stuff so figured someone here might get use out of it.
The app is called Puplytics.
Before this project I had basically zero real coding experience. I went from not understanding app structure at all to learning React Native / Expo workflows, App Store Connect, subscriptions, AI APIs, privacy compliance, camera permissions, TestFlight builds, backend deployment, and debugging random production issues at 2am.
Honestly the hardest part wasn’t even building the app — it was getting through Apple review.
I got rejected for:
• subscription flow issues
• missing legal links
• camera permission wording
• AI consent flow compliance
• metadata problems
• purchase restore handling
• sandbox purchase behavior
• UI edge cases on iPad
…and probably more I’m forgetting lol.
The app itself is a dog wellness tracking app focused on digestive health and daily wellness tracking.
Features include:
• AI stool scan analysis
• symptom tracking
• food logging
• sleep & mood tracking
• AI wellness chat
• trend analysis
• downloadable vet reports
• multi-pet support
• reminders and history timelines
The original idea came from dealing with recurring stomach issues with my own dog and constantly forgetting what food changes or symptoms happened during vet visits.
So I basically built the app I wished existed.
The craziest part is realizing how much you can actually build now if you’re willing to learn while moving fast.
Would genuinely love feedback from other builders / vibe coders:
• UI/UX thoughts
• onboarding feedback
• feature ideas
• App Store screenshots
• monetization thoughts
• anything that feels confusing or broken
Still improving it daily. (As of right now it’s been live for about 20 minutes lol)
The app is called Puplytics on the App Store if anyone wants to roast/test it 🙏
Been lurking here for a while and finally shipped something worth sharing.
A few months ago I got obsessed with a simple question: how accurately can
AI determine the location of a random photo? Not just "probably Europe" —
actual coordinates.
Turns out it's a genuinely hard problem. The naive approach (just ask
Claude/GPT to look at the image) gets you maybe 40-50% accuracy on
urban photos and falls apart completely on rural ones.
So i went deeper. The pipeline I ended up with:
Total cost per analysis: under €0.02. Most of the accuracy gains came from steps 2-4, not from using a more expensive model.
The interesting failure cases:
- Photos with visible text are almost always nailed correctly
- Rural/forest photos are still genuinely hard regardless of pipeline
- The AI confidently wrong cases dropped significantly once I added
the web search layer
Built it as a SaaS with multi-prediction output (up to 4 ranked
hypotheses with confidence %), radius estimate, and a 3D map view.
Still early but the technical side was interesting enough to share.
Happy to go deep on any part of the pipeline if useful.
So basically, I did deep technical research into the tools and methods people use for this (basically anyone can replicate it), how the process works, and how it’s also being used for training smaller models and in the process they make million dollars.
here is the deep research over it if anyone is interested
https://x.com/HarshalsinghCN/status/2056626175959826692?s=20
let me know your views about this, also this is long article not for doomscrollers
Been working on Repowise for a few months now. The core idea: AI coding agents are only as good as the context they get. Most of the time, that context is terrible.
Cursor reads your files. It doesn't know your architecture. It doesn't know which files break the most. It doesn't know why you made that weird design decision in auth six months ago.
So I built a layer that sits between the codebase and the agent.
Four things it does:
Parses your AST into a dependency graph (NetworkX). Agents can reason about structure.
Mines git history into hotspot and ownership maps. Who wrote what, what breaks most.
Generates an LLM wiki of your codebase and stores it in a vector DB. Always in sync.
Captures architectural decisions as ADRs so agents have intent context, not just code.
Exposes 8 MCP tools. Works with any MCP-compatible agent. Also has a local web UI to explore the graph and docs yourself.
AGPL + commercial dual license. Self-hostable.
Got a few hundred GitHub stars pretty fast. Then someone cloned it on PyPI three times in a week violating the license, had to file a DMCA. Wild week.
Happy to answer questions on the technical side or the distribution side. Both have been interesting.
Repo: https://github.com/repowise-dev/repowise
Dogfooding on website: https://repowise.dev
A star would really help with visibility!
Are these people who are jobless and trying to reinvent themselves in a new role?
Hi everyone,
Working with LLMs on modern C++ codebases usually hits a wall very quickly: context windows get flooded with massive files, and most standard indexers still struggle with C++20 Module partitions and imports.
We are currently running a live development workflow on a large-scale commercial project consisting of over 7,000 source files, mostly utilizing C++20 modules.
We managed to establish a highly performant workflow using the Codex App on the desktop, combined with VS MCP, IDAP MCP, and a dedicated lightweight tool we created to bridge the C++ gap: mcp-cpp-project-indexer.
The Problem We Solved
Standard file-dumping or naive regex indexing either sends thousands of lines of irrelevant code to the LLM (costly and slow) or completely loses track of C++20 module dependencies.
Instead of trying to replace a full compiler/LSP (like clangd) or performing heavy semantic analysis, our indexer acts purely as a stream- and token-based locator. It maps out files, symbols, and module structures, providing the LLM with exact line references (startLine/endLine).
The Setup & Results
mcp-cpp-project-indexer.Why share this?
When we started, we couldn't find a lightweight, production-ready way to make Claude/GPT understand a massive C++20 module graph without spending a fortune on API tokens or waiting ages for context processing. This setup proved that the Model Context Protocol (MCP) is absolutely ready for large enterprise codebases if decoupled correctly.
The project is fully open-source. If you are struggling with C++ context limits or modules in your AI workflow, feel free to check it out, spin it up, or contribute:
👉 GitHub: github.com
I’m happy to answer any questions about how we configured the MCP synergy or how the incremental indexing handles the C++20 module tree!
Anthropic recently published their harness design for long-running apps - a multi-agent architecture inspired by GANs where a Generator builds code and an Evaluator critiques it in a loop.
I built my own version using Kiro CLI and used it to generate a marketing website for my project Mnemo (persistent memory for AI coding agents).
The architecture:
Planner (runs once) → Generator ↔ Evaluator (12 iterations)
Each agent is a separate CLI process with zero shared context. They communicate only through files (spec.md, eval-report.md). The Evaluator uses Playwright to actually browse the live site - not just read code.
What made it work:
Clean slate per invocation — each agent starts fresh, reads only its input files. Prevents context anxiety.
Playwright MCP for testing — the evaluator navigates, clicks, resizes viewports. Catches visual bugs code review never would.
Anthropic's frontend design skill — explicitly penalizes generic AI patterns (Inter font, purple gradients, card layouts). Forces creative risk-taking.
Continuous iteration, not retry-on-failure— all 12 rounds run regardless. Each one improves.
The progression was wild:
Iteration 1: Exactly what you'd expect from AI - functional but forgettable
Iteration 4: Generator pivoted to "Terminal Noir"
IBM Plex Mono, amber on black, grain textures, scanlines. This is the kind of creative leap that doesn't happen in single-shot generation.
Iterations 5-12: Polish, accessibility, responsive fixes, reduced-motion support
Stats:
Total time: 3h 20min
Iterations: 12 (generator + evaluator each)
Manual code written: 0 lines
Tech: Next.js, Tailwind, Framer Motion, TypeScript
Live result: https://mnemo-mcp.github.io/Mnemo/
Key takeaway: The model is the engine. The harness, the constraints, feedback loops, and adversarial structure around it, what determines whether you get AI slop or something genuinely distinctive.
Happy to answer questions about the architecture or share the prompt files.
Built a small Chrome extension called VibeApp Exporter because I got tired of manually rebuilding projects from AI app builders 😅
I was using tools like Lovable, Bolt, Base44 and Rork on their free plans. The annoying part was that exporting projects properly usually wasn’t available for free users.
So every time I wanted to continue the project locally in VS Code, I had to:
It became super time consuming once projects started getting bigger.
So I built an extension that:
It currently supports:
Everything runs browser-side and the code isn’t uploaded anywhere.
Honestly started as a personal pain-point project but figured other vibe coders probably deal with the same thing.
Still improving extraction reliability for different builders and edge cases, but it’s already saving me a lot of time.
Install for Free: VibeApp Exporter
Hey everyone,
I'm a frontend developer and currently using Claude Code for development tasks. The issue is that most of the generated Ul/designs feel very basic and generic.
I'm looking for good skill files or methods that can help it build better Ul designs.
I also want skill files for SEO improvement tasks.
So, if anyone has good skill files, GitHub repos, or methods for frontend development tasks and website SEO tasks, please suggest them.
I’ve been working on a single app for 10 months. Vibe coded the whole thing. Never looked at a line of code. Added quality assurance tests to catch any changes I wasn’t expecting. Should have done that earlier. Ran through code reviews of memory leaks, race conditions and uncaught errors. Performance tested it. Rewrote sections to be performant. Tests for all functionality. Administration interfaces to manage the application. Automated backups and email server. Built a scraper and went through iterations of scraping engines. Built data cleansing and data normalization functions. Ran penetration testing. But, the hardest thing I’m doing by far is operationalizing it. You can try and close all the holes you can think of but it’s the unexpected that ties you up. A random crash. An edge condition. System level functions that don’t consistently function as expected. What’s funny to me is I thought this part was going to be the easy part.
Disclaimer: I'm the developer of this tool.
Been working in network engineering for years. The constant context-switching between SSH sessions and AI tools was killing my workflow — copy output, paste to ChatGPT, get a suggestion, go back to terminal, repeat.
So I built something that keeps the AI inside the terminal itself. Three modes: Read Only (safe inspection), Fix Mode (approve each command), Auto Pilot (autonomous). Works through jump hosts, auto-detects vendor syntax, never sends your configs to our servers.
Still early — would love feedback from people who actually live in terminals. What's missing? What would make you switch from your current client?
→ netcopilot.app (free download, open source)
I have been speaking to my dev friends and answers vary WILDLY
A few of them say that they can survive on the free tiers, most say that they spend between $20-$150 but I have had some absolutlely insane answer. One guy told me that him and his only other technical teammate at his company blew through $65k last month!!!
So, how much are you burning through?
Software engineer for 13 years. Been agentic coding for about three weeks.
Something I'm finding a bit frustrating is:
I can assign Claude a github issue and it'll go off of create a PR, but then I see that like half of my token allocation is used. I want to be able be able to see the cost of that session.
If I'm using Claude Code in my IDE/terminal I can watching the reasoning occur and intervene if needed, though even that gets more difficult when spawning subagents.
What I really want to be able to do is a see a graph of exactly what happened, when sub agents got spawned, what context they then provided back into their spawning agent etc.
The idea then is that I can use this to optimise my prompts.
I feel like this must fairly well trodden territory - any suggestions for tooling?
Thinking to the Github driven workflow -imagine some kind of HTML page attached to the pull request that lets you explore it.
I’m building a client workflow dashboard and need architecture advice.
I’m trying to keep the dashboard/database as the source of truth and use the bot as a command layer, but I’m not sure if that’s the right pattern.
Each client would have workspaces, agents/workflows, run logs, outputs, analytics, and approvals.
I want a conversational control layer where I can type things like:
* “Run monthly report for Client A”
* “Show failed workflows”
* “Add SEO workflow to Client B”
* “Create a GitHub PR for this agent config”
* “Summarize this week’s outputs”
I’m debating where the bot should live:
* Slack bot
* Telegram bot
* chat panel inside the dashboard
* combination of the above
Stack I’m considering:
* Vercel dashboard
* Railway API/orchestrator
* Postgres
* GitHub for configs/code changes
* LLM API
* background job queue
Main question:
What’s the cleanest way to connect a conversational bot to deployed workflows?
Should the bot call APIs directly, create queued jobs, trigger GitHub workflows, or only create approval requests that the dashboard executes?
I’m especially interested in permissioning, audit logs, human approval steps, and avoiding accidental production changes.
Post your project here 👇
I created a web app like facemash but for vibe/indie projects
Been seeing a ton of people sharing their builds across Reddit and Twitter for thoughts on vibe coded and indie built projects.
It’s basically a head to head format where two projects show up and you just pick which one you’d ship or skip. There's a live leaderboard, and you can look projects up by categories too.
Trying to keep it fast and easy to use, I just added a small “why I built this” section so you can understand the intent behind a project before voting.
Still early and a v1ish.
If you’ve built anything you can submit it!
Would love some feedback.