Install
openclaw skills install @liuwenqi123123/restore-workbuddy-hintsRestore WorkBuddy UI hints and tips that were dismissed via the '不再显示' button. Use when the user reports that an in-app tip or prompt bar has disappeared after clicking '不再显示', or when the user wants to bring back hidden WorkBuddy prompts. Triggers: 提示条不见了, 不再显示后怎么恢复, 关闭的提示怎么重新显示, restore dismissed hints.
openclaw skills install @liuwenqi123123/restore-workbuddy-hints恢复 WorkBuddy 界面中被「不再显示」关闭的提示条 / 功能引导。
WorkBuddy 的提示条(如"批量创建自动化任务太麻烦?")右上角提供「不再显示」按钮。
点击后,该提示条被记录到 ~/.workbuddy/user-state.json 的 tipShowHistory 字段中,
之后该提示条永久隐藏。此技能通过清除该记录来恢复被关闭的提示条。
Ask the user which approach they prefer:
Run the bundled script from the skill directory. The script path is located under
~/.workbuddy/skills/restore-workbuddy-hints/scripts/restore_hints.py.
Use the managed Python runtime:
C:/Users/USERNAME/.workbuddy/binaries/python/envs/default/Scripts/python.exe \
~/.workbuddy/skills/restore-workbuddy-hints/scripts/restore_hints.py \
--list | --all | --key HINT_KEY
Options:
| Flag | 说明 |
|---|---|
--list | 列出所有已被关闭的提示条(查看 key 名称) |
--all | 恢复所有已被关闭的提示条 |
--key NAME | 恢复指定 key 的提示条 |
After the script runs successfully, instruct the user:
~/.workbuddy/user-state.json 是本地存储的,不同账号、不同电脑的配置各自独立tipShowHistory 字段,不会影响其他设置如果 Python 脚本无法运行,也可以手动恢复:
%USERPROFILE%\.workbuddy 回车user-state.json"tipShowHistory" 的值改为空对象 {}:
"tipShowHistory": {}
Executable Python script for listing and restoring dismissed hints. No external dependencies required — uses only Python standard library.
Supports three modes:
--list — List all dismissed hints--all — Clear entire tipShowHistory--key NAME — Restore a specific hint by its key name