| openclaw-setup-max | ||
| .gitignore | ||
| README.md | ||
OpenClaw Setups Monorepo
This repository contains two OpenClaw setup variants:
openclaw-setup-max/: Local + paid model workflow (manual/scheduled paid/free switching, Ollama fallback, budget guard).openclaw-setup-copilot/: Copilot-first workstation template (Copilot guardrails, profile scheduling, auth/policy watchdogs).
Which Folder Should I Use?
- Use
openclaw-setup-max/if you want a local-first setup with optional paid model usage. - Use
openclaw-setup-copilot/if the target machine should run primarily on a Copilot account with strict guardrails.
Quick Start
Max setup
cd /Volumes/Data/openclaw-setups/openclaw-setup-max
cat README.md
Primary docs:
openclaw-setup-max/README.mdopenclaw-setup-max/PRD.md
Copilot setup
cd /Volumes/Data/openclaw-setups/openclaw-setup-copilot
cat README.md
Primary docs:
openclaw-setup-copilot/README.mdopenclaw-setup-copilot/PRD.mdopenclaw-setup-copilot/docs/operations/AI_SETUP_HANDOFF.mdopenclaw-setup-copilot/docs/operations/WORK_SETUP_CHECKLIST.md
Repository Structure
openclaw-setup-max/openclaw-setup-copilot/
Inside each setup folder:
AGENTS.md: runtime/agent rules for that setupREADME.md: operator guidePRD.md: requirements and design intentsetup/: bootstrap scriptsscripts/: daily operations and guard installersconfig/: editable JSON policies/profiles/schedulesdocs/context/: persona and context filesdocs/operations/: runbooks and troubleshootingmemory/: retained session notes
Git Workflow
- Default collaboration branch:
develop - Current remote:
origin(ssh://git@192.168.1.128:220/TopDogLabs/OpenClaw-Setup.git)
Standard flow:
git checkout develop
git pull --rebase
# make changes
git add .
git commit -m "your message"
git push