Create multiple parallel Goose AI sessions working on the same development prompt
> Create multiple Goose AI instances working in parallel on the same project
create-mkstack10x is a tool that spawns multiple parallel Goose AI assistant sessions, each working independently on the same development prompt. It's named after the concept of a "10x developer" - now you can literally have 10 AI assistants working on your project simultaneously!
You can use this package directly without installing it:
``bash`
npm create mkstack10x
Or install it globally:
`bash`
npm install -g create-mkstack10x
- Node.js 14+
- create-mkstack package
- Goose CLI installed and available in your PATH
`bash`
npm create mkstack10x my-project "Create a web app that does X, Y, and Z"
`bash`
npm create mkstack10x -- -n 5 my-project "Create a web app that does X, Y, and Z"
Note the use of -- when passing flags to the underlying command.
`bash`
npm create mkstack10x blog "Create a blogging platform similar to Medium based on NIP-23 and kind 30023 events."
`bash`
npm create mkstack10x -- -n 5 chirper "Create a website similar to Twitter."
For each instance n, the tool:
1. Creates a new project using npm create mkstack goose run -p goose.jsonl -t "
2. Changes to that directory
3. Runs
All instances run in parallel, with their output displayed in a combined color-coded view in your terminal.
- Explore different approaches: See how different instances tackle the same problem
- Save time: Increase your chances of getting a working solution faster
- Compare implementations: Easily see which approach works best
- Learn from variety: Discover multiple architecture and design patterns
MIT