Packs are curated combinations of modules for a specific starting situation.
Every pack should include:
README.mdfor use case and included modules.START-HERE.mdfor first actions.pack.jsonfor automation.- optional
extras/for pack-specific files.
{
"name": "solo-dev-os",
"description": "A continuity-first setup for durable solo projects.",
"modules": ["foundation", "docs", "memory", "workflow", "philosophy"],
"extras": ["extras"]
}Manual:
- Open the pack README.
- Copy the listed modules from
modules/into your target project. - Copy any pack
extras/into the target project. - Fill the first-action checklist in
START-HERE.md.
Scripted:
node scripts/install-pack.js packs/solo-dev-os ../target-project- Choose a concrete use case.
- Pick only the modules that directly support that use case.
- Add pack-specific extras only when they are genuinely useful.
- Write first actions that can be completed in five minutes.
- Keep the pack small enough to understand at a glance.
- TypeScript library starter.
- Python CLI starter.
- SaaS app foundation.
- Docs-only project.
- Research prototype.
- Client handoff pack.
- Security review pack.
- API product pack.