Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@

Superset helps you run 100 CLI coding agents on your machine without losing your mind.

## Docs

See the Markdown wiki in `docs/`: [docs/README.md](docs/README.md).


## What you can do with Superset:

Expand Down
2 changes: 2 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Superset Wiki
A collection of docs for Superset
65 changes: 65 additions & 0 deletions docs/cookbook/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
# WIP - Parallel Coding Agent cookbook

How to run 100 agents in parallel without losing your mind, a practical guide.

## Table of Contents

1. [Why would I want to do this?](#why-would-i-want-to-do-this)
2. [Which agents should I use?](#which-agents-should-i-use)
- [Coding environment](#coding-environment)
3. [Handling Conflicts](#handling-conflicts)
4. [Workflow](#workflow)
5. [Unorganized Tips](#unorganized-tips)

## Why would I want to do this?

Time === money. Instead of hiring 1-2 more engineers, you can increase your output at the same rate for $100-$200 / month.

You can realistically ship 1-3 features in an hour that would take 1-3 days pre-LLM. Just develop them in parallel.

## Which agents should I use?

Some CLI agents and configs are good at certain things. Use them accordingly.
- Codex (high) is good at planning and reviewing - https://github.com/openai/codex
- Sonnet 4.5 is good at coding - https://www.claude.com/product/claude-code
- Composer-1 is good at refactoring and making quick changes - https://cursor.com/cli
- CodeRabbit CLI is also good at reviewing

### Coding environment
It's untenable to develop more than 2-3 features on the same codebase. Git Worktrees can help keep each change in a separate branch that can avoid overwriting each other. It's still best to develop the same feature on 1 worktree.

Tips:
1. Use tooling for worktree creation and setup https://github.com/coderabbitai/git-worktree-runner
2. Instrument your codebase with environment variable-based port mapping so ports don't conflict

### Handling Conflicts
- Keep PRs per feature
- Prefer merging main into the PR instead of the PR into main, have an agent look at the current PR and the merge conflicts and plan before coding. Treat merging as its own feature work.

### Workflow
1. Plan with a high reasoning agent/model. I prefer Codex (high) at the time of writing
2. Refine the plan until you're happy with it
3. Record the plan in and MD or copy and past to a coding agent directly
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Fix grammar error on line 39.

"Record the plan in and MD" contains a typo. Should be "Record the plan in a MD" or "Record the plan as an MD" (or similar).

-3. Record the plan in and MD or copy and past to a coding agent directly
+3. Record the plan in an MD or copy and paste to a coding agent directly

Note: This diff also corrects "past" to "paste" on the same line.

📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
3. Record the plan in and MD or copy and past to a coding agent directly
3. Record the plan in an MD or copy and paste to a coding agent directly
🧰 Tools
🪛 LanguageTool

[grammar] ~39-~39: Ensure spelling is correct
Context: ...'re happy with it 3. Record the plan in and MD or copy and past to a coding agent d...

(QB_NEW_EN_ORTHOGRAPHY_ERROR_IDS_1)

🤖 Prompt for AI Agents
In docs/cookbook/README.md around line 39, fix the grammatical typos in the line
"Record the plan in and MD or copy and past to a coding agent directly" by
changing "and" to "a" (or "as") and "past" to "paste" so the line reads e.g.
"Record the plan in a MD or copy and paste to a coding agent directly" (or
"Record the plan as an MD or copy and paste to a coding agent directly").

4. Pass over to Claude Code or other coding agent for implementation
5. Use a reasoning (Codex) or review agent (CodeRabbit) to review the work and spot bug
6. Pass the feedback (if you agree with them) to the coding agent
7. Repeat until monkey brain happy

Bonus:
1. Have CI/CD for review tool like CodeRabbit for PR review.
2. Have the coding model write unit tests for edge cases.
3. Use fast agent like composer to clean up comments and refactor code.

### Unorganized Tips:
1. Use worktrees. But automate the setup.
- https://git-scm.com/docs/git-worktree
- https://github.com/coderabbitai/git-worktree-runner
2. Use hooks to notify when agent is done
- https://code.claude.com/docs/en/hooks-guide
- https://github.com/openai/codex/discussions/2150
3. Color/name code your workspace
- https://marketplace.visualstudio.com/items?itemName=johnpapa.vscode-peacock
4. Plan as a separate step
- Explore codebase and write/refine a plan as MD.
- Commit it for a different/fresh agent to pick up.
5. Linter, Unit Tests, and Type-safety can be huge help. This gives valuable feedback to agents.
Loading