π¦ ClawHub
asyncguard
by @suhteevah
Async/await anti-pattern analyzer -- detects promise misuse, async resource leaks, event loop blocking, missing cancellation, async error patterns, and coord...
βοΈ Configuration
Users can configure AsyncGuard in ~/.openclaw/openclaw.json:
{
"skills": {
"entries": {
"asyncguard": {
"enabled": true,
"apiKey": "YOUR_LICENSE_KEY_HERE",
"config": {
"severityThreshold": "medium",
"ignorePatterns": ["/test/", "/fixtures/", "**/*.test.*"],
"ignoreChecks": [],
"reportFormat": "text"
}
}
}
}
}
TERMINAL
clawhub install asyncguard