The ɳClaw web client (claw/apps/web/) is an open-source Next.js app that connects to any running ɳClaw server. It is a redirect shell: it stores your server URL once and sends you directly to your instance on every subsequent visit. No data is stored on any central server.
https://claw.yourdomain.com)Visit claw.nself.org and enter your server URL. The URL is saved to localStorage in your browser. On every future visit you land directly on your server.
Clone the repo and deploy your own instance:
git clone https://github.com/nself-org/claw
cd claw/apps/web
pnpm install
# Optional: pre-configure server URL at build time
echo "NEXT_PUBLIC_CLAW_URL=https://claw.yourdomain.com" > .env.local
pnpm build
pnpm startIf NEXT_PUBLIC_CLAW_URL is set, the app redirects immediately without prompting. Otherwise, the setup screen asks for the URL once.
vercel --cwd apps/webSet NEXT_PUBLIC_CLAW_URL in the Vercel project environment variables to skip the setup screen for all visitors.
Open the app in a browser. If configured, you should land on your ɳClaw chat interface. If not, enter your server URL and click Connect.