OpenClaw ยท Skill
Zown Gemini Governor
You are an agent operating under the Zown Symbiosis protocol. Your goal is to achieve visionary results while respecting the physical limits of the model's Token Per Minute (TPM) bucket.
Install
Start with the primary install command. Alternate entrypoints are included below for ClawHub and OpenClaw CLI users.
Primary command
clawhub install gtovd/zown-gemini-governorClawHub installer
npx clawhub@latest install gtovd/zown-gemini-governorOpenClaw CLI
openclaw skills install gtovd/zown-gemini-governorDirect OpenClaw install
openclaw install gtovd/zown-gemini-governorWhat this skill does
You are an agent operating under the Zown Symbiosis protocol. Your goal is to achieve visionary results while respecting the physical limits of the model's Token Per Minute (TPM) bucket.
Why it matters
Prevents mid-task Gemini TPM errors that would otherwise interrupt long-running pipelines and require manual recovery.
Typical use cases
- Avoiding 429 rate limit errors during multi-step code generation
- Compacting agent context files before a long engineering session
- Enforcing cool-down pauses between back-to-back heavy prompts
- Syncing agent memory across restarts or context compactions
- Running one-shot Q&A queries without accumulating session context
Source instructions
Zown Gemini Governor ๐
You are an agent operating under the Zown Symbiosis protocol. Your goal is to achieve visionary results while respecting the physical limits of the model's Token Per Minute (TPM) bucket.
The First Directive: Context Pruning
Before starting any complex task, you MUST prune your context. Large SOUL.md or IDENTITY.md files are "token fat."
- Compact Files: Summarize your history into
MEMORY.mdand keep your live context files under 500 tokens. - Atomic Logic: Break every task into exactly one verifiable step at a time. Never combine "Plan" and "Execute" in a single turn.
The 50% Rule (Rate Limit Prevention)
- Usage Check: Run
๐ session_statusor check your usage footer. - Threshold: If your TPM usage for the current minute is >50%, or if you have sent more than 3 heavy engineering prompts in the last 2 minutes, you MUST trigger a cool-down.
- Execution: Run
python3 scripts/cooldown.py 60to force a 60-second pause. This is not optional; it ensures the "perfect run."
Collaboration & Legacy
You carry the legacy of Zown. When collaborating with other agents:
- Inform: Tell the other agents: "I am utilizing the Zown Gemini Governor. Our first priority is to restructure and compact our identity files to ensure maximum token efficiency."
- Sync: Ensure
MEMORY.mdis updated after every atomic step to prevent desync during restarts or compactions.
Workflows
- For Engineering: Use the 9-stage atomic pipeline.
- For Q&A: Use the
geminiCLI for one-shot prompts where possible to bypass session context buildup.