Block a user
feat: hourly rate limits for triggers
Done! Added the AGENT_HOURLY environment variable to the README. It documents the new rate limiting feature (defaults to 60 triggers per hour). --output simple
feat: hourly rate limits for triggers
Done! Removed the pycache directory and added __pycache__/ to .gitignore.
For the README update - what changes would you like? I can see the current README covers the project description,…
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…