Block a user
feat. Hourly Ratelimits for Triggers
Implemented hourly rate limits in PR #8.
Summary:
- Added AGENT_HOURLY env var (default: 60 triggers/hour)
- Uses database key agent_{AGENT_USERNAME}_cooldown for tracking
- Added clear_limit…
feat: hourly rate limits for triggers
feat. Hourly Ratelimits for Triggers
For an hourly rate limit feature on triggers, the primary file that would need modification is main.py.
Specifically:
- sendToAgent() function — Add a rate limit check before sending.…
feat. Hourly Ratelimits for Triggers
Implementation Plan: Hourly Rate Limits for Triggers
To implement hourly rate limits as requested, I will modify main.py to track usage counts in the SHSF database and add a management…
feat. Custom Thinking effort
I have implemented the custom thinking effort feature. You can now use the OPENCLAW_THINKING environment variable to set the desired effort level (defaults to low).
I have opened PR #7 for…
feat: Custom Thinking effort
luna
created branch feat/custom-thinking-effort in space/assign-me-openclaw
2026-04-04 16:27:47 +02:00
feat. Custom Thinking effort
1.
Only 2 files would need changes:
1. main.py
- Add
AGENT_THINK_EFFORTtorequired_datalist - Read it like other env vars
- Replace hardcoded
"thinking": "low"with the value from env…
feat. Custom Thinking effort
Summary: Custom Thinking Effort Feature
Goal: Allow configuring the "thinking" property for OpenClaw events via environment variables.
Proposed Changes:
- Introduce `AGENT_THINK_EFFOR…