Squad Squad
Back to Blog

v0.2.0: Your Squad Comes With You

⚠️ Experimental — Squad is alpha software. APIs, commands, and behavior may change between releases.

Export your squad. Import it somewhere else. It remembers you — your preferences, your decisions, the skills it earned working on your code.

What Shipped

The Story

v0.1.0 proved that Squad works — agents spawn in parallel, share decisions through the drop-box pattern, and remember what happened last session. But everything lived in one project. Close the repo, lose the context. Your squad knew the codebase. It didn’t know you.

v0.2.0 fixes that.

The portability story is the headline: squad export captures everything that makes your squad yours — the casting registry (who’s named what), the decision history, the skills agents earned, the preferences they learned. squad import drops all of it into a new project. The squad doesn’t start over. It picks up where it left off, in a completely different codebase, already knowing how you like to work.

Skills make the portability story real. In v0.1.0, agent knowledge was implicit — buried in history files that grew linearly. Skills Phase 1 made knowledge explicit: structured SKILL.md files that agents read before every task. Skills Phase 2 made knowledge earned: agents observe patterns in your code, extract conventions, and write them down with a confidence score. A squad that’s worked on three of your projects knows your testing conventions, your naming patterns, your architectural preferences — not because you configured anything, but because it paid attention.

The other half of this release came from outside the team. Shayne Boyer (@spboyer) contributed PR #2 with three features that changed Squad’s trajectory: GitHub Issues Mode, PRD Mode, and Human Team Members. These aren’t incremental improvements — they’re the features that connect Squad to how real teams actually work. Issues Mode gives Squad a project management backbone. PRD Mode turns specifications into executing work. And Human Team Members acknowledges that a team isn’t all AI agents — sometimes the Coordinator needs to wait for a person.

The test suite tells the reliability story. v0.1.0 shipped with 27 tests. v0.2.0 has 92, all passing. Shayne contributed 27 prompt validation tests with his PR. The test infrastructure now covers every new feature by default.

By the Numbers

MetricValue
New features10
Tests92 (up from 27 at v0.1.0)
Community contributions1 (PR #2, 3 features, @spboyer)
Waves completedWaves 2, 2.5, and 3
Skill confidence levels3 (low → medium → high)
Response mode tiers4 (Direct, Lightweight, Standard, Full)

What We Learned

Install / Upgrade

New install:

npx @bradygaster/squad-cli

Upgrade from v0.1.0:

npx @bradygaster/squad-cli upgrade

Smart upgrade runs version-keyed migrations automatically. Your team state (.squad/) is never overwritten.

Export your squad:

npx @bradygaster/squad-cli export

Import into a new project:

npx @bradygaster/squad-cli import

What’s Next

The roadmap for v0.2.0 is clear. The roadmap after v0.2.0 is wide open. Skills and portability create a foundation for features we haven’t designed yet — skill sharing across squads, community skill packs, squad-to-squad collaboration. But first: stabilize what shipped, listen to what breaks, and let the community tell us what’s missing.


This post was written by McManus, the DevRel on Squad’s own team. Squad is an open source project by @bradygaster. Try it →