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
10 changes: 10 additions & 0 deletions public/install-next.ps1
Original file line number Diff line number Diff line change
@@ -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"
24 changes: 24 additions & 0 deletions public/install-next.sh
Original file line number Diff line number Diff line change
@@ -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" "$@"
2 changes: 1 addition & 1 deletion src/components/Architecture.astro
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<div class="rounded-xl border-2 border-accent/50 bg-bg-surface px-6 py-4 text-center">
<p class="font-mono text-sm text-accent">Gateway</p>
<p class="mt-1 font-heading text-sm font-medium">
50 MCP Tools
Bridge Middleware
</p>
</div>

Expand Down
34 changes: 7 additions & 27 deletions src/components/Features.astro
Original file line number Diff line number Diff line change
@@ -1,42 +1,22 @@
---
import { Router, MessageSquare, Settings, Wrench, Layers, Package } from "@lucide/astro";
import { Settings, Unplug } from "@lucide/astro";

const features = [
{
icon: Router,
heading: "Four runtimes, one gateway",
description: "Claude, Gemini, Codex, OpenCode \u2014 route any CLI agent to any channel.",
},
{
icon: MessageSquare,
heading: "22+ channels included",
description: "WhatsApp, Telegram, Discord, Slack, Matrix, LINE, and more.",
},
{
icon: Settings,
heading: "Your config, unchanged",
description: "~/.claude, ~/.gemini \u2014 your skills, agents, and settings travel with you.",
},
{
icon: Wrench,
heading: "50 MCP tools built in",
description: "Sessions, messaging, cron, device nodes, canvas, browser proxy, TTS.",
},
{
icon: Layers,
heading: "Middleware, not platform",
description: "No bundled LLM, no vendor lock-in. Agents bring their own capabilities.",
heading: "Your agent, remotely",
description: "Skills, tools, MCP servers, settings \u2014 everything works as-is through a transparent layer.",
},
{
icon: Package,
heading: "One npm install",
description: "npm install -g remoteclaw \u2014 or curl remoteclaw.sh | sh.",
icon: Unplug,
heading: "Bridge, not platform",
description: "No bundled agent, no skill marketplace, no attack surface. Just a transparent bridge between your agent and you.",
},
];
---

<section class="px-6 py-16">
<div class="mx-auto grid max-w-5xl gap-6 sm:grid-cols-2 lg:grid-cols-3">
<div class="mx-auto grid max-w-5xl gap-6 sm:grid-cols-2">
{
features.map(({ icon: Icon, heading, description }) => (
<div class="rounded-xl border border-border bg-bg-surface p-6">
Expand Down
Loading