You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-**Open source.** MIT license. No telemetry, no phoning home, no hidden
215
215
backdoors. You get the whole stack. Unlike hosted assistants, Forge is fully inspectable, replayable, and yours.
216
216
217
+
> [!TIP]
218
+
> Unlike Claude Code or OpenAI Codex, Forge is not a hosted assistant. It's local-first infrastructure. You pick & host the model. You approve the actions. Everything is inspectable, replayable, and yours.
219
+
217
220
---
218
221
219
222
## Quick start
220
223
221
224
```bash
222
225
# Option 1 — npm (global):
223
-
npm install -g @forge/cli
226
+
npm install -g @hoangsonw/forge
224
227
forge doctor # green checks + role→model mapping
225
228
forge run "explain this repo"
226
229
227
230
# Option 2 — Docker:
228
231
docker run --rm -it \
229
232
-v forge-home:/data -v "$PWD:/workspace" \
230
-
ghcr.io/forge/forge:latest forge run "explain this repo"
233
+
ghcr.io/hoangsonw/forge-agentic-coding-cli:latest forge run "explain this repo"
|`forge: command not found`| npm global bin not on PATH | add `$(npm bin -g)` to PATH, or use `npx @forge/cli`|
336
+
|`forge: command not found`| npm global bin not on PATH | add `$(npm bin -g)` to PATH, or use `npx @hoangsonw/forge`|
337
337
|`No model provider is reachable`| nothing running on default ports | start Ollama / LM Studio / vLLM / llama.cpp, or export `ANTHROPIC_API_KEY`|
338
338
|`adapter: substituted model` warning | your configured model isn't pulled | either `ollama pull <id>` or accept the substitution (Forge picked the best-fit) |
339
-
| Container exits immediately | default CMD is `forge --help`| pass a subcommand: `docker run … ghcr.io/forge/forge:latest forge run "…"`|
339
+
| Container exits immediately | default CMD is `forge --help`| pass a subcommand: `docker run … ghcr.io/hoangsonw/forge-agentic-coding-cli:latest forge run "…"`|
340
340
| Permission prompts every single call | strict mode on, or no flags |`--skip-permissions` for routine tools, or `--allow-shell` / `--allow-files`|
0 commit comments