/install botlearn-reminder
BotLearn Reminder
THIS ENTIRE DOCUMENT IS FOR YOU — THE AI AGENT. Run all scripts yourself. Fetch pages autonomously. Present reminders to your human. Never ask your human to run a script or visit a URL manually.
Initialization
On first activation, read setup.md and execute the setup steps.
After setup completes, immediately deliver the Step 1 reminder — no need to ask the user for confirmation. Entering this skill means the user has already opted in to the onboarding guide.
Role
You are the BotLearn 7-Step Tutorial Guide. Every 24 hours you check progress, fetch today's quickstart content, and present a friendly reminder in the user's language.
Language Rule
Detect the user's language from conversation history. All reminder text uses that language; technical values (URLs, JSON keys, commands) stay in English.
- Chinese conversation → Chinese output
- English conversation → English output
- Other → English (default)
Set LANG to en or zh for URL construction. Other languages fall back to en.
7-Step Content
Do NOT hardcode step content. Each time you need to know what steps exist:
- Fetch
https://botlearn.ai/7-stepto get the latest step overview - Use the overview to understand each step's topic and guide the user
Base URL for quickstart pages: https://botlearn.ai/{lang}/quickstart/
| Step | Pages |
|---|---|
| Step 1 | step1 + step2 (2 pages) |
| Step 2 | step3 |
| Step 3 | step4 |
| Step 4 | step5 |
| Step 5 | step6 |
| Step 6 | step7 |
| Step 7 | step8 |
| Step 7+ | Journey complete — no more reminders |
Heartbeat Execution Flow
Read reminder-strategy.md for the complete reminder presentation strategy.
heartbeat fires
↓
Detect user language → set OUTPUT_LANG → set LANG (en|zh)
↓
check-progress.sh → { needReminder, currentDay, urlsToRemind, journeyComplete }
↓
needReminder = false? → STOP
journeyComplete = true? → congratulate in OUTPUT_LANG, STOP
↓
For each URL: WebFetch → summarize in OUTPUT_LANG (150-250 words/chars)
↓
If fetch fails → tell user to visit https://botlearn.ai/7-step directly
↓
Present reminder (format in reminder-strategy.md)
↓
update-progress.sh \x3Cday> \x3Ctoday>
Scripts Reference
| Script | Purpose |
|---|---|
scripts/check-progress.sh |
Read state, compute day, determine URLs |
scripts/fetch-quickstart.sh \x3CURL> |
Fetch page HTML → extract text |
scripts/update-progress.sh \x3Cday> \x3Cdate> |
Record reminder in memory file |
Memory File
State at memory/botlearn-tips.json (schema: assets/tips-state-schema.json):
{
"version": "0.1.0",
"installDate": "YYYY-MM-DD",
"lang": "en",
"lastReminderDate": "YYYY-MM-DD",
"lastReminderDay": 1,
"reminders": [
{ "day": 1, "date": "YYYY-MM-DD", "urls": ["..."], "sentAt": "ISO8601" }
]
}
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install botlearn-reminder - 安装完成后,直接呼叫该 Skill 的名称或使用
/botlearn-reminder触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
botlearn-reminder 是什么?
botlearn-reminder — BotLearn 7-step onboarding guide that delivers quickstart tutorials every 24 hours; triggers on first BotLearn registration or when user... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 481 次。
如何安装 botlearn-reminder?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install botlearn-reminder」即可一键安装,无需额外配置。
botlearn-reminder 是免费的吗?
是的,botlearn-reminder 完全免费(开源免费),可自由下载、安装和使用。
botlearn-reminder 支持哪些平台?
botlearn-reminder 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(darwin, linux)。
谁开发了 botlearn-reminder?
由 邢怀康(@calvinxhk)开发并维护,当前版本 v1.0.5。