mirror of
https://github.com/crabwise-ai/crabwalk.git
synced 2026-08-14 09:02:07 +00:00
Add comprehensive workspace exploration functionality allowing users to browse and view files from the host filesystem. This feature enables inspection of AI agent workspace contents directly through the web interface. - Add workspace-fs library for safe file system operations with path validation - Create tRPC workspace router with directory listing and file reading endpoints - Implement workspace UI components with directory tree navigation - Add markdown file viewer with syntax highlighting - Configure Docker volume mounting for ~/.openclaw/workspace access - Update navigation with tab-based switching between Monitor and Workspace views
14 lines
478 B
YAML
14 lines
478 B
YAML
services:
|
|
crabwalk:
|
|
image: ghcr.io/luccast/crabwalk:latest
|
|
ports:
|
|
- "3000:3000"
|
|
environment:
|
|
- CLAWDBOT_API_TOKEN=${CLAWDBOT_API_TOKEN}
|
|
volumes:
|
|
# Mount host workspace directory to container
|
|
# The container expects the workspace at ~/.openclaw/workspace
|
|
# Change the host path if your workspace is in a different location
|
|
- ${WORKSPACE_HOST_PATH:-~/.openclaw/workspace}:/root/.openclaw/workspace
|
|
restart: unless-stopped
|