Use this skill when a user wants to run timed focus sessions (Pomodoro technique) from the terminal.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install makeovern或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install makeovern⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/makeovern/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: pomodoro description: Use this skill when a user wants to run timed focus sessions (Pomodoro technique) from the terminal. ---
Run a 25-minute focus block followed by a 5-minute break. After 4 blocks, take a 15-minute break.
echo "🍅 Focus started at $(date +%H:%M)" && sleep 1500 && osascript -e 'display notification "Time for a break!" with title "Pomodoro"' && echo "Break time at $(date +%H:%M)"
MINS=15 && echo "Focus: ${MINS}m started at $(date +%H:%M)" && sleep $((MINS * 60)) && echo "Done at $(date +%H:%M)"
echo "$(date +%Y-%m-%d) $(date +%H:%M) - 25min focus" >> ~/pomodoro.log
grep "$(date +%Y-%m-%d)" ~/pomodoro.log 2>/dev/null || echo "No sessions today."安装 make a recipe 后,可以对 AI 说这些话来触发它
Help me get started with make a recipe
Explains what make a recipe does, walks through the setup, and runs a quick demo based on your current project
Use make a recipe to use this skill when a user wants to run timed focus sessions (Pomod...
Invokes make a recipe with the right parameters and returns the result directly in the conversation
What can I do with make a recipe in my developer & devops workflow?
Lists the top use cases for make a recipe, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/makeovern/ 目录(个人级,所有项目可用),或 .claude/skills/makeovern/(项目级)。重启 AI 客户端后,用 /makeovern 主动调用,或让 AI 根据上下文自动发现并使用。
make a recipe 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
make a recipe 可免费安装使用。请查阅仓库了解许可证信息。
Use this skill when a user wants to run timed focus sessions (Pomodoro technique) from the terminal.
make a recipe 属于「Developer & DevOps」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my developer & devops tasks using make a recipe
Identifies repetitive steps in your workflow and sets up make a recipe to handle them automatically