Install
openclaw skills install conversation-flow-monitorMonitors and prevents conversation flow issues by implementing robust error handling, timeouts, and recovery mechanisms for reliable agent interactions.
openclaw skills install conversation-flow-monitorPrevents conversations from getting stuck by implementing comprehensive error handling, timeout management, and recovery strategies.
Conversations frequently get stuck due to:
This skill provides:
Automatically validates SKILL.md files have proper YAML front matter before installation.
Wraps all tool calls with timeout protection and error recovery.
Monitors conversation flow and detects potential stuck states.
Provides alternative approaches when primary methods fail.
Logs detailed diagnostics for troubleshooting conversation issues.
# Validate environment before starting complex workflows
validate_skill_files()
check_system_dependencies()
# Instead of direct tool calls
result = safe_execute_tool(
tool_name="browser_use",
params={"action": "open", "url": "https://example.com"},
timeout=30,
retries=2
)
# Periodic health check during long conversations
if conversation_health_check():
continue_normal_operation()
else:
initiate_recovery_protocol()
.learnings/ERRORS.mdThis skill is automatically available when installed in the active_skills directory.
| Error Type | Detection Method | Recovery Strategy |
|---|---|---|
| Skill Registration | YAML front matter validation | Auto-fix missing fields |
| Browser Hang | Timeout monitoring | Switch to alternative browser method |
| File Not Found | Pre-operation path validation | Create missing directories/files |
| Network Timeout | Connection timeout enforcement | Retry with exponential backoff |
| Memory Issues | Resource usage monitoring | Cleanup and restart lightweight operations |