Skip to content

Commit 57c0ca1

Browse files
author
Rex
committed
docs(brand): standardize public naming to LoopForge
1 parent 1a58169 commit 57c0ca1

34 files changed

Lines changed: 121 additions & 121 deletions

docs-site/blog/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ Practical notes for builders choosing an Agent OS and scaling from local prototy
44

55
## Latest posts
66

7-
- [What Is LoopForge? (Formerly RexOS)](what-is-loopforge.md)
7+
- [What Is LoopForge? (Formerly LoopForge)](what-is-loopforge.md)
88
- [LoopForge vs OpenFang/OpenClaw (Builder View)](rexos-vs-openfang-openclaw.md)
99
- [Editorial Calendar](editorial-calendar.md)
1010

1111
## Suggested reading order
1212

13-
1. Brand + product fit: [What Is LoopForge? (Formerly RexOS)](what-is-loopforge.md)
13+
1. Brand + product fit: [What Is LoopForge? (Formerly LoopForge)](what-is-loopforge.md)
1414
2. First successful run: [New User Walkthrough](../tutorials/new-user-walkthrough.md)
1515
3. Practical templates: [10 Copy/Paste Tasks](../examples/case-tasks/ten-copy-paste-tasks.md)
1616
4. Positioning and alternatives: [LoopForge vs OpenFang/OpenClaw (Builder View)](rexos-vs-openfang-openclaw.md)

docs-site/blog/what-is-loopforge.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# What Is LoopForge? (Formerly RexOS)
1+
# What Is LoopForge? (Formerly LoopForge)
22

3-
LoopForge is the new public brand of the product previously known as RexOS.
3+
LoopForge is the new public brand of the product previously known as LoopForge.
44
We renamed to make the product easier to remember and easier to spread in builder communities.
55

66
## One-line positioning

docs-site/examples/case-tasks/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ Pick a scenario and run it locally. Each page is designed to be **copy‑paste f
2626

2727
</div>
2828

29-
!!! tip "New to RexOS?"
29+
!!! tip "New to LoopForge?"
3030
Start with the [New User Walkthrough](../../tutorials/new-user-walkthrough.md).

docs-site/examples/case-tasks/ten-copy-paste-tasks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ mkdir -p my-work
1414
## 1) Create a file
1515

1616
```bash
17-
loopforge agent run --workspace my-work --prompt "Create notes/hello.md with exactly: Hello RexOS"
17+
loopforge agent run --workspace my-work --prompt "Create notes/hello.md with exactly: Hello LoopForge"
1818
```
1919

2020
## 2) Repo onboarding in 10 minutes

docs-site/examples/daemon-health.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ loopforge daemon start --addr 127.0.0.1:8787
77
curl http://127.0.0.1:8787/healthz
88
```
99

10-
Use it for container readiness / supervision, and keep the rest of RexOS logic in the CLI for now.
10+
Use it for container readiness / supervision, and keep the rest of LoopForge logic in the CLI for now.

docs-site/examples/harness-recipes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Harness Recipes (Checkpoints)
22

3-
Use the harness when you want RexOS to iterate until your verifier passes, while staying rollback-friendly.
3+
Use the harness when you want LoopForge to iterate until your verifier passes, while staying rollback-friendly.
44

55
## 1) Fix a failing test suite with harness checkpoints
66

@@ -39,7 +39,7 @@ loopforge harness run . --prompt "Continue. Focus on the next failing verifier o
3939
- `features.json` (checklist)
4040
- `rexos-progress.md` (append-only progress log)
4141
- `init.sh` + `init.ps1` (your verifier scripts)
42-
- When your verifier passes, RexOS makes a **checkpoint git commit**.
42+
- When your verifier passes, LoopForge makes a **checkpoint git commit**.
4343

4444
!!! tip "Rollback-friendly"
4545
If a checkpoint is bad, use git normally (e.g. `git reset --hard HEAD~1`) and run `loopforge harness run` again.

docs-site/explanation/concepts.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
# Concepts
22

3-
RexOS is designed for long-running work where “one prompt” isn’t enough.
3+
LoopForge is designed for long-running work where “one prompt” isn’t enough.
44

55
## Workspace
66

7-
Most RexOS commands operate on a **workspace directory**:
7+
Most LoopForge commands operate on a **workspace directory**:
88

99
- tools are sandboxed to it (filesystem + shell working directory)
1010
- the harness stores durable artifacts there
1111

1212
## Memory (SQLite)
1313

14-
RexOS persists:
14+
LoopForge persists:
1515

1616
- sessions
1717
- chat messages
@@ -31,7 +31,7 @@ The agent can call tools such as:
3131
!!! note "Browser tools prerequisites"
3232
By default, `browser_*` uses a local Chromium-based browser (Chrome/Chromium/Edge) via **CDP**.
3333

34-
If RexOS can’t find a browser executable, set `REXOS_BROWSER_CHROME_PATH`.
34+
If LoopForge can’t find a browser executable, set `REXOS_BROWSER_CHROME_PATH`.
3535

3636
Optional legacy backend: set `REXOS_BROWSER_BACKEND=playwright` and install Python + Playwright:
3737

@@ -42,7 +42,7 @@ The agent can call tools such as:
4242

4343
## Model routing
4444

45-
RexOS classifies runs into a task kind:
45+
LoopForge classifies runs into a task kind:
4646

4747
- planning
4848
- coding

docs-site/explanation/security.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Security & Sandboxing
22

3-
RexOS is built around running LLM-driven tool calls with guardrails.
3+
LoopForge is built around running LLM-driven tool calls with guardrails.
44

55
## Workspace sandbox
66

@@ -28,7 +28,7 @@ For local testing you can explicitly allow private targets with `allow_private=t
2828

2929
## Browser tools
3030

31-
RexOS can run a headless browser via **CDP** by default (no Python), and can also use a legacy Playwright bridge backend.
31+
LoopForge can run a headless browser via **CDP** by default (no Python), and can also use a legacy Playwright bridge backend.
3232

3333
- `browser_navigate` / `browser_click` / `browser_type` / `browser_press_key` / `browser_wait_for` / `browser_read_page` / `browser_screenshot` / `browser_close`
3434

@@ -40,4 +40,4 @@ Security notes:
4040

4141
## Future: approvals
4242

43-
RexOS has the structure to add “approval hooks” for higher-risk actions (network writes, destructive commands, etc.). This is intentionally conservative by default.
43+
LoopForge has the structure to add “approval hooks” for higher-risk actions (network writes, destructive commands, etc.). This is intentionally conservative by default.

docs-site/how-to/browser-automation.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,22 @@ For copy-paste recipes, see: [Browser Use Cases](browser-use-cases.md).
66

77
## Default backend: CDP (no Python)
88

9-
RexOS launches a local Chromium-based browser (Chrome / Chromium / Edge) and drives it via **Chrome DevTools Protocol (CDP)**.
9+
LoopForge launches a local Chromium-based browser (Chrome / Chromium / Edge) and drives it via **Chrome DevTools Protocol (CDP)**.
1010

1111
### Prerequisites
1212

1313
- Install a Chromium-based browser (Chrome/Chromium/Edge).
14-
- If RexOS can’t find it, set `REXOS_BROWSER_CHROME_PATH` to the browser executable path.
14+
- If LoopForge can’t find it, set `REXOS_BROWSER_CHROME_PATH` to the browser executable path.
1515

1616
### Remote CDP (optional)
1717

18-
If you already have a browser running with a remote debugging port (or you run one in Docker), point RexOS at it:
18+
If you already have a browser running with a remote debugging port (or you run one in Docker), point LoopForge at it:
1919

2020
```bash
2121
export REXOS_BROWSER_CDP_HTTP="http://127.0.0.1:9222"
2222
```
2323

24-
By default, RexOS only allows **loopback** CDP endpoints. To attach to a non-loopback CDP URL, you must explicitly opt in:
24+
By default, LoopForge only allows **loopback** CDP endpoints. To attach to a non-loopback CDP URL, you must explicitly opt in:
2525

2626
```bash
2727
export REXOS_BROWSER_CDP_ALLOW_REMOTE=1
@@ -37,7 +37,7 @@ Then follow: [GUI Smoke Check](browser-use-cases/gui-smoke-check.md).
3737

3838
## Headless vs GUI
3939

40-
By default, RexOS launches the browser in **headless** mode.
40+
By default, LoopForge launches the browser in **headless** mode.
4141

4242
To show the browser window (local debugging / demos), set `headless=false` on the first `browser_navigate` call:
4343

@@ -105,7 +105,7 @@ If a CSS selector fails, `browser_click` will try a **best-effort visible-text f
105105
Use this as a starting point for agent prompts:
106106

107107
```text
108-
You may use RexOS browser tools (browser_navigate/back/scroll/click/type/press_key/wait/wait_for/read_page/run_js/screenshot/close).
108+
You may use LoopForge browser tools (browser_navigate/back/scroll/click/type/press_key/wait/wait_for/read_page/run_js/screenshot/close).
109109
110110
Rules:
111111
- Always call browser_read_page after navigate/click/type/press_key to verify page state before the next step.

docs-site/how-to/browser-use-cases.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ See also: [Browser Automation (CDP)](browser-automation.md).
77
## Prerequisites (default: CDP)
88

99
- Install a Chromium-based browser (Chrome/Chromium/Edge).
10-
- If RexOS can’t find it, set `REXOS_BROWSER_CHROME_PATH`.
10+
- If LoopForge can’t find it, set `REXOS_BROWSER_CHROME_PATH`.
1111

1212
Optional: use the Playwright backend (legacy) by setting `REXOS_BROWSER_BACKEND=playwright` and following the install steps in [Browser Automation](browser-automation.md).
1313

0 commit comments

Comments
 (0)