feat: trash sweeper + stuck-run status JSON for Studio#10
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds two background tasks:
Trash sweeper: Hourly cleanup of stale .deleted., .reset., .checkpoint., oversized .trajectory.jsonl, and orphaned .lock files in ~/.openclaw/agents//sessions/. All thresholds configurable via TAAS_AFFINITY_* env vars.
Stuck-run status writer: Every 30s emits ~/.openclaw/alien-studio/runs-status.json with active/warn/stuck/zombie classification based on lock-file mtime ages (5/15/60 min thresholds). The Studio reads this file via its existing filesystem-backed API to render a Stuck Runs panel with abort buttons (no gateway RPC needed — sidesteps the extraHandlers snapshot bug).
Both features hook into register(api) via startBackgroundTasks(). Time are randomised/staggered to avoid all gateway processes acting at once.