Live data from Hacker News

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

github.com

1–10 of 21 posts

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

#1
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..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!

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

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

#3
post #2

Please show your benchmarks and evals to prove that your template actually makes any sense and doesn't waste the credits/tokens/requests/etc.

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?

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

#5
post #2

Please show your benchmarks and evals to prove that your template actually makes any sense and doesn't waste the credits/tokens/requests/etc.

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.

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

#6
post #2

Please show your benchmarks and evals to prove that your template actually makes any sense and doesn't waste the credits/tokens/requests/etc.

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?

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.

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

#10
We have built something similar for our SDLC, but it is based on Claude Code slash commands:

  - /tasks:capture — Quick capture idea/bug/task to tasks/ideas/

  - /tasks:groom — Expand with detailed requirements → tasks/backlog/

  - /tasks:plan — Create implementation plan → tasks/planned/

  - /tasks:implement — Execute plan, run tests → tasks/done/

  - /tasks:review-plan — Format plan for team review (optionally Slack)

  - /tasks:send — Send to autonomous dev pipeline via GitHub issue

  - /tasks:fast-track — Capture → groom → plan → review in one pass

  - /tasks:status — Kanban-style overview of all tasks
Workflow: capture → groom → plan → implement → done (with optional review-plan before implement, or send for autonomous execution).
Post reply on HN