Tiger Agent workspace -- OpenClaw orchestration runtime
Find a file
Mannu 01ab630085 feat(dev): deploy.sh + local-dev.sh + bridge remote mode
deploy.sh:
  Validated explicit-deploy workflow. Pre-flight checks (local build,
  uncommitted changes, server reachability) run on Mac before touching
  server. Code pushed to server via 'git push ssh://...' over the
  existing SSH connection — no Mac SSH server required. Server does
  git reset --hard to the pushed commit, reinstalls deps if
  package.json changed, rebuilds dashboard, restarts services, verifies
  health. Full troubleshooting guide in file header.

local-dev.sh:
  Runs bridge (:3457) and dashboard (:3101) locally on Mac while
  reaching Tiger via SSH. Separate ports + separate SQLite DB keep it
  isolated from prod (still live on :3100/:3456). Hot-reload in both
  layers. Clean Ctrl-C shutdown.

bridge remote mode:
  Added TIGER_REMOTE=true support in bridge/src/tiger.ts and chat.ts.
  When set, 'docker exec tiger-openclaw' calls are prefixed with
  'ssh $TIGER_REMOTE_SSH'. Backward-compatible: VPS leaves TIGER_REMOTE
  unset and runs docker locally as before.

Workflow moving forward:
  • Edit locally on Mac
  • ./local-dev.sh to test against real Tiger
  • git commit small + often
  • ./deploy.sh to push to production
2026-04-19 01:24:23 +05:30
.agent feat: initial commit with dashboard, docs, and configurations 2026-02-10 20:54:37 +05:30
.claude feat: initial commit with dashboard, docs, and configurations 2026-02-10 20:54:37 +05:30
.clawhub feat: initial commit with dashboard, docs, and configurations 2026-02-10 20:54:37 +05:30
bridge feat(dev): deploy.sh + local-dev.sh + bridge remote mode 2026-04-19 01:24:23 +05:30
canvas feat: initial commit with dashboard, docs, and configurations 2026-02-10 20:54:37 +05:30
commands feat: initial commit with dashboard, docs, and configurations 2026-02-10 20:54:37 +05:30
config feat: initial commit with dashboard, docs, and configurations 2026-02-10 20:54:37 +05:30
dashboard chore: sync pre-existing uncommitted work from migration era 2026-04-18 19:10:47 +00:00
deploy feat: complete Tiger dashboard implementation 2026-04-12 23:27:51 +05:30
docs feat: initial commit with dashboard, docs, and configurations 2026-02-10 20:54:37 +05:30
firecrawl-search feat: initial commit with dashboard, docs, and configurations 2026-02-10 20:54:37 +05:30
memory feat: initial commit with dashboard, docs, and configurations 2026-02-10 20:54:37 +05:30
skills/youtube-full feat: initial commit with dashboard, docs, and configurations 2026-02-10 20:54:37 +05:30
tools feat: initial commit with dashboard, docs, and configurations 2026-02-10 20:54:37 +05:30
.gitignore fix(infra): rebrand, workspace path, model config, chat SSE streaming 2026-04-18 19:10:47 +00:00
AGENTS.md feat: initial commit with dashboard, docs, and configurations 2026-02-10 20:54:37 +05:30
deploy.sh feat(dev): deploy.sh + local-dev.sh + bridge remote mode 2026-04-19 01:24:23 +05:30
HEARTBEAT.md feat: initial commit with dashboard, docs, and configurations 2026-02-10 20:54:37 +05:30
IDENTITY.md feat: initial commit with dashboard, docs, and configurations 2026-02-10 20:54:37 +05:30
local-dev.sh feat(dev): deploy.sh + local-dev.sh + bridge remote mode 2026-04-19 01:24:23 +05:30
MEMORY.md feat: initial commit with dashboard, docs, and configurations 2026-02-10 20:54:37 +05:30
package-lock.json feat: initial commit with dashboard, docs, and configurations 2026-02-10 20:54:37 +05:30
package.json feat: initial commit with dashboard, docs, and configurations 2026-02-10 20:54:37 +05:30
README.md feat: initial commit with dashboard, docs, and configurations 2026-02-10 20:54:37 +05:30
SOUL.md feat: initial commit with dashboard, docs, and configurations 2026-02-10 20:54:37 +05:30
TOOLS.md feat: initial commit with dashboard, docs, and configurations 2026-02-10 20:54:37 +05:30
USER.md feat: initial commit with dashboard, docs, and configurations 2026-02-10 20:54:37 +05:30

Clawd Agent Dashboard

A premium, dark-mode "Command Center" for the Clawd AI Agent.

Dashboard Preview

Overview

The Clawd Dashboard is a centralized interface designed to monitor and interact with the Clawd AI agent. It provides real-time visibility into the agent's memory, logs, scheduled tasks (cron jobs), and capabilities (skills), all wrapped in a sleek, responsive UI.

Features

  • 📊 System Status: Real-time heartbeat monitoring of the clawdbot process.
  • 🧠 Memory Management: View and edit the agent's core memory (MEMORY.md) and daily logs.
  • 🛠️ Skills Registry: Browse, edit, and manage the agent's capabilities and MCP tools.
  • ⏱️ Cron Jobs: detailed view and control over scheduled background tasks.
  • 💬 Chat Interface: Integrated chat window to communicate directly with the agent.
  • 🌗 Dark Mode: Built with a "Slate & Violet" aesthetic optimized for low-light environments.

Tech Stack

Getting Started

Prerequisites

  • Node.js 18+
  • npm or pnpm

Installation

  1. Clone the repository:

    git clone https://github.com/manohar6839/clawd-dashboard.git
    cd clawd-dashboard
    
  2. Install dependencies:

    npm install
    cd dashboard && npm install
    
  3. Configure Environment:

    • Copy example configs:
      cp config/mcporter.example.json config/mcporter.json
      cp config/cron.example.json config/cron.json
      

Running the Dashboard

Start the development server:

npm run dashboard

The dashboard will be available at http://localhost:3000.

Project Structure

clawd/
├── .agent/          # Agent self-knowledge & documentation
├── dashboard/       # Next.js Application
│   ├── src/app/     # App Router Pages (Memory, Skills, Cron, Chat)
│   └── src/components/ # Shared UI Components
├── config/          # Agent configuration (Cron, MCP)
├── memory/          # Agent daily logs
├── tools/           # External tool scripts
└── MEMORY.md        # Core Agent Memory

Contributing

  1. Fork the repository.
  2. Create a feature branch (git checkout -b feature/amazing-feature).
  3. Commit your changes (git commit -m 'feat: Add amazing feature').
  4. Push to the branch (git push origin feature/amazing-feature).
  5. Open a Pull Request.

License

MIT © Manohar Air