| ▲ | Show HN: AI SDLC Scaffold, repo template for AI-assisted software development(github.com) | ||||||||||||||||||||||
| 26 points by pangon 2 days ago | 11 comments | |||||||||||||||||||||||
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! | |||||||||||||||||||||||
| ▲ | panavm 15 hours ago | parent | next [-] | ||||||||||||||||||||||
This resonates a lot. The CLAUDE.md hierarchy + indexed artifacts is exactly the kind of structural thinking that most "how to prompt Claude" content skips over entirely. The piece I keep running into with solo builders is that even when they have a good structure, the failure mode is trusting Claude's output too uniformly — treating fast generation as a proxy for correctness. The code looks clean, tests pass, ships fine... and then a month later nobody (including you) can reason about it because the decisions that shaped it never got persisted anywhere. Your decision capture artifact solves exactly that. One thing I've been exploring from a complementary angle: rather than scaffolding the SDLC, building a clearer internal model of how Claude reasons — where it's reliable vs. where it needs human review gates. Working on a free starter pack around this (panavy.gumroad.com/l/skmaha) — would be curious if any of this maps to patterns you've seen with the scaffold. | |||||||||||||||||||||||
| ▲ | jstrebel 16 hours ago | parent | prev | next [-] | ||||||||||||||||||||||
How does your framework compare to spec-driven development e.g. https://github.com/github/spec-kit? In my experience, spec-kit produces a lot of markdown files and little source code. | |||||||||||||||||||||||
| |||||||||||||||||||||||
| ▲ | klabetron 19 hours ago | parent | prev | next [-] | ||||||||||||||||||||||
Thoughts on publishing an example output perhaps in another repo? Perhaps just the first two phases? Would be interesting to see what the output looks like practically speaking (before committing to using it for a project). | |||||||||||||||||||||||
| ▲ | zihotki 2 days ago | parent | prev | next [-] | ||||||||||||||||||||||
Please show your benchmarks and evals to prove that your template actually makes any sense and doesn't waste the credits/tokens/requests/etc. | |||||||||||||||||||||||
| |||||||||||||||||||||||
| ▲ | grapheneposter a day ago | parent | prev | next [-] | ||||||||||||||||||||||
I built a big brain download of how I think the day to day SDLC rolls now and used it to teleport my ideas into any harness as needed. | |||||||||||||||||||||||
| ▲ | milkoslavov a day ago | parent | prev | next [-] | ||||||||||||||||||||||
We have built something similar for our SDLC, but it is based on Claude Code slash commands:
Workflow: capture → groom → plan → implement → done (with optional review-plan before implement, or send for autonomous execution). | |||||||||||||||||||||||
| ▲ | gzoo a day ago | parent | prev [-] | ||||||||||||||||||||||
Figma would make this even more amazing but great work! | |||||||||||||||||||||||