Agentic Architect

Scoped Cursor rules for .NET teams

Nine directory-scoped .mdc rules plus a LEARNING_LOG.md workflow. Cursor loads the right guardrails per file and picks up decisions you already logged.

Built for teams running Clean Architecture, MediatR, Result<T>, and EF Core with real layer boundaries.

See the kit in action

Pick a real .NET scenario and watch Plain Cursor vs the kit-loaded Cursor respond.

Plain Cursor
With Agentic Architect kit

Interactive preview. Illustrated scenarios based on real .NET/Cursor patterns. Install the kit in your repo for this behaviour in Cursor.

60sInstall time
9Specialist rules
0Subscriptions
£9.00One-time

What it is: nine scoped .mdc files and a LEARNING_LOG.md protocol you commit beside your code. Who it's for: senior .NET engineers who use Cursor daily and care about DI, EF, and layer boundaries. Why it matters: Cursor starts fresh every chat. The log and scoped rules carry your stack context forward.

  • £9.00 one-time (Payhip checkout, instant ZIP)
  • 9 production .mdc rules, directory-scoped
  • Stateful log + retry circuit breaker (bug-breaker.mdc)
  • MIT license — safe for team repos
The Hidden Cost

Cursor has no memory between sessions.

The first chunk of every session goes to re-explaining your stack. MediatR, Result<T>, where EF belongs, what you decided last sprint. That is repeatable work, not coding.

15 mins/day on the same preamble

You type the same project conventions again. Mediator in the application layer, no throws in controllers, EF stays in infrastructure. At senior rates, that adds up fast.

🧠

Generic prompts do not hold boundaries

Without persisted rules, Cursor starts suggesting HttpClient in repositories or DbContext in controllers. Your SOLID layout erodes one suggestion at a time.

🌀

Three wrong fixes, same file

The model invents APIs that do not exist, tries again, tries again. You end up as the circuit breaker manually.

📉

Clean structure needs enforcement, not hope

Without rules committed to the repo, each PR nudges the codebase toward shortcuts. You notice it in review. The kit is meant to catch that before merge.

This is not a Cursor bug. It is a persistence gap.

Show me the fix ↓
The Persistence Protocol

Architectural persistence for Cursor

Not another prompt dump. Directory-scoped AI coding rules plus a committed log so only the right guardrails load for the file you're editing.

Stateful: LEARNING_LOG in practice

Session 1 you tell Cursor "we use Result<T>, never throw in controllers." persistence.mdc appends that to LEARNING_LOG.md. Session 2 you open a new chat on OrdersController.cs; the hydrate prompt loads entry #14 and the model refuses throw new NotFoundException() without you repeating yourself.

## ADR-014 — API errors
- Controllers return Result<T>; no throw for business failures.
- Verified 2026-05-12 on OrderService refactor.

Circuit breaker: bug-breaker.mdc

Cursor invents IOrderRepository.FindByLegacyCode(), compile fails, it invents another fake method. After three failed attempts on the same file, bug-breaker.mdc stops generation and forces a re-read of the real interface before asking you.

Attempt 3 on OrderRepository.cs — halt.
Re-read IFileRepository.cs lines 12–48.
Ask user which lookup method exists.
BEFORE

Generic prompts & chat-bot Cursor

  • Re-context every session
  • AI forgets last week's refactor
  • Suggests anti-patterns confidently
  • Loops on the same failed edit
  • Token bloat — entire rules dumped every prompt
  • Architecture decays sprint after sprint
AFTER

Cursor with Agentic Architect

  • Sessions start hydrated — log auto-loads
  • Loads prior decisions from the log
  • Refuses patterns that violate your boundaries
  • Circuit breaker halts repeated failed edits
  • Scoped loading — only relevant rules per file
  • Architecture compounds over time
What's inside the kit

Cursor rules for .NET — nine specialists, one log

Four core engines below, plus five more (result-pattern, ef-core-reads, api-conventions, testing, performance). Each loads only when the file path matches.

  • .cursor/rules/ — nine scoped .mdc files; Cursor loads only what matches the file you are editing.
  • LEARNING_LOG.md — one-line ADRs and pitfalls; persistence.mdc tells Cursor to read it at session start.
  • Hydrate prompt — seed the log from your repo once; you edit the result, not a generic template.
arch-core.mdc Architecture

Layer boundary enforcement

Keeps suggestions inside your layers. No DbContext in controllers, no business logic in repositories.

  • SOLID checks on generated code
  • Layer boundary rules per directory
  • Flags common anti-patterns early
dotnet-di.mdc .NET DI

DI and lifetime checks

Catches Scoped → Singleton capture bugs before runtime. Covers IServiceCollection, Scrutor, and common Autofac patterns.

  • Lifetime conflict detection
  • Constructor injection conventions
  • Registration module discipline
bug-breaker.mdc Circuit Breaker

Stops repeated failed edits

After several failed attempts on the same file, generation halts. Cursor re-reads the real source and asks instead of inventing another fix.

  • Loop detection on failed attempts
  • Forced re-read of source files
  • Less token burn on dead ends
persistence.mdc ★ The Engine

Cross-session memory via LEARNING_LOG.md

Appends architectural decisions, refactor notes, and "we tried that" lessons. The hydrate prompt loads them at session start.

  • ADR-style log entries
  • Session-start hydration protocol
  • Decisions carry across chats

What you download (paid kit)

agentic-architect-kit/
├── .cursor/rules/     9 × .mdc (directory-scoped)
│   ├── arch-core.mdc, dotnet-di.mdc, bug-breaker.mdc, persistence.mdc
│   ├── result-pattern.mdc, ef-core-reads.mdc, di-scoping.mdc, …
├── templates/         LEARNING_LOG.md + ADR starters (3 worked examples)
├── prompts/           hydrate-learning-log.md (one-shot seed from repo)
├── QUICKSTART.md      install + hydrate in ~5 minutes
└── LICENSE            MIT — commit rules + log in team repos

Deliverables included

9 × .mdc rulesDI, EF Core, Result<T>, API, testing, domain, logging, nullability, perf.
LEARNING_LOG templatePre-seeded ADR-style entries for a typical .NET solution.
Hydrate promptSeeds the log from your existing codebase once.
Quickstart PDFPayhip email → ZIP → copy → hydrate.
Lifetime updatesNew rules and protocol tweaks via repo access.
MIT licenseUse in client repos, fork for your org standards.
How It Works

Install in three steps

  1. 01

    Purchase & download

    Instant access via Payhip checkout. Payhip emails a download link with the full .cursor/rules/ folder and a pre-seeded LEARNING_LOG.md template.

  2. 02

    Drop into your project

    Copy .cursor/rules/ into your repo root. Cursor auto-detects the rules. No build step. No CLI. No config files to edit.

  3. 03

    Initialize the Log

    Run the included "hydrate" prompt once. The AI seeds your LEARNING_LOG.md from your codebase and starts tracking decisions automatically.

What engineers use it for

Problems the kit was built to catch

Early buyers are mostly solo staff engineers and small .NET teams. Below is what the rules target, drawn from our published essays (not invented testimonials).

  • Context tax — cut the morning re-brief. Read the essay
  • Scoped → Singleton DI — catch captive dependencies before runtime. DI bug write-up
  • Hallucination loops — circuit breaker after repeated bad attempts. Loop breaker
  • Result<T> regression — block throw in controllers. Result pattern
  • Cursor vs Rider — same rules on both tools. Comparison
  • EF Core guardrails — AsNoTracking, Include depth, N+1. EF patterns
From our EF Core essay: teams reported data-layer PR review dropping from ~25 min to ~8 min after rule-governed Cursor usage (one production .NET 9 codebase, ~80 entity types). Your mileage will vary.
£9.00One-time. No subscription.
MITTeam repos OK
30-dayRefund via email

✅ This is for you if…

  • You're a Senior / Staff / Principal engineer on a real .NET codebase.
  • You use Cursor daily and feel the "context tax" pain.
  • You care about architecture, not just shipping features.
  • You want the AI to be a partner, not a fancy autocomplete.
  • You want a system you can commit to your repo and onboard your team to.

❌ This isn't for you if…

  • You're learning your first language. (Come back when you have a codebase to protect.)
  • You think "good enough" prompts are fine.
  • You don't use Cursor.
  • You don't write C#/.NET. (Rules are tuned for the .NET ecosystem.)
  • You'd rather pay a £30/mo SaaS than own your tooling.
Free Starter Kit

Get 3 Cursor rules that stop .NET regressions — free.

Free. No spam. Unsubscribe any time. By subscribing you agree to the Privacy Policy and Terms of Service.

Founder's Pricing

One-time purchase. Lifetime updates.

£9.00 founder price via Payhip. Instant ZIP download. 30-day refund.

FOUNDER'S EDITION

The Persistence Kit

Scoped .mdc rules, a committed learning log, and a hydrate prompt. Copy into your repo, run once, done.

Senior .NET time runs roughly £60–120/hr. If the kit saves you one avoided DI bug or one less re-brief per sprint, it pays for itself. Launch price: £9.00 (rises when the video walkthrough ships).

£49 £9.00 one-time
  • 9 × .mdc rules — arch, DI, EF, Result, API, testing, domain, logging, perf
  • persistence.mdc + LEARNING_LOG.md template
  • bug-breaker.mdc — retry circuit breaker
  • Hydrate prompt — seed log from your repo
  • Quickstart PDF — ~5 min install
  • Lifetime updates — pay once, own forever
  • MIT-licensed — commit rules + log for your team
🔒 Payhip checkout ⚡ Instant ZIP download 🛡 30-day refund 📄 MIT for teams
Buy now — £9.00 → Or try the Free Kit first — £0
🛡
30-day refund.
Install it. Use it for a few sessions. If it is not useful, email agenticstandardcontact@gmail.com for a full refund. No questionnaire.

Checkout: Payhip · Delivery: instant ZIP via email · Refund: 30 days, no questionnaire · Updates: lifetime via repo

£9.00 founder price — locks in before the walkthrough video ships.

Time cost of daily re-contexting

15 min/dayTime you lose re-contexting
62 hrs/yearThat's nearly 8 working days
@ £75/hr= £4,650 of senior time lost
£9.00To get it all back
Honest Answers

Frequently asked questions

Isn't this just a few prompt files I could write myself?

You could. We did, over a long time, across production .NET repos. The value is not one mega-prompt. It is directory-scoped loading (only relevant rules per file), the LEARNING_LOG.md protocol, and bug-breaker.mdc for retry loops. Writing a first draft is a weekend. Keeping it aligned with Cursor updates and your stack is ongoing work.

Prompts vs rules — what's the difference here?

Prompts live in chat and vanish when the thread closes. .mdc rules live in .cursor/rules/ and load automatically based on file path. The hydrate prompt runs once to seed LEARNING_LOG.md; after that, persistence.mdc maintains the log across sessions. Rules enforce. Prompts inform.

Will this work with Cursor's built-in rules feature?

Yes. That is what it is built for. The .mdc files plug into Cursor's native rules system.

Does it work for non-.NET languages?

persistence.mdc and bug-breaker.mdc are language-agnostic. Seven of the nine rules are tuned for C#/.NET (DI, EF Core, Result<T>, API, testing, and related guardrails). Non-.NET users get value from the persistence and circuit-breaker rules. Whether £9.00 is worth two of nine is your call.

I'm a solo dev, not a team. Is this overkill?

No. Solo staff engineers were the first buyers. You still re-brief Cursor every session and still need boundaries enforced when you are the only reviewer. The free starter kit (3 rules) is enough to test the workflow before paying.

Is it a subscription?

No. One-time £9.00. Lifetime updates. MIT-licensed.

How is this different from generic "Cursor rules" repos on GitHub?

Most public rules are one big file loaded on every prompt. Agentic Architect scopes rules by directory so only relevant guardrails activate. Most repos also skip persistence — no LEARNING_LOG.md workflow to carry decisions forward.

What if my team doesn't want to adopt it?

They do not have to. Rules sit in .cursor/rules/ and the log is a markdown file. Keep them personal in .gitignore, or commit them for the team. One purchase covers internal use under MIT.

How do I get the files after checkout?

Payhip emails an instant download link after checkout. Unzip, copy .cursor/rules/ into your repo root, add LEARNING_LOG.md from templates/, run the hydrate prompt once.

Can my whole team use one purchase?

Yes. MIT license covers internal use in your org's repos. One seat purchase, many repos, as long as you don't resell the kit as a competing product.

What if it doesn't work for me?

30-day refund. Email agenticstandardcontact@gmail.com.

Why is it £9.00 and not £99?

Founder's pricing. It will go up when the video walkthrough ships.

Install the kit. Hydrate the log.

Copy .cursor/rules/ into your repo. Run the hydrate prompt once. Your next Cursor session loads the log and scoped rules automatically.

Buy now — £9.00 → Get the Free Kit — £0

One-time payment · Lifetime updates · 30-day guarantee · MIT-licensed

Buy now — £49 £9.00