22
33## 1. Install agentic-stack
44
5- ### macOS / Linux (recommended)
5+ ### macOS / Linux with Homebrew (recommended)
66
77``` bash
88brew tap codejunkie99/agentic-stack https://github.com/codejunkie99/agentic-stack
99brew install agentic-stack
1010```
1111
12- ### Windows (PowerShell)
12+ This installs the ` agentic-stack ` command.
1313
14- ``` powershell
14+ ### Source checkout (no Homebrew)
15+
16+ If you prefer not to use Homebrew, clone the repo and run ` install.sh `
17+ against the project you want to wire:
18+
19+ ``` bash
1520git clone https://github.com/codejunkie99/agentic-stack.git
1621cd agentic-stack
17- .\ install.ps1 claude-code C:\ path\to\ your-project
22+ ./ install.sh claude-code / path/to/ your-project
1823```
1924
20- ### Clone install (any platform)
25+ This path does not install a global ` agentic-stack ` command. Keep the clone
26+ around and run future management commands through ` ./install.sh ` .
2127
22- If you prefer not to use Homebrew:
28+ ### Windows (PowerShell)
2329
24- ``` bash
30+ ``` powershell
2531git clone https://github.com/codejunkie99/agentic-stack.git
26- cd agentic-stack && ./install.sh claude-code
32+ cd agentic-stack
33+ .\install.ps1 claude-code C:\path\to\your-project
2734```
2835
2936## 2. Pick your harness
3037
38+ If you installed with Homebrew, run the CLI from your project root:
39+
3140``` bash
3241cd your-project
3342agentic-stack claude-code
3443# or: cursor | windsurf | opencode | openclaw | hermes | pi | codex | standalone-python | antigravity
3544```
3645
46+ If you are using a source checkout, the install command above already picked
47+ the harness. To add another adapter later, run
48+ ` ./install.sh add <adapter> /path/to/your-project ` from the clone.
49+
3750The onboarding wizard runs automatically, populating
3851` .agent/memory/personal/PREFERENCES.md ` and ` .agent/memory/.features.json ` .
3952
@@ -62,7 +75,8 @@ failures with reflection, and (if you let it) proposing skill rewrites.
6275
6376## Managing your project
6477
65- After the initial setup, use verb-style subcommands:
78+ After the initial setup, Homebrew users can run verb-style subcommands from
79+ the project root:
6680
6781``` bash
6882agentic-stack dashboard # TUI dashboard: health, verify, memory, team, skills
@@ -73,14 +87,35 @@ agentic-stack upgrade --yes # apply latest harness/memory/tools + new skil
7387agentic-stack sync-manifest # rebuild .agent/skills/_manifest.jsonl from SKILL.md
7488```
7589
76- Adding or removing adapters:
90+ Source checkout users can run the same verbs through the clone:
91+
92+ ``` bash
93+ ./install.sh dashboard /path/to/your-project
94+ ./install.sh status /path/to/your-project
95+ ./install.sh doctor /path/to/your-project
96+ ./install.sh upgrade /path/to/your-project --dry-run
97+ ./install.sh upgrade /path/to/your-project --yes
98+ ./install.sh sync-manifest /path/to/your-project
99+ ```
100+
101+ PowerShell users can run the same verbs through ` .\install.ps1 ` .
102+
103+ Adding or removing adapters with Homebrew:
77104
78105``` bash
79106agentic-stack add cursor # add a second adapter alongside Claude Code
80107agentic-stack remove cursor # confirm prompt + delete
81108agentic-stack manage # interactive TUI for add/remove/audit
82109```
83110
111+ Source checkout equivalents:
112+
113+ ``` bash
114+ ./install.sh add cursor /path/to/your-project
115+ ./install.sh remove cursor /path/to/your-project
116+ ./install.sh manage /path/to/your-project
117+ ```
118+
84119## Optional: add a visual system with ` DESIGN.md `
85120
86121If your project has UI, drop a Google Stitch-style ` DESIGN.md ` file in the
@@ -100,7 +135,16 @@ npx @google/design.md lint DESIGN.md
100135brew update && brew upgrade agentic-stack
101136cd your-project
102137agentic-stack upgrade --dry-run # preview changes
103- agentic-stack upgrade --yes # apply (safe — won't overwrite your memory or config)
138+ agentic-stack upgrade --yes # apply; won't overwrite your memory or config
139+ ```
140+
141+ Source checkout users should update the clone first:
142+
143+ ``` bash
144+ cd /path/to/agentic-stack
145+ git pull --ff-only
146+ ./install.sh upgrade /path/to/your-project --dry-run
147+ ./install.sh upgrade /path/to/your-project --yes
104148```
105149
106150The upgrade command refreshes skeleton-owned ` .agent ` infrastructure
0 commit comments