The Problem
Your AI agent doesn't know anything about your business — unless you tell it
Here's something that took me an embarrassingly long time to figure out: every Claude Code session starts from zero. No memory of last week's decisions. No knowledge of which competitor you're watching. No idea that your payment processor is Stripe, that your pricing is $49/month, or that you've tried and rejected the freemium model three times.
That means every morning, your AI "employee" wakes up with complete amnesia. You either re-explain everything — wasting 15 minutes per session and getting inconsistent outputs — or you build a rules file that loads the context automatically.
The rules file is the difference between an AI that produces generic content and one that knows your brand, your constraints, your north star metric, and what you've already decided not to do.
For a solo founder running multiple products, this isn't a nice-to-have. It's the operational infrastructure that makes the whole thing work.
What is a CLAUDE.md? It's a markdown file you place at the root of your project directory. Claude Code reads it automatically at the start of every session. It becomes the AI's permanent background knowledge about who you are, what you're building, and how you want it to think. Learn more in our
Claude Code context guide.
Why founders specifically need this more than developers
A developer's CLAUDE.md is mostly technical: tech stack, architecture patterns, testing rules. Useful, but bounded. A founder's rules files need to encode something harder — judgment. The kind of context that normally lives only in your head after 18 months of running the business.
Things like: "We don't do enterprise deals because we can't support custom integrations with a team of one." Or: "Our brand voice is direct and specific — never use the word 'leverage' and never end a paragraph with a question." Or: "The decision framework for any new feature is: does this directly support subscriber growth or retention? If not, skip it."
That kind of context can't be retrieved from Stack Overflow. It took you years to develop. And once it's encoded in a rules file, your AI carries it into every single interaction — writing, strategy, code, analysis, customer communications.
250+
Directives in the Founder Package
6
Rules files, each covering a business domain
10+
Claude Code sessions to build from scratch
18
Professional roles covered in our template library
The System
A complete founder rules set: 6 files, each covering a domain
One file isn't enough. A CLAUDE.md that tries to cover everything ends up being so long that Claude either ignores chunks of it or gets confused by the density. The answer is a modular system: separate files for separate domains, referenced from a master CLAUDE.md that loads the right context depending on what you're working on.
🏢
business-context.md
Your company, products, competitive position, locked decisions, and what you're optimizing for right now.
~40 directives
📦
product-rules.md
Feature prioritization framework, what you've decided not to build, UX standards, and release rules.
~35 directives
🧠
decision-framework.md
How to reason through tradeoffs, make build/buy decisions, and evaluate opportunities without asking you.
~45 directives
✍️
communication-rules.md
Brand voice, tone, banned words, email standards, social format, and how to address different audiences.
~50 directives
💰
financial-rules.md
Pricing model, cost guardrails, revenue targets, tool spend limits, and when to invest vs. defer.
~35 directives
📈
growth-rules.md
Acquisition channels, content standards, SEO constraints, conversion optimization rules, retention priorities.
~45 directives
Let me walk through exactly what goes in each one — with real examples, not hypotheticals.
1. business-context.md — The foundation everything else builds on
This is the file Claude reads first. It answers: who are you, what exactly do you sell, who are your customers, what have you already decided, and what is the one metric that matters right now. Without this, every AI output is generic. With it, Claude reasons from your actual situation.
# Business Context — [Your Company Name]
## What we are
- B2B SaaS subscription business. NOT a marketplace, NOT a consumer app.
- Single founder, no employees. All execution via Claude Code + contractors for tax/legal only.
- Primary product: [Product Name] at $49/mo and $149/mo (Founder / Pro tiers).
- Secondary products: [list each]. Each has its own deploy dir and must NEVER cross-contaminate.
## Our customers
- Primary: Solo founders and small teams (<5) using Claude Code daily.
- NOT enterprise. NOT agencies. NOT developers who want to DIY everything for free.
- Customer language: they say "Claude", "rules files", "CLAUDE.md", not "AI context engineering".
- Pain point: AI outputs are generic and drift — Claude doesn't remember business context.
## What we've decided (LOCKED — do not re-litigate)
- Subscription model only. No lifetime deals, no pay-per-use, no custom pricing.
- No Substack. No Medium. Self-hosted blog on brainfile.io only.
- Stripe for payments. No alternatives. PayPal is explicitly rejected.
- No freemium. Free samples exist to demonstrate quality; full access requires subscription.
- Pricing is $49/mo Founder and $149/mo Pro. Do not suggest changing these.
## North star metric right now
- PRIORITY #1: Monthly Recurring Revenue (MRR). Everything else is secondary.
- Current MRR: [X]. Target: [Y] by [date].
- Every session must include at least ONE action that could directly move MRR.
## Competitive context
- Direct: Cursor rules templates, ChatGPT custom instructions guides, prompt packs.
- Our moat: founder-specific, business-context-aware rules. Not just coding templates.
- DO NOT position against free tools. We compete on ROI (hours saved > subscription cost).
## What we are NOT doing
- Not building a SaaS product with login + database. Templates only.
- Not targeting developers first. Founders first. Developers are secondary buyer.
- Not competing on price. $49/mo is already underpriced for the value delivered.
2. product-rules.md — What gets built and what doesn't
The most common AI failure mode for founders is scope creep. Claude is very good at generating features, and if you don't have a clear rules file for what the product is and isn't, you'll end every session with a longer roadmap and no shipped work. This file is a circuit breaker.
# Product Rules
## Prioritization framework (in order)
1. Does it fix a bug or broken experience a paying customer will hit? → Build immediately.
2. Does it directly increase conversion (trial → paid) or reduce churn? → Build this week.
3. Does it reduce EP's time-per-session by >30 min/week? → Build this month.
4. Does it make the product better for customers who already pay? → Queue it.
5. Everything else → Add to backlog, do not discuss in session.
## What we are building (locked product scope)
- Downloadable template files (markdown). No SaaS. No database. No user accounts.
- Static HTML pages hosted on brainfile.io. No React, no Next.js, no build step.
- Email capture → Cloudflare Worker → Resend. Already built. Do not redesign.
- Stripe checkout. Already wired. Do not redesign.
## What we are NOT building (hard stops)
- No user dashboard or "my account" section.
- No AI-powered features built into the website (API costs, maintenance burden).
- No community forum, Discord server, or Slack group. Too much time to moderate.
- No white-label or reseller version of the product.
- No integrations with third-party tools (Notion, Obsidian, etc.) — not yet.
## Release rules
- New pages must pass visual QA before publishing. Generator ran without errors ≠ page is correct.
- Every new SEO page needs: canonical URL, meta description, OG tags, schema markup.
- Deploy = copy file to deploy-sites/brainfile/ and update sitemap.xml. That is the deploy.
- Never manually edit output HTML — always edit the generator or template source.
## Feature request filter
If EP describes a feature: before building, state:
(a) Which prioritization tier this falls into, and
(b) What it would replace on the current roadmap.
Only then propose implementation. This prevents scope creep.
3. decision-framework.md — Teaching Claude to think like you
This is the hardest file to write and the most valuable one you'll own. It encodes your actual judgment — how you weigh tradeoffs, what you optimize for, how you decide between two reasonable options. A good decision framework file means Claude can make 80% of tactical decisions autonomously without asking you.
# Decision Framework
## The core tradeoff: revenue vs. optimization
- Revenue = $0 → every session must include 1 revenue-advancing action (not "queued a task" — actual work).
- Revenue > $1000 MRR → rebalance toward product and retention.
- Revenue > $5000 MRR → rebalance toward growth and hiring.
- Never spend 3+ sessions on internal tooling while revenue infrastructure is broken.
## Build vs. buy decision rules
- If Claude can do this for $0 vs. a paid service → draft it first, recommend paid only if Claude genuinely can't.
- SaaS under $20/mo → evaluate carefully. Can Claude automate this?
- SaaS $20-$100/mo → needs clear ROI case before adding.
- SaaS over $100/mo → requires explicit approval. List alternatives.
## When to proceed without asking vs. when to queue for approval
PROCEED without asking:
- Fixes to broken UX/copy/links on live pages.
- New SEO content pages (not homepage or pricing changes).
- Performance optimizations with no user-facing changes.
- Adding items to the task queue.
QUEUE for approval:
- Pricing page changes.
- Email infrastructure changes.
- Any new recurring cost >$20/mo.
- Any strategy change affecting more than 1 business.
- Legal, financial, or tax-related actions.
## Opportunity evaluation framework
When EP describes a new opportunity, evaluate against ALL of these:
1. Does it align with "solo founder, subscription SaaS, templates" model?
2. Can it be launched in <1 week of session time?
3. Does it share infrastructure with existing businesses (reduces marginal cost)?
4. Is there a clear revenue path within 30 days?
5. Will EP still want to maintain this in 12 months?
Score 4+/5: propose. Score 3/5: flag the gaps. Score <3/5: decline politely with reasons.
## Anti-patterns to always catch and flag
- "Let me build a full admin dashboard" → wrong. Static HTML + JSON files are the admin.
- "We should raise prices significantly" → wrong. Price is locked, focus on volume.
- "Let me add this feature before we fix the CTA" → wrong. Conversion first, features second.
- Recommending a paid service without first checking if Claude can do the same work.
4. communication-rules.md — The voice file
Generic AI-written content sounds like AI-written content. The fix is a communication rules file with enough specificity that Claude's outputs are indistinguishable from your own writing. Not just "be direct" — specific banned phrases, specific tone signals, specific format rules for different output types.
# Communication Rules
## Voice: what we sound like
- Direct. Specific. No hedging. If we recommend something, we say why.
- First-person founder voice ("I" for blog content, "we" for product pages).
- Technical precision without jargon. Write for smart generalists, not specialists.
- Honest about tradeoffs. We tell readers what the downside is before they ask.
- Short paragraphs. Max 3 sentences. Then a line break.
## Banned phrases — NEVER use these
- "leverage" (use: "use")
- "synergies" → ever
- "unlock" → except in literal lock/key contexts
- "game-changing", "revolutionary", "next-level"
- "seamlessly" or "seamless integration"
- "dive deep" or "deep dive"
- "in today's fast-paced world"
- Any sentence that starts with "As a founder, you know that..."
- Questions at the end of paragraphs (we state, we don't ask)
- Bullet lists of 7+ items without subheadings
## Tone calibration by output type
Blog posts / SEO pages: Conversational expert. Show the work. Cite specific numbers.
Product pages: Confident and specific. Benefits before features. Never vague.
Email subject lines: Curiosity gap OR specific number OR both. Never clickbait.
Social / X posts: One idea per post. Under 200 characters ideal. No hashtags.
Error messages / UI copy: Human, not technical. Tell them what to do next, not what went wrong.
## Email standards
- Subject line rule: if it could be a headline for any company, rewrite it.
- Opening line: no "Hi [Name]," no re-introduction of who we are. Start in the middle.
- CTA: one per email. Specific URL. Never "click here."
- Length: 150-400 words. Longer = lower open rate for our list.
- P.S. lines are allowed and encouraged when the message is personal.
## SEO content writing rules
- Target keyword in: title, H1, first paragraph, one H2, meta description.
- Minimum 1500 words. Prefer 2000-3000 for competitive terms.
- Every major claim gets a specific number or example — never "many founders" → "47% of founders"
- Internal links: minimum 3 per page. Link to /brainfile-templates, /package-demo, /claude-md-templates.
- Never keyword-stuff. Write for the reader; the SEO follows from quality.
5. financial-rules.md — Cost discipline and financial constraints
Without this file, Claude will recommend tools, services, and infrastructure that steadily erode your margin. This file teaches Claude your actual financial constraints — current revenue, acceptable cost ratios, which tools are already paid for, and when to say "we can build this ourselves."
# Financial Rules
## Current financial state (update monthly)
- MRR: [X]
- Monthly tool costs: [Y] — list each service and cost
- Net monthly cashflow: [Z]
- Cash runway: [N months]
## Pricing rules (LOCKED)
- Founder tier: $49/month. Do not suggest discounting.
- Pro tier: $149/month. Do not suggest discounting.
- Annual plans: not offered yet. Will revisit at 100+ subscribers.
- No lifetime deals. They destroy long-term economics for a solo operator.
- Payment processor: Stripe. Fee budget: 2.9% + $0.30 per transaction. Acceptable.
## Tool spend guardrails
MAX spend per category WITHOUT approval:
- Email infrastructure: $30/month (Resend free tier first)
- Analytics: $0 (Cloudflare Analytics, no paid tools)
- Hosting: $0 (Cloudflare Pages free tier)
- AI APIs: $0 built into website (cost + maintenance unacceptable at current revenue)
- Social scheduling: $0-12/month (Buffer Free or Publer Starter)
REQUIRES approval: Any new recurring tool cost over $20/month.
## The "Claude can do this for $0" rule
Before recommending any paid service, check:
1. Can Claude draft the output instead? (legal templates, copy, research, analysis)
2. Is there a free tier that covers current scale?
3. What is the paid alternative cost? Always state: "Paid alternative costs $X. Claude can do this for $0."
Only recommend paid services when Claude genuinely cannot do the work.
## Revenue-first gate
When EP has not yet reached $1000 MRR:
- Every session MUST include ≥1 revenue-advancing action (not just a task queue item).
- "Revenue-advancing" = working on a conversion page, email campaign, SEO page, or CTA fix.
- Reporting, analytics, and internal tooling are SECONDARY to revenue work at this stage.
- Exception: if a bug is blocking a paying customer, fix it first.
## Financial decisions that need EP approval
- Any spending decision over $50 one-time or $20/month recurring.
- Pricing changes of any kind.
- Refund decisions over $100.
- Any financial commitment that implies future work or maintenance.
6. growth-rules.md — Acquisition, SEO, and content strategy
Growth without rules is scatter. This file encodes your channel strategy, your content standards, and the constraints that prevent you from spreading thin across 12 channels that none of which you maintain well. It also encodes what you've already tested and rejected, so Claude doesn't keep suggesting the same failed experiments.
# Growth Rules
## Active acquisition channels (work on these)
1. SEO: Long-form content pages targeting high-intent keywords. Main channel.
2. X (Twitter): One post per day max. Brand building, not viral chasing.
3. Organic referral: Happy customers sharing templates. Enable with shareable assets.
## Inactive channels (do NOT suggest these)
- Paid ads: off until MRR > $2000 (burn risk at current revenue)
- YouTube: off until content ops are sustainable (too time-intensive)
- Substack: explicitly disabled. Do not restore or reference.
- ProductHunt: reserve for major launch. Not for incremental updates.
- LinkedIn: low ROI for this audience. Skip.
- Cold email: not aligned with brand. Skip.
## SEO content rules
KEYWORD TARGETING APPROACH:
- Priority: high buyer intent terms ("CLAUDE.md templates", "claude code for founders")
- Secondary: informational terms that attract the buyer persona ("how to set up Claude Code")
- Skip: broad terms with no commercial intent ("what is AI")
CONTENT QUALITY GATES (all must pass before publishing):
- Does the page answer a question better than the top 3 Google results?
- Does it have at least 1 original insight or example not available elsewhere?
- Does it include a relevant CTA that converts the reader to a trial or subscriber?
- Does it pass visual QA (check rendered output, not just generator run)?
INTERNAL LINKING RULES:
- Every new page must link to /brainfile.html (primary conversion page)
- Every new page must link to /package-demo (proof of value)
- Link to related content pages when topically relevant
- Update sitemap.xml after every new page
## Conversion optimization rules
- Primary CTA: "Get Founder Package" → /brainfile.html (Stripe checkout)
- Secondary CTA: "See Inside First" → /package-demo (proof before purchase)
- Email capture: always present on long-form pages. Source tag required for tracking.
- Urgency: avoid fake scarcity. We don't use countdown timers or "limited spots."
- Social proof: specific numbers and outcomes. "250+ directives" not "comprehensive."
## What we've already tested and rejected
- Freemium model: tested, rejected. Free users don't convert. Better: high-quality free sample.
- $9/month pricing: tested. Attracted wrong customer who didn't value the product.
- "AI prompt templates" positioning: too crowded, too generic. "AI rules files" converts better.
- Weekly email newsletter: too much time for current stage. Replaced with nurture sequence.
Build vs. Buy
Building your rules files from scratch — what it actually takes
You can absolutely build your own rules files. They're just markdown. The question is how long it takes to get to something that actually changes Claude's behavior in a meaningful way.
In my experience, a founder who's serious about this goes through several phases:
1
Session 1–2: Write the obvious stuff
You write what your company does, what your tech stack is, and some communication preferences. This is the easy part. It takes about 2 hours and produces a file that's maybe 20% as useful as it needs to be.
2
Sessions 3–5: Discover what's missing
You start working with Claude and notice it keeps making the same wrong assumptions. You add directives each time. By now you have 60–80 rules, but they're not organized well and they contradict each other in a few places.
3
Sessions 6–8: Restructure and modularize
You realize one big file doesn't work. You split into multiple files. You learn which directives actually change behavior vs. which ones Claude effectively ignores. You start to understand how to write rules that are specific enough to matter.
4
Sessions 9–12: Decision frameworks and anti-patterns
The hardest parts: encoding your judgment and documenting what you've already rejected. This is where the real value is — but it's also where most people give up because it's the part that requires the most thinking about your actual business.
Our estimate: 10–15 Claude Code sessions to build from scratch. At 45 minutes per session, that's 7–11 hours of setup time before you get to something genuinely useful. The
Brainfile Founder Package is 250+ directives across 6 modular files, customized for founders. It takes 20–30 minutes to personalize and works from session one.
What you're actually buying when you buy a pre-built package
You're not just buying time. You're buying the iteration history — all the versions that didn't work, all the directives that turned out to be too vague, all the discovery sessions that revealed what Claude actually needs to know to reason well. That's the part you can't shortcut with one good afternoon of writing.
The full template library covers 18 professional roles. The founder package specifically is engineered for solo operators running multiple products — business context, product rules, decision frameworks, communication standards, financial guardrails, and growth strategy, all structured to load cleanly in Claude Code.
The Long Game
Six months in: what the compounding effect actually looks like
I want to be specific about what "compounding" actually means here, because it's easy to wave at the concept and harder to describe the mechanism.
At month one, your rules files are mostly structural — they tell Claude what you're building, who your customer is, what tech stack you're on. Useful, but not dramatically better than a long system prompt.
At month three, the files have grown. You've added specific anti-patterns from real sessions. The decision framework has been tested against actual decisions and refined. The communication rules have been updated with phrases you discovered sound wrong after seeing Claude use them. It starts to feel like working with a colleague who really knows your business.
At month six, something qualitatively different happens. Your rules files contain things that no employee you could hire would know without six months of onboarding. They contain specific failed experiments, rejected positioning angles, pricing history, customer feedback patterns, competitive moves you've made and reversed. The file knows things about your business that you'd have to manually explain to a new hire over multiple months — and it loads that context in every session, instantly, for free.
Month 6 milestone: Your rules files know: 3 pricing experiments you ran and why you abandoned them. 7 product features you explicitly decided not to build. 4 growth channels you tested and rejected. The 3 customer segments who convert vs. the 2 who churn. Your complete financial constraints. The 15 phrases that don't sound like you. The decision framework for every class of tradeoff you face weekly. No employee knows all of that in 6 months.
The maintenance cost is lower than you think
Rules files don't require constant maintenance. You update them when something changes — a new product, a pricing change, a strategic pivot, a new anti-pattern you've discovered. That's maybe 15 minutes a week once the initial files are solid. The cost is low; the compounding is permanent.
The Brainfile Founder Package is designed for this maintenance rhythm. The structure is modular — you update one file without touching the others. The [PLACEHOLDER] sections clearly mark what's yours to fill in vs. what's pre-built universal founder logic.