Install
openclaw skills install enhanced-modesProvides three modes—Explore (read-only), Plan (analyze before acting), and Verify (check results)—plus feature flags to toggle capabilities dynamically.
openclaw skills install enhanced-modesThree working modes: Explore (read-only), Plan (think before act), Verify (check results). Plus feature flags for toggling capabilities.
Inspired by Claude Code source leak analysis (v2.1.88)
npx clawhub install enhanced-modes
# or
npx clawhub install <this-skill-repo>
| Command | Function |
|---|---|
/mode explore | Switch to read-only exploration mode |
/mode plan | Switch to planning mode (think before acting) |
/mode verify | Switch to verification mode (check after doing) |
/mode normal | Return to normal mode |
/features | Show available feature flags |
/features enable <name> | Enable a feature |
/features disable <name> | Disable a feature |
When user types /mode explore or asks to "search only":
/mode normalWhen user types /mode plan or asks to "plan first":
/mode normalWhen user types /mode verify or asks to "verify results":
/mode normalFeatures can be enabled/disabled dynamically:
| Feature | Default | Description |
|---|---|---|
deep_thinking | true | Enable extended reasoning for complex problems |
auto_memory | false | Automatically consolidate memories periodically |
coordinator_mode | false | Enable multi-worker coordination |
wal_protocol | true | Write corrections/decisions before responding |
working_buffer | true | Log exchanges in danger zone (>60% context) |
explore_agent | true | Enable built-in Explore Agent |
plan_agent | true | Enable built-in Plan Agent |
verify_agent | false | Enable built-in Verification Agent |
proactive_checkins | false | Periodic proactive suggestions |
autonomous_crons | false | Background autonomous tasks |
/features # Show all features
/features enable auto_memory
/features disable verify_agent
When auto_memory feature is enabled:
When autonomous_crons feature is enabled:
| Type | Trigger | Execution |
|---|---|---|
systemEvent | Timer fires | Prompt to main session |
isolated agentTurn | Timer fires | Spawn sub-agent |
skills/enhanced-modes/
├── SKILL.md # This file
└── assets/
└── SESSION-STATE.md # Mode and feature state
MIT - Free to use, modify, distribute