โ† All skills
Tencent SkillHub ยท Developer Tools

Sport Mode

Activate "Sport Mode" for high-frequency monitoring (default 3m heartbeat) and auto-cleanup. Use when supervising intense tasks (Codex, builds, migrations).

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Activate "Sport Mode" for high-frequency monitoring (default 3m heartbeat) and auto-cleanup. Use when supervising intense tasks (Codex, builds, migrations).

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, SKILL.md, scripts/sport-mode.sh

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.1

Documentation

ClawHub primary doc Primary doc: SKILL.md 8 sections Open source page

Sport Mode

Temporarily boost heartbeat frequency (default 3m) and inject a monitoring task into HEARTBEAT.md. Perfect for supervising background agents (Codex), long-running builds, or interactive games.

Usage

# Turn ON: Set heartbeat to 3m and set monitoring task sport-mode on --task "Check Codex progress. If done, run sport-mode off." # Custom Interval: Set to 1 minute sport-mode on --task "Game tick" --every "1m" # Turn OFF: Reset heartbeat to 30m and clear HEARTBEAT.md sport-mode off

How it works

ON: Patches ~/.openclaw/openclaw.json (hot-reload) to set heartbeat.every. Writes your task to HEARTBEAT.md with a "Sport Mode Active" header. OFF: Patches config back to 30m (default). Clears HEARTBEAT.md.

1. Set a Finish Line

Unless you want an endless marathon, always define a termination condition in your task. โœ… Good: "Monitor build. If success or fail, run sport-mode off." โŒ Bad: "Monitor build." (Agent might keep reporting "Done" forever until you manually stop it).

2. State Machine in File

For multi-step tasks (like games or staged deployments), let the agent update HEARTBEAT.md itself. Pattern: Read state -> Execute step -> Write new state -> Sleep. This keeps the agent "stateless" (doesn't rely on conversation history context window) but the task "stateful".

3. Use tmux for Visibility

If the monitoring task involves terminal output (e.g., Codex coding, compiling), running the task in a tmux session is ideal. The agent can inspect the pane (tmux capture-pane) without interfering. The user can attach (tmux attach) to watch live.

4. Silence is Golden

For high-frequency modes (e.g., 1m), avoid spamming "Nothing happened". Configure the agent to reply HEARTBEAT_OK (silence) if the status hasn't changed. Only notify the user on milestone completion, errors, or final success.

Implementation Note

This skill uses openclaw config set to safely patch configuration at runtime, triggering a seamless Gateway reload.

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs1 Scripts
  • SKILL.md Primary doc
  • README.md Docs
  • scripts/sport-mode.sh Scripts