Step 02 of 9 1-2 weeks· advanced
Step 2: Define the Target Architecture
Decide what you're building toward — Angular structure, .NET API structure, data layer, hosting, observability — and document it as ADRs.
Recommended prompts
Use one of these to do the work in your IDE
Open the template to read it in full. Click Copy prompt to grab it (with your stack values pre-filled where they apply) — then paste into Claude Code, Cursor, or wherever you build.
Recommended skills
Drop these into Claude Code for this phase
Skills auto-trigger on the right kind of request. Install once; they apply to every prompt that fits.
Recommended MCP configs
Wire these tools into Claude Code first
MCP servers give Claude Code direct access to external systems (Jira, browsers, databases). Configure once.
When you're done
Verify these in your own work before moving on
This is a checklist for you to mentally tick off in your repo and IDE — the site doesn't track it, you do.
- Target architecture diagram in /docs/architecture/
- Frontend architecture decided (Angular version, state management, design system)
- Backend architecture decided (.NET version, ORM, API style)
- Data layer decided (SQL Server stays / migrates to Postgres / per-service)
- Auth approach decided (IdP-fronted; if rolling own, document rationale)
- Hosting decided (App Service / AKS / etc.)
- Observability strategy chosen (App Insights / Datadog / etc.)
- 5-10 ADRs covering key decisions, all dated and marked accepted
Common pitfalls
What goes wrong at this step
- Microservices fever — splitting too fine when a modular monolith would work; modularize first, microservice later
- Custom auth — don't roll your own. Use Azure AD / Auth0 / IdentityServer
- Skipping ADRs — future engineers won't know why decisions were made and will relitigate them