How Do You Let a Non-Dev Edit Your Code Without Teaching Them Git? I Asked Claude Live.
I run five products at once. PitchMaster, Founder Signal, North Star AI, and two more. Each one has bits I want other people touching: copy I want a writer on, a landing page I want a designer on, an admin dashboard I'd happily hand to a co-founder.
But every time I think about collaboration I hit the same wall: I don't want to teach anyone git.
I'm not a developer. Most of the people I'd want to collaborate with aren't either. The default options (fork the repo, open a PR, squash-merge, resolve conflicts) are a hostile onboarding for anyone whose job isn't "ship code." So for months I've just... done everything myself.
This week on Build Hour I finally asked Claude for the options. It came back with six. The first five are the default dev answers. The sixth one might actually change how non-dev founders run teams. Here's the ladder, why most of the options don't fit solo founders, and the one I'm testing this week.
The collaboration trap every solo founder hits
If you're running products without a full engineering team, this pattern will feel familiar:
- You've got a writer who'd happily improve the homepage copy
- A designer who could redo a specific page
- A coach or operator who could own a dashboard
- A co-founder who'd take a feature off your plate
Every one of them is blocked by the same invisible wall: your repo. To change a word, they need a GitHub account, a fork, a branch, a PR, a merge. To change a page layout, add a schema to that. Most of them give up. You do it yourself. The collaboration that would have taken 10 minutes takes you three hours next Saturday.
I've been stuck on this for months. It's a constraint that quietly shrinks what a solo founder can ship, because everything funnels through one brain and one keyboard.
The 6 options Claude gave me
Here's the ladder I got back, ordered roughly from "classic dev" to "AI-native":
| Option | What it is | Who it's for |
|---|---|---|
| 1. Fork + PR | Collaborator forks your repo, makes changes, opens a PR, you review and merge | Anyone comfortable with git |
| 2. Direct collaborator + Code Owners | Add them to the repo, use CODEOWNERS + branch protection so every PR needs your approval | Semi-technical collaborators |
| 3. Split product into separate repos | Each product gets its own repo with isolated permissions | Teams growing past one repo |
| 4. Headless CMS for content | Move copy and structured content out of code into a CMS (Sanity, Contentful, etc.) | Writers, marketers, copy owners |
| 5. Collab-first AI tools like GetCamvers.ai | Purpose-built platforms for AI-native team collaboration | Teams who want everything in one app |
| 6. Claude Code spaces scoped to a directory | Non-dev gets a scoped Claude Code setup that only operates in their folder. They describe changes in English. Claude opens the PR. You review. | Solo founders with non-technical collaborators |
Five of these are variations on "make git easier to collaborate with." The sixth is the first one that reframes the question entirely: what if the non-dev never touches git at all?
Why the first five don't fit solo founders
Let me walk through why most of these break down if you're a solo founder working with non-technical collaborators.
Fork + PR assumes both parties can speak git fluently. It's the developer default because it's how the open-source world works. For a writer improving a headline, it's like making them learn SQL to update a spreadsheet. Technically possible, practically insane.
Code Owners + branch protection helps if your collaborator is semi-technical. They push, you approve, CI runs, you merge. But they still need to know which file to edit, how to resolve a merge conflict, and what a failing build means. The bar is lower than fork+PR but still too high for most.
Splitting repos is the infrastructure answer. It works when you have enough engineers that two separate codebases is less painful than one monolithic one. Solo founders don't have that problem yet. What you actually have is one repo and not enough humans.
Headless CMS is actually brilliant for one specific case: copy and structured content. If 90% of what your writer wants to change is text, move all the text into a CMS, give them the CMS login, and you're done. I should have done this six months ago. But it doesn't solve the "designer wants to change a layout" or "operator wants to tweak a dashboard" case.
Collab-first AI tools are the new category. I was impressed by what a friend is building at GetCamvers.ai, which treats AI collaboration as a project-management problem. If you're building a team from scratch and want everyone in one surface, worth a look. For solo founders bolting collaboration onto an existing codebase, it's heavier than the job calls for.
Five options. All valid. None of them quite right for "I just want my coach to update one page of my admin dashboard."
AI BUILDERS
Want to stop being the bottleneck on your own products?
If you're non-technical and tired of being the middle-person on every code change, the AI Builders course teaches you to ship changes yourself without a dev team. 5 weeks, small cohort, starts May.
Join the waitlist→The sixth option is the one worth watching
Here's the one that's been living rent-free in my head since Friday afternoon.
Claude Code spaces for non-devs. You give a collaborator a scoped Claude Code setup that only operates inside a specific directory of your repo. They never see the rest. They describe changes in plain English. Claude writes the code, opens a PR in your repo, and you review.
In one structural move, this deletes the three hardest parts of dev collaboration:
- No git knowledge required. The collaborator doesn't touch branches or merges. Claude does.
- No blast radius. If they say "change the pricing copy," Claude can only touch the directory they have access to. The rest of the repo is invisible.
- Built-in review. Every change becomes a PR. You're still the gatekeeper, but you're gatekeeping English-level decisions, not diffs.
The honest disclaimer: I haven't set this up yet. I only read about it for the first time during Build Hour. I'm testing it this week on two slices: the PitchMaster copy (with a writer friend) and one page of the admin dashboard (with a co-founder).
So this isn't a "here's my playbook" post. It's a "here's a possibility I didn't know existed until Friday, and if it works the way it looks on paper, it changes what a solo founder can ship."
Keep reading
Get the best of batko.ai on AI & Building - straight to your inbox
Free. Unsubscribe anytime.
Why this matters for solo founders (and what I'm trying first)
The reason I'm so fired up about option 6 isn't the technical elegance. It's what it unlocks.
Right now, every non-dev collaboration I have is bottlenecked at me. Writer sends me copy in a Google Doc. I paste it into the repo. I deploy. Designer sends me a Figma. I convert to code. I deploy. Operator sends me a spreadsheet of changes. I code them up. I deploy.
Every round trip has me in the middle, even for changes that have nothing to do with my judgment.
If Claude Code spaces for non-devs works, the middle-me disappears for 80% of these changes. Writer types "update the headline to X" in their scoped Claude session. PR appears in my inbox. I glance at the diff, click merge, done. The collaboration cost drops from "half a Saturday" to "a 30-second review."
Every platform shift in how solo founders work has come from removing *them* from the middle of things that don't need them.
Build tools did it. No-code did it. AI chat did it. This feels like the same shape again, for collaboration specifically.
What I'm trying this week:
- Set up a scoped Claude Code space on one product directory for a writer friend
- Write the briefing doc that tells Claude "here's what this project is, here's the voice, here's what you can and can't touch"
- Give the writer the setup and one task: "rewrite the hero headline for this page, ask me questions, open a PR"
- See how many rounds it takes to ship a change I'd normally have done myself
If it works, I'll write a follow-up with the exact setup. If it breaks in fascinating ways, I'll write that too. Either way: this is the first collaboration pattern I've seen in years that actually looks designed for solo founders rather than adapted from dev-team workflows.
One honest framing
I almost titled this post "how I collaborate on code with non-devs," because that's what people would click on.
I didn't, because I haven't actually done it yet. I asked Claude a question on Friday afternoon, got a ladder of six options back, and realised the sixth one reframes a problem I'd been treating as fixed.
If you're a solo founder running a handful of products and you've been avoiding collaboration because git is too heavy a lift for your non-dev collaborators, I want you to see this ladder. Maybe you'll try option 4 (headless CMS) for copy, which has been solved for a decade. Maybe you'll wait and watch what option 6 becomes over the next few months. Either is better than doing everything yourself forever.
The point isn't that I've cracked it. The point is the possibility space just expanded, and for some of us that's the permission we needed to stop pretending collaboration was impossible.
Sources and Further Reading
This article is licensed under CC BY-NC 4.0. Share freely with attribution.
If this was useful, follow along with Build Hour - I go live every Friday, build things that don't work, and share what I learned. The experiments include the ones where I fail. Those are usually the ones you learn from.
And if you're non-technical and want to learn to build real things with Claude Code yourself (instead of waiting for collaboration patterns to mature), the AI Builders course starts in May.
AI BUILDERS
Want to stop being the bottleneck on your own products?
If you're non-technical and tired of being the middle-person on every code change, the AI Builders course teaches you to ship changes yourself without a dev team. 5 weeks, small cohort, starts May.
Join the waitlist→