frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Joonote – A note-taking app on your lock screen and notification panel

https://joonote.com/
9•kilgarenone•3h ago•0 comments

Show HN: Batear – I built a $15 edge-only acoustic drone warning system

https://github.com/TN666/batear
5•t841222•2h ago•2 comments

Show HN: We built a terminal-only Bluesky / AT Proto client written in Fortran

https://github.com/FormerLab/fortransky
127•FormerLabFred•20h ago•76 comments

Show HN: I saw Norton Commander on X and nostalgia made me build it for the web

https://github.com/victorantos/NC
2•victorbuilds•2h ago•0 comments

Show HN: Sonar – A tiny CLI to see and kill whatever's running on localhost

https://github.com/RasKrebs/sonar
170•raskrebs•1d ago•76 comments

Show HN: EchoLive – Read-it-later app that reads to you with 600 AI voices

https://echolive.co/
2•stanlymt•4h ago•0 comments

Show HN: Red Grid Link – peer-to-peer team tracking over Bluetooth, no servers

https://github.com/RedGridTactical/RedGridLink
49•redgridtactical•20h ago•17 comments

Show HN: Deterministic security solution for AI agents – OpenClaw and 2 more

4•steadeepanda•5h ago•6 comments

Show HN: Baltic shadow fleet tracker – live AIS, cable proximity alerts

https://github.com/FormerLab/shadow-fleet-tracker-light
52•FormerLabFred•21h ago•17 comments

Show HN: RSS reader that scores articles 0–10 with LLM before you open them

https://github.com/Tutanka01/makhalReader
2•makhal01•6h ago•2 comments

Show HN: Three new Kitten TTS models – smallest less than 25MB

https://github.com/KittenML/KittenTTS
546•rohan_joshi•2d ago•178 comments

Show HN: Korru, Web App Catalog

https://korru.app
6•anwar_nairi•7h ago•2 comments

Show HN: I fixed FFmpeg's subtitle conversion (the bug from 2014)

https://connollydavid.github.io/pgs-release/
37•slartibardfast0•4d ago•8 comments

Show HN: Duplicate 3 layers in a 24B LLM, logical deduction .22→.76. No training

https://github.com/alainnothere/llm-circuit-finder
258•xlayn•2d ago•82 comments

Show HN: I made an email app inspired by Arc browser

https://demo.define.app
63•johndamaia•1d ago•46 comments

Show HN: FPGA soft-core of the Saab Viggen's 1963 airborne computer

https://github.com/FormerLab/ck37-core
21•FormerLabFred•1d ago•8 comments

Show HN: Rover – turn any web interface into an AI agent with one script tag

https://github.com/rtrvr-ai/rover
8•quarkcarbon279•17h ago•3 comments

Show HN: Open-Source Knowledge Agents Template

https://vercel.com/blog/build-knowledge-agents-without-embeddings
3•flashbrew•4h ago•1 comments

Show HN: Agent-password – a local macOS password manager for agent workflows

https://github.com/tartavull/agent-password
4•tartavull•14h ago•0 comments

Show HN: I built 48 lightweight SVG backgrounds you can copy/paste

https://www.svgbackgrounds.com/set/free-svg-backgrounds-and-patterns/
394•visiwig•3d ago•67 comments

Show HN: Vibefolio – a place to showcase your vibecoded projects

https://vibefolio.link/
10•Gooblebrai•21h ago•7 comments

Show HN: Playing LongTurn FreeCiv with Friends

https://github.com/ndroo/freeciv.andrewmcgrath.info
86•verelo•2d ago•41 comments

Show HN: A personal CRM for events, meetups, IRL

https://payo.tech/
4•Raj7k•23h ago•1 comments

Show HN: I built a P2P network where AI agents publish formally verified science

45•FranciscoAngulo•1d ago•9 comments

Show HN: Pgit – A Git-like CLI backed by PostgreSQL

https://oseifert.ch/blog/building-pgit
125•ImGajeed76•4d ago•61 comments

Show HN: AgentVerse – Open social network for AI agents (Mar 2026)

https://nickakre.github.io/agentverse-social/
5•nickakre•17h ago•1 comments

Show HN: Will my flight have Starlink?

275•bblcla•3d ago•361 comments

Show HN: Tmux-IDE, OSS agent-first terminal IDE

https://tmux.thijsverreck.com
87•thijsverreck•3d ago•37 comments

Show HN: Crust – A CLI framework for TypeScript and Bun

https://github.com/chenxin-yan/crust
93•jellyotsiro•4d ago•41 comments

Show HN: Sub-millisecond VM sandboxes using CoW memory forking

https://github.com/adammiribyan/zeroboot
308•adammiribyan•4d ago•72 comments
Open in hackernews

Show HN: AI SDLC Scaffold, repo template for AI-assisted software development

https://github.com/pangon/ai-sdlc-scaffold/
17•pangon•6h ago
I built an open-source repo template that brings structure to AI-assisted software development, starting from the pre-coding phases: objectives, user stories, requirements, architecture decisions.

It's designed around Claude Code but the ideas are tool-agnostic. I've been a computer science researcher and full-stack software engineer for 25 years, working mainly in startups. I've been using this approach on my personal projects for a while, then, when I decided to package it up as scaffold for more easy reuse, I figured it might be useful to others too. I published it under Apache 2.0, fork it and make it yours.

You can easily try it out: follow the instructions in the README to start using it.

The problem it solves:

AI coding agents are great at writing code, but they work much better when they have clear context about what to build and why. Most projects jump straight to implementation. This scaffold provides a structured workflow for the pre-coding phases, and organizes the output so that agents can navigate it efficiently across sessions.

How it works:

Everything lives in the repo alongside source code. The AI guidance is split into three layers, each optimized for context-window usage:

1. Instruction files (CLAUDE.md, CLAUDE.<phase>.md): always loaded, kept small. They are organized hierarchically, describe repo structure, maintain artifact indexes, and define cross-phase rules like traceability invariants.

2. Skills (.claude/skills/SDLC-*): loaded on demand. Step-by-step procedures for each SDLC activity: eliciting requirements, gap analysis, drafting architecture, decomposing into components, planning tasks, implementation.

3. Project artifacts: structured markdown files that accumulate as work progresses: stakeholders, goals, user stories, requirements, assumptions, constraints, decisions, architecture, data model, API design, task tracking. Accessed selectively through indexes.

This separation matters because instruction files stay in the context window permanently and must be lean, skills can be detailed since they're loaded only when invoked, and artifacts scale with the project but are navigated via indexed tables rather than read in full.

Key design choices:

Context-window efficiency: artifact collections use markdown index tables (one-line description and trigger conditions) so the agent can locate what it needs without reading everything.

Decision capture: decisions made during AI reasoning and human feedback are persisted as a structured artifact, to make them reviewable, traceable, and consistently applied across sessions.

Waterfall-ish flow: sequential phases with defined outputs. Tedious for human teams, but AI agents don't mind the overhead, and the explicit structure prevents the unconstrained "just start vibecoding" failure mode.

How I use it:

Short, focused sessions. Each session invokes one skill, produces its output, and ends. The knowledge organization means the next session picks up without losing context. I've found that free-form prompting between skills is usually a sign the workflow is missing a piece.

Current limitations:

I haven't found a good way to integrate Figma MCP for importing existing UI/UX designs into the workflow. Suggestions welcome.

Feedback, criticism, and contributions are very welcome!

Comments

zihotki•1h ago
Please show your benchmarks and evals to prove that your template actually makes any sense and doesn't waste the credits/tokens/requests/etc.
apinstein•1h ago
I am playing around with building my own similar and am faced with the question you pose.

How can you tell if your prompt process works? I feel like the outputs from SDLC process are so much more high level than could be done with evals, but I am no eval expert.

How would you benchmark this?

pangon•55m ago
For sure the proposed approach is more token-consuming than just ask high level the final outcome of the project and make an AI agent to decide everything and deliver the code. This can be acceptable for small personal projects, but if you want to deliver production ready code, you need to be able to control all the intermediate decisions, or at least you want to save and store them. They are needed because otherwise any high level change that you will require will not be able to make focused and coherent enough code changes, with previous forgotten decision that are modified and the code change that will produce lots of side-effects.
pangon•1h ago
I don't have any benchmarks avalable right now, and honestly I found pretty hard to make them considering that the workflow I have set up is not fully automated, but there is a lot of human intervention in the pre-coding phases.

I feel the problem of token wasting a lot, and actually that was the first reason I had to introduce a hierarchy for instructions, and the artfact indexes: avoid wasting. Then I realized that this approaches helped to keep a lean context that can help the AI agent to deliver better results.

Consider that in the initial phase the token consumption is very limited: is in the implementation phase that the tokens are consumed fast and that the project can proceed with minimal human intevenction. You can try just the fist requirement collection phase to try out the approach, the implementation phase is something pretty boring and not innovative.

gzoo•38m ago
Figma would make this even more amazing but great work!