OpenClaw advanced operator lane
Git checkout vs package install
Use this page when you need to decide whether source-oriented repo work is truly justified.
Most important distinctionA git checkout is not just “newer updates.” It adds repo state, build steps, and a more development-shaped recovery path.
Choose package install when
Keep the default path boring on purpose
- You want dependable daily use
- Stable or beta is enough
- You do not need to work from main
- This gateway should stay reliable
Choose git checkout when
Use source workflows only for source-level jobs
- You intentionally want dev
- You are contributing or validating unreleased behavior
- You need a local checkout for deeper debugging
- You want a separate experimental environment