Follow Builders Sidecar
by @amortalsodyssey
OpenClaw-only sidecar for the original follow-builders skill. Use when the user wants to take over scheduling and delivery without modifying the upstream ski...
clawhub install follow-builders-sidecarπ About This Skill
name: follow-builders-sidecar description: OpenClaw-only sidecar for the original follow-builders skill. Use when the user wants to take over scheduling and delivery without modifying the upstream skill, configure digest delivery, inspect takeover status, or roll back to the original cron. homepage: https://github.com/AMortalsOdyssey/follow-builders-sidecar metadata: clawdbot: requires: bins: - node - python3 - openclaw files: - README.md - README.zh-CN.md - SKILL.md - assets/* - config/* - prompts/* - scripts/* config: stateDirs: - .follow-builders-sidecar example: >- Reads ~/.follow-builders/config.json once during takeover, reuses OpenClaw-configured delivery accounts or optional local Feishu app credentials, and writes ~/.follow-builders-sidecar/config.json plus state.json.
Follow Builders Sidecar
This skill is the external delivery/scheduling layer for the original
follow-builders skill.
It does not patch the upstream repo. It only:
Runtime requirements
This skill expects:
node for all sidecar scriptspython3 for avatar circle-croppingopenclaw for cron inspection, job takeover, and message deliveryIt also reads and writes local files during normal operation:
~/.follow-builders/config.json once during takeover~/.follow-builders-sidecar/config.json~/.follow-builders-sidecar/state.json~/.follow-builders-sidecar/credentials.json for local-only direct Feishu app credentialsWhen to use this skill
Use this skill when the user asks to:
follow-buildersPrimary commands
Takeover / setup
Before running setup, ask the user which Feishu card mode they want:
1. Reuse an existing OpenClaw Feishu account 2. Configure a local direct Feishu app for this sidecar
If the user chooses direct Feishu app mode, collect:
appIdappSecretchatIddomain (feishu by default, lark when needed)Run:
node scripts/sidecar-setup.js
Optional flags:
--driver openclaw_announce|feishu_card--channel --to --account --feishu-mode openclaw_account|direct_credentials--feishu-account --feishu-chat-id --feishu-app-id --feishu-app-secret --feishu-domain feishu|lark--avatar-fallback-account Configure
Run:
node scripts/sidecar-configure.js ...
Common flags:
--language zh|en|bilingual--timezone --frequency daily|weekly--weekly-day monday|...|sunday--driver openclaw_announce|feishu_card--channel --to --account --feishu-mode openclaw_account|direct_credentials--feishu-account --feishu-chat-id --feishu-app-id --feishu-app-secret --feishu-domain feishu|larkImportant:
Status
Run:
node scripts/sidecar-status.js
Rollback
Run:
node scripts/sidecar-rollback.js --reenable-original
Use --reenable-original only when the user explicitly wants to restore the original cron.
Manual test run
To test the pipeline without sending anything:
node scripts/run-sidecar.js --skip-delivery
Delivery rules
openclaw_announcefeishu_cardopenclaw_account: reuse a Feishu app already configured in OpenClaw
- direct_credentials: store a local-only Feishu appId/appSecret/chatId for this sidecar
daily: one successful send per local dayweekly: only on the configured weekday, one successful send per weekUpstream compatibility rules
The upstream follow-builders skill may evolve beyond the current three feeds.
When working with this sidecar, always treat upstream evolution as a first-class concern:
1. Before changing sidecar compatibility logic, inspect the upstream SKILL.md.
2. Inspect the upstream repo root for all feed-*.json files, not just:
- feed-x.json
- feed-podcasts.json
- feed-blogs.json
3. If a new upstream feed appears, do not silently ignore it.
4. First determine whether the new feed can be handled by:
- an existing adapter
- a generic pass-through adapter
- or a new dedicated adapter that must be added
5. If the sidecar cannot safely interpret the new feed schema yet, explicitly surface that limitation to the user instead of pretending nothing changed.
Design intent:
SKILL.md is for agent/operator understandingDo not rely on prose alone for runtime support. A note in SKILL.md helps the agent understand what to inspect, but actual support for a new feed still requires code or schema-level compatibility logic.
External endpoints
The sidecar may contact these external services:
https://api.github.com/ to discover upstream feed files and latest relevant commitshttps://raw.githubusercontent.com/ to load upstream feed JSON and promptshttps://publish.twitter.com/oembed to expand quoted tweetsconfig/default-sources.json to repair episode linkshttps://unavatar.io/ to fetch public avatar imageshttps://open.feishu.cn/open-apis/ or https://open.larksuite.com/open-apis/ when Feishu card delivery is enabledSecurity and privacy
follow-builders repo.~/.follow-builders-sidecar/credentials.json and are not intended for repository storage.~/.follow-builders-sidecar/.Trust statement
Installing this skill means allowing it to read the user's local
follow-builders config once during takeover, call the upstream public feed
sources, reuse OpenClaw-configured delivery accounts or optional local direct
Feishu credentials, and optionally send digest data to OpenClaw or Feishu. Only
install it if you trust that behavior.
Safety rules
follow-builders repo during normal operation