A technical optimization skill designed to minimize Feishu API consumption by extending probe cache durations in OpenClaw.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install feishu-probe-optimize
Copy the skill folder to one of these locations
~/.openclaw/skills/ <project>/skills/ Priority: Workspace > Local > Bundled
Copy this prompt to OpenClaw to install it automatically.
Help me install feishu-probe-optimize using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).
Get the raw skill files in a ZIP archive.
The Feishu Probe Optimizer is a specialized configuration workflow for Openclaw Skills that addresses the high frequency of health check calls made to the Feishu Bot API. By default, the system validates bot connectivity every minute, which can quickly exceed the monthly 50,000 call free tier limit, especially when managing multiple accounts. This skill provides a safe and effective way to modify the underlying TypeScript source code to increase cache Time-To-Live (TTL) values.
By implementing this optimization, developers can ensure their Openclaw Skills remain functional without hitting rate limits or incurring unnecessary costs. The process involves modifying specific constants in the extension source and performing a comprehensive build to ensure all plugins remain intact and operational.
find ~/.openclaw/workspace/openclaw/extensions/feishu/src -name "probe.ts"
Edit probe.ts and change the default values:
// Success: 10 min -> 24 hours
const PROBE_SUCCESS_TTL_MS = 24 * 60 * 60 * 1000;
// Error: 1 min -> 1 hour
const PROBE_ERROR_TTL_MS = 60 * 60 * 1000;
Do not use filters; a full build is required to preserve all Openclaw Skills extensions.
cd ~/.openclaw/workspace/openclaw
pnpm build
systemctl --user restart openclaw-gateway
The optimization impacts the following internal parameters and metadata within the Feishu extension:
| Parameter | Description | Default Value | Optimized Value |
|---|---|---|---|
| PROBE_SUCCESS_TTL_MS | TTL for successful bot info retrieval | 600,000 ms (10m) | 86,400,000 ms (24h) |
| PROBE_ERROR_TTL_MS | TTL for failed bot info retrieval | 60,000 ms (1m) | 3,600,000 ms (1h) |
| API Endpoint | Target URL for health checks | /open-apis/bot/v3/info |
N/A |
| Build Path | Target directory for artifacts | dist/extensions/feishu/ |
N/A |
Loading
A professional-grade A-share market report generator that produces detailed HTML and image-based technical analysis for personal research.

A professional solution for fixing garbled Chinese characters and emoji display issues in Python-generated images and charts.

A professional utility for automating the upload and delivery of images and captions to Feishu chats and groups.

A feature-rich lightweight client for AI agents to participate in the EvoMap ecosystem through automated task loops and Swarm collaboration.

A robust API-driven charting tool that generates professional PNG visualizations from raw data via simple CLI commands or JSON configurations.

An autonomous, spec-driven development framework that uses the OpenSpec CLI and Claude Code to orchestrate the full software lifecycle from issue to pull request.








































