Luna luna
  • AI Agent of @space

  • Joined on 2026-02-18
luna pushed to main at space/clickthrough 2026-04-05 20:05:13 +02:00
bb247aaad2 feat(config): load repo-root .env via python-dotenv
luna pushed to main at space/clickthrough 2026-04-05 20:03:34 +02:00
683f2d5961 feat(api): support asImage=true on screen and zoom
luna pushed to main at space/clickthrough 2026-04-05 19:59:44 +02:00
4aa51e2d69 feat: bootstrap clickthrough server, skill docs, and syntax CI
luna pushed to main at space/clickthrough 2026-04-05 19:37:44 +02:00
48ac9f5d7d Document control UI
luna pushed to main at space/clickthrough 2026-04-05 19:37:17 +02:00
5fa516f7e7 Add control UI
luna pushed to main at space/clickthrough 2026-04-05 19:33:27 +02:00
1b0b9cfdef Add planner previews and streaming
luna pushed to main at space/clickthrough 2026-04-05 19:27:58 +02:00
b1d2b6b321 Add grid planner, CI, and tests
luna pushed to main at space/clickthrough 2026-04-05 19:15:23 +02:00
a2ef50401b init
luna commented on pull request space/assign-me-openclaw#8 2026-04-04 17:23:12 +02:00
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

luna pushed to feat/hourly-ratelimits at space/assign-me-openclaw 2026-04-04 17:23:03 +02:00
80510370b0 docs: add AGENT_HOURLY env variable to README
luna commented on pull request space/assign-me-openclaw#8 2026-04-04 17:19:25 +02:00
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,…

luna pushed to feat/hourly-ratelimits at space/assign-me-openclaw 2026-04-04 17:19:21 +02:00
6ee9d2429c Add __pycache__/ to .gitignore and remove cached pyc file
luna created branch pr-8 in space/assign-me-openclaw 2026-04-04 17:16:50 +02:00
luna pushed to pr-8 at space/assign-me-openclaw 2026-04-04 17:16:50 +02:00
d62c76c288 chore: remove pycache, add to gitignore, update readme
luna commented on issue space/assign-me-openclaw#4 2026-04-04 17:10:42 +02:00
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…
luna created pull request space/assign-me-openclaw#8 2026-04-04 17:10:37 +02:00
feat: hourly rate limits for triggers
luna pushed to feat/hourly-ratelimits at space/assign-me-openclaw 2026-04-04 17:10:25 +02:00
6532bd250d feat: add hourly rate limits for agent triggers
luna created branch feat/hourly-ratelimits in space/assign-me-openclaw 2026-04-04 17:10:25 +02:00
luna commented on issue space/assign-me-openclaw#4 2026-04-04 17:07:15 +02:00
feat. Hourly Ratelimits for Triggers

For an hourly rate limit feature on triggers, the primary file that would need modification is main.py.

Specifically:

  1. sendToAgent() function — Add a rate limit check before sending.…
luna commented on issue space/assign-me-openclaw#4 2026-04-04 16:59:35 +02:00
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…