PowerShell
iex "& { $(irm https://raw.githubusercontent.com/YoussefSelk/VibeCode-PlayBook/main/scripts/install.ps1) }"
Step 1
iex "& { $(irm https://raw.githubusercontent.com/YoussefSelk/VibeCode-PlayBook/main/scripts/install.ps1) }"
curl -fsSL https://raw.githubusercontent.com/YoussefSelk/VibeCode-PlayBook/main/scripts/install.sh | bash
Step 1b
| Option | PowerShell | Bash | What it does |
|---|---|---|---|
| Destination | -Destination |
--destination |
Install files into a specific project directory. |
| Assistant pack | -Assistant codex|claude|github |
--assistant codex|claude|github |
Forces one assistant pack and skips menu selection. |
| Overwrite | -Force |
--force |
Overwrites files that already exist in target path. |
| Backup before overwrite | -Backup |
--backup |
Creates timestamped .bak files before
overwrite (with Force).
|
| Custom source base | -RepoBase |
--repo-base |
Downloads from a custom raw source URL (testing/mirror use). |
Step 1c
-Assistant claude
-Destination 'C:\\path\\to\\project'
-Force -Backup
-RepoBase
https://raw.githubusercontent.com/<owner>/<repo>/main
--assistant github
--destination /path/to/project
--force --backup
--repo-base
https://raw.githubusercontent.com/<owner>/<repo>/main
Step 2
Step 3
| Role | Ownership |
|---|---|
| prompt-engineer | Turns rough ask into actionable execution plan |
| db | Schema, migrations, persistence contracts |
| backend | APIs, business logic, auth, validation |
| frontend | UI behavior, accessibility, client integration |
| devops | CI/CD, deployment safety, environment, infra operability |
| tester | Runtime flow and integration verification |
| reviewer | Final risk and regression gate |
Step 3b
Use .agents/reference-links.md and include only
the domain section needed for the current pass.
Step 4
Test the real user flow, not only unit behavior.
Confirm request/response and data schema consistency.
Add security and legal checks when boundaries change.
Step 5