diff --git a/public/install-next.ps1 b/public/install-next.ps1 new file mode 100644 index 0000000..f7346a8 --- /dev/null +++ b/public/install-next.ps1 @@ -0,0 +1,10 @@ +# RemoteClaw "next" channel installer — latest build from main branch. +# Usage: irm https://next.remoteclaw.ps | iex +# +# This wrapper runs the standard installer with the "next" dist-tag, +# which tracks every commit on main. Newest features, updated continuously. + +$ErrorActionPreference = "Stop" +$script = Invoke-RestMethod https://remoteclaw.org/install.ps1 +$sb = [scriptblock]::Create($script) +& $sb -Tag "next" diff --git a/public/install-next.sh b/public/install-next.sh new file mode 100755 index 0000000..a4ba169 --- /dev/null +++ b/public/install-next.sh @@ -0,0 +1,24 @@ +#!/bin/sh +# RemoteClaw "next" channel installer — latest build from main branch. +# Usage: curl -fsSL https://next.remoteclaw.sh | sh +# +# This wrapper runs the standard installer with the "next" dist-tag, +# which tracks every commit on main. Newest features, updated continuously. +# +# All flags are forwarded (e.g., --local, --dry-run, --verbose). + +export REMOTECLAW_VERSION="${REMOTECLAW_VERSION:-next}" + +_script="$(mktemp)" || { echo "Error: mktemp failed" >&2; exit 1; } +trap 'rm -f "$_script"' EXIT + +if command -v curl >/dev/null 2>&1; then + curl -fsSL --proto '=https' --tlsv1.2 https://remoteclaw.org/install.sh -o "$_script" || exit 1 +elif command -v wget >/dev/null 2>&1; then + wget -q --https-only https://remoteclaw.org/install.sh -O "$_script" || exit 1 +else + echo "Error: curl or wget is required" >&2 + exit 1 +fi + +exec bash "$_script" "$@" diff --git a/src/components/Architecture.astro b/src/components/Architecture.astro index cef66d7..95a3420 100644 --- a/src/components/Architecture.astro +++ b/src/components/Architecture.astro @@ -34,7 +34,7 @@
Gateway
- 50 MCP Tools + Bridge Middleware
- Self-hosted middleware that connects Claude Code, Gemini CLI, Codex - CLI, and OpenCode to 22+ messaging channels. +
+ Self-hosted middleware that connects Claude Code, Gemini CLI, + Codex CLI, and OpenCode to 22+ messaging channels.
- - -- Detects your OS and installs Node if needed. No root - required on macOS. -
-