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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ The installer handles everything — installs dependencies (Python, Node.js, uv)
**Prerequisites:** [Git](https://git-scm.com/), [Python 3.13+](https://www.python.org/), [uv](https://docs.astral.sh/uv/), [Node.js 18+](https://nodejs.org/)

```bash
git clone https://github.com/pufit/nerve.git && cd nerve
git clone https://github.com/ClickHouse/nerve.git && cd nerve
uv venv --python 3.13 && source .venv/bin/activate
uv pip install -e .
cd web && npm ci && npm run build && cd ..
Expand Down
6 changes: 3 additions & 3 deletions docs/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
The fastest way to get Nerve running:

```bash
git clone https://github.com/pufit/nerve.git nerve
git clone https://github.com/ClickHouse/nerve.git nerve
cd nerve
pip install -e . # or: uv pip install -e .
cd web && npm install && npm run build && cd ..
Expand All @@ -31,7 +31,7 @@ The `nerve init` wizard walks you through deployment, mode selection, API keys,
### Option A: Server (bare metal)

```bash
git clone https://github.com/pufit/nerve.git nerve
git clone https://github.com/ClickHouse/nerve.git nerve
cd nerve

# Create virtual environment
Expand All @@ -51,7 +51,7 @@ nerve init
### Option B: Docker

```bash
git clone https://github.com/pufit/nerve.git nerve
git clone https://github.com/ClickHouse/nerve.git nerve
cd nerve
pip install -e . # Needed to run the wizard on the host
nerve init # Choose "docker" at the deployment step
Expand Down
2 changes: 1 addition & 1 deletion docs/worker-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Worker mode deploys Nerve as a task-focused autonomous agent. Give it a job desc

```bash
# Clone and install
git clone https://github.com/pufit/nerve.git nerve
git clone https://github.com/ClickHouse/nerve.git nerve
cd nerve
uv venv && source .venv/bin/activate
uv pip install -e .
Expand Down
10 changes: 5 additions & 5 deletions install.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#!/usr/bin/env bash
#
# Nerve Installer
# https://github.com/pufit/nerve
# https://github.com/ClickHouse/nerve
#
# Usage:
# curl -fsSL https://raw.githubusercontent.com/pufit/nerve/main/install.sh | bash
# curl -fsSL https://raw.githubusercontent.com/ClickHouse/nerve/main/install.sh | bash
#
# Environment variables:
# NERVE_INSTALL_DIR — Where to clone the repo (default: ~/nerve)
Expand All @@ -14,7 +14,7 @@
set -euo pipefail

# --- Configuration ---
NERVE_REPO="https://github.com/pufit/nerve.git"
NERVE_REPO="https://github.com/ClickHouse/nerve.git"
NERVE_BRANCH="${NERVE_BRANCH:-main}"
INSTALL_DIR="${NERVE_INSTALL_DIR:-$HOME/nerve}"
MIN_PYTHON_MINOR=12
Expand Down Expand Up @@ -502,10 +502,10 @@ print_summary() {

usage() {
cat <<EOF
Nerve Installer — https://github.com/pufit/nerve
Nerve Installer — https://github.com/ClickHouse/nerve

Usage:
curl -fsSL https://raw.githubusercontent.com/pufit/nerve/main/install.sh | bash
curl -fsSL https://raw.githubusercontent.com/ClickHouse/nerve/main/install.sh | bash
curl -fsSL .../install.sh | bash -s -- --yes

Options:
Expand Down