Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

This is a version manager, not an OpenClaw installer replacement. Installation is the mechanism; reproducible local OpenClaw environments are the product.

Website: https://site-neon-two.vercel.app

## Status

MVP crate scaffold with the full command surface from the PRD:
Expand Down Expand Up @@ -202,8 +204,6 @@ After a GitHub Release exists:
curl -fsSL https://raw.githubusercontent.com/PerfectPan/ocvm/main/install.sh | sh
```

While the repository is private, fetch `install.sh` from an authenticated checkout or provide `GITHUB_TOKEN` to the script for release asset downloads.

## Docker E2E

Run real npm OpenClaw install validation in Docker instead of on the host:
Expand All @@ -214,7 +214,7 @@ Run real npm OpenClaw install validation in Docker instead of on the host:

## Landing Page

The TanStack Start landing page lives in `site/` and is configured for Vercel preview deployments from this repository:
The TanStack Start landing page is deployed at https://site-neon-two.vercel.app. Source lives in `site/` and is configured for Vercel deployments from that directory:

```bash
npm ci --prefix site
Expand Down
7 changes: 0 additions & 7 deletions docs/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,6 @@ Users can install the latest release with:
curl -fsSL https://raw.githubusercontent.com/PerfectPan/ocvm/main/install.sh | sh
```

For private repository installs, set a token with `repo` access:

```bash
GITHUB_TOKEN=... curl -fsSL https://raw.githubusercontent.com/PerfectPan/ocvm/main/install.sh | sh
```

## Docker E2E

Use Docker to validate real npm OpenClaw install behavior without touching the host:
Expand All @@ -46,4 +40,3 @@ Use Docker to validate real npm OpenClaw install behavior without touching the h
```

The container sets `OCVM_HOME=/tmp/ocvm-home`, installs from npm, and runs `ocvm exec -- openclaw --version`.

2 changes: 1 addition & 1 deletion site/src/routes/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ OpenClaw 2026.3.28`}</pre>
<section id="install" className="installBand">
<div>
<p className="sectionLabel">Install</p>
<h2>One command after the first GitHub Release is published.</h2>
<h2>One command once the first GitHub Release is published.</h2>
</div>
<pre className="installCommand">
curl -fsSL https://raw.githubusercontent.com/PerfectPan/ocvm/main/install.sh | sh
Expand Down
Loading