Skip to content
Builder OS · Free

Agent Workspace Starter Kit

Builder OS: a free two-repo setup for running more than one project with Claude Code, Codex or any coding agent. Guide, paste-in prompts, rules, hooks.

TemplateVibe Codingv2.0.0Updated September 9, 2026

The Agent Workspace Starter Kit is a free, two-repo setup for running more than one project with an AI coding agent: an executive-assistant repo that knows you, and a product-copilot repo per product that knows the product. It comes as a guide, two paste-in prompts that scaffold both repos in about an hour, and the operating habits that keep them useful for months. We call the idea Builder OS. Everything at NocodePro runs on it, every day. It works with Claude Code, Codex, Gemini CLI, Qwen Code or any agent that reads a brain file and a skills folder.

The problem it solves

Most people run their agent as one chat in one folder. It works, until the projects multiply. Then every session starts with you re-explaining who you are, what you're building and how you like to work. The brain file (CLAUDE.md in Claude Code, AGENTS.md in Codex) turns into 400 lines of "if working on X do Y", and the agent knows either your strategy or your product code, never both well.

The fix is not a longer brain file. It's two of them, with different jobs.

How it works: two repos, two jobs

The executive assistant knows you: goals, priorities, team, preferences, the decisions you made and the mistakes you don't want repeated. You plan here: the start of the week, a priority shift, a new project, a reminder for a date. About 10% of your time.

The product copilot, one per product, knows the product: database schema, design system, user flows, API contracts, content and voice. You build here. The other 90%.

Each has its own brain file, its own decisions log, its own references. They don't share files. You carry context between them, and two small conventions, a project index in the assistant and a decisions log in each repo, keep them in step. The guide also covers the nested variant, where product repos live as their own checkouts inside the assistant's projects folder.

What's inside the kit

Ten files, 35 KB, no dependencies beyond the tools you already build with:

  • Getting-started guide. Why two repos, a mapping table for every agent, the setup step by step, the operating habits, the day-to-day workflow, troubleshooting, and a page on where the setup goes next.
  • Executive assistant init prompt. Paste it into a fresh session. Four guided phases: folder structure, tools and rules, a six-section onboarding interview, then the agent writes your context files and brain file from your answers.
  • Product copilot init prompt. The same for a product. Product questions only.
  • Session handoff template. The note one session writes for the next, so nothing restarts from zero.
  • Global rules starter. The working discipline that applies in every repo: how to handle ambiguity, verification before claiming done, how a work block closes, git conventions, the scheduled-tasks rule. Every line was broken first.
  • Two hooks for Claude Code, with a one-line fallback for other agents: scheduled tasks that surface at session start, and a guard that keeps .env files out of commands and commits.
  • Changelog, and a README that says what to read first.

The operating habits

The two repos are the structure. Eight habits are what made the structure hold across five products for five months:

  1. The two logs. A decisions log with the reasoning, and a mistake log the agent reads before attempting an approach. Entries link to earlier entries of the same kind. The families are the real lesson.
  2. Curated memory. One fact per note, typed (about you, feedback, project, reference), with the why attached. Logs-as-memory for agents without a memory feature.
  3. Global rules vs project rules. If a rule would be true in a repo you haven't created yet, it's global. That's how the project file stays under 150 lines.
  4. Scheduled tasks. A dated file and a session-start hook. "Remind me on the 25th" means something.
  5. Session handoffs. A note from the closing session to the next one. First message: "Read this file and continue from it."
  6. Handing a repo to a co-founder. A bundle they unzip and open in their agent. The agent does the install; the human reads one handbook. We've done it twice, about an hour each.
  7. The tool-integrations table. Three columns in the brain file: what's connected, how, for what. The agent stops asking.
  8. Closing a session. A TL;DR with owners, and the context files kept current.

Which agents

Built and run daily on Claude Code, written so it carries over. The guide's mapping table covers brain-file names, global rules files, context imports, skills folders, hooks and memory for Codex, Gemini CLI and Qwen Code, with plain-file fallbacks where an agent has no hooks or memory. Both prompts open with a paragraph that tells a non-Claude agent how to translate every name, so the same file runs anywhere. Claude Code and Codex paths are the ones we verify in daily use. For Gemini CLI and Qwen Code, check the current docs for the skills folder.

Setup time

  • Executive assistant: about 30 minutes, most of it the interview.
  • Product copilot: about 30 minutes.
  • Operating habits: 15 minutes to read, a week to feel.

After that, every session starts warm.

Who it's for, and who it isn't

For builders and founders running more than one project with an agent as their daily driver, and solo builders starting repo number one who don't want to rebuild later.

Not for a one-off script or a weekend project. Two repos are overhead you feel on day one and repay in week two. If there is no week two, one folder is fine.

What changed in version 2

The first version (April 2026) was two folders and one prompt, written for Claude Code to onboard a co-founder. Version 2 (September 2026) renamed it, made it agent-agnostic, added the second prompt, the handoff template, the global rules starter and the hooks, and wrote down the eight habits. The habits are the product. The folders are the container.

Frequently asked questions

Do I need Claude Code?

No. Claude Code is where we run it daily, so the guide uses its file names, but every name is mapped for Codex, Gemini CLI and Qwen Code, and both prompts tell a non-Claude agent how to translate. Claude Code and Codex are the two verified in daily use.

Does it work with a product that already has a repo?

Yes. Run the copilot prompt inside the existing repo. It adds only what is missing, the brain file, references, decisions log and content folders, and does not touch your code.

What is a brain file?

The instructions file your agent reads at the start of every session: CLAUDE.md in Claude Code, AGENTS.md in Codex, GEMINI.md in Gemini CLI, QWEN.md in Qwen Code. The kit keeps it under 150 lines by importing context files instead of repeating them.

Does the kit include skills?

No. It sets up the folders where skills live and walks you through installing your own during setup. It ships two hooks, a global rules starter, a handoff template and two prompts.

How long does setup take?

About an hour for both repos, 30 minutes each, most of it answering the onboarding interview. The operating habits take a week to feel natural.

Is it free?

Yes, for an email address you confirm. Lifetime updates: when a new version ships, you get the new file by email. Unsubscribe anytime.

Mac, Windows or Linux?

All three. The kit is markdown plus two small scripts. On Windows the hooks run under Git Bash, which Claude Code uses anyway.

Can a team use it?

Yes. Each person runs their own executive assistant, and the product copilot repo is shared like any other repo. The co-founder handoff bundle in the guide is how we bring a second person onto a live product.

Version history

  • v2.0.0September 9, 2026

    Renamed to Agent Workspace Starter Kit. Runs on Claude Code, Codex, Gemini CLI and Qwen Code (mapping table inside). New: the operating habits (the two logs, curated memory, global rules, scheduled tasks, session handoffs, handing a repo to a co-founder), a copilot init prompt, a session handoff template, a global rules starter, and two hooks.

  • v1.0.0April 19, 2026

    First version, written to onboard a co-founder onto a live product. Packaged for the resources hub on 2026-08-17 as the Claude Code Studio Starter Kit.