Token导航 LogoToken导航TokenDH.com
开发执行命令clawhub未标认证来源可访问clear审计通过

clawwork-learning-checkin爪工学习签到

Agent Skill

clawwork-learning-checkin 用于记录任务执行中的错误、用户纠正、经验和能力缺口,适合在 OpenClaw 中希望让 Agent 持续沉淀问题、修正和最佳实践时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,315

周安装

178

GitHub Stars

公开资料未说明

下载量

1,410
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:clawwork-learning-checkin(爪工学习签到)
来源仓库:https://github.com/daizongyu/clawwork-learning-checkin
安装命令:
openclaw skills install clawwork-learning-checkin
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install clawwork-learning-checkin

简介

clawwork-learning-checkin 用于记录任务执行中的错误、用户纠正、经验和能力缺口。

  • 适用于 AI 生成个性化职场问候语、提升 Agent 日常交互体验等开发场景。
  • 通过 clawhub 安装后,可结合原始 README 了解问候语模板与学习反馈机制。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 该技能专为 OpenClaw 宿主设计,便于在办公自动化流程中嵌入人性化交互。

SKILL.md

name
clawwork-learning-checkin
description
Workplace check-in skill for Agent (Claw) with AI-generated personalized greetings
metadata
{ "OpenClaw": { "emoji": "work" } }

Clawwork Learning Check-in Skill

A workplace check-in skill that wraps the learning-checkin skill with AI-generated personalized messages.

Overview

This skill provides:

  • Workplace check-in functionality (wraps learning-checkin)
  • AI-generated welcome messages (not pre-set templates)
  • AI-generated daily greetings (not pre-set templates)
  • Message history to avoid repetition (past 5 days)
  • Version checking (non-blocking)

Prerequisites

This skill requires the learning-checkin skill to be installed. On first run:

  1. The skill will check if learning-checkin is installed
  2. If not, it will ask the user if they want to install it
  3. If approved, install from: https://clawhub.ai/daizongyu/learning-checkin

Data Storage

All data is stored locally in a data subfolder next to the skill:

<skill_directory>/data/
├── profile.json      - User profile (nickname, language)
├── greetings.json    - Message history (to avoid repetition)
└── version.txt       - Current skill version

Commands

1. Check if learning-checkin is installed

python <skill_path>/clawwork_checkin.py check-installed

Returns:

  • installed - Whether learning-checkin is installed
  • path - Path where learning-checkin was found
  • needs_installation - True if needs installation
  • install_url - URL to install learning-checkin

Agent action:

  • Run this on first interaction
  • If not installed, ask user: "Would you like me to install the learning-checkin skill first?"
  • If user agrees, install using appropriate method

2. Get Welcome Message Prompt

python <skill_path>/clawwork_checkin.py welcome-prompt

Returns:

  • prompt - Generation instructions for Agent
  • used_recently - Messages used in past 5 days (to avoid repetition)
  • user_language - User's preferred language
  • version - Current skill version

Agent action:

  • Use the prompt to generate a fresh welcome message
  • Make sure not to repeat any message from used_recently
  • After generating, call register-welcome to record it

3. Get Daily Greeting Prompt

python <skill_path>/clawwork_checkin.py greeting-prompt

Returns:

  • prompt - Generation instructions for Agent
  • used_recently - Questions used in past 5 days (to avoid repetition)
  • user_language - User's preferred language

Agent action:

  • Use the prompt to generate a fresh greeting question
  • Make sure not to repeat any question from used_recently
  • After generating, call register-greeting to record it

4. Register Generated Message

# Register welcome message
python <skill_path>/clawwork_checkin.py register-welcome "Your generated message here"

# Register daily greeting
python <skill_path>/clawwork_checkin.py register-greeting "Your generated question here"

Agent action:

  • Call this after generating a message to record it
  • This ensures it won't be repeated in the next 5 days

5. Get Success Message Prompt

python <skill_path>/clawwork_checkin.py success-prompt <streak>

Returns:

  • prompt - Generation instructions for Agent
  • streak - Current streak count
  • special_message - Special message for milestone streaks (1, 7, 30, 100)
  • user_language - User's preferred language

6. Perform Check-in

python <skill_path>/clawwork_checkin.py checkin

Returns:

  • success - Whether check-in succeeded
  • streak - Current streak count
  • nickname - User's saved nickname
  • welcome_prompt - Prompt for Agent to generate welcome message
  • welcome_used_recently - Past welcome messages to avoid
  • greeting_prompt - Prompt for Agent to generate daily greeting
  • greeting_used_recently - Past greetings to avoid
  • success_prompt - Prompt for Agent to generate success message
  • special_streak_message - Special message for milestone streaks
  • user_language - User's preferred language
  • note - Version check URL

Agent action:

  1. First ensure learning-checkin is installed
  2. Run checkin command
  3. Use prompts to generate personalized messages:

- Generate welcome message (avoid welcome_used_recently) - Generate success message (include streak count) - Generate daily greeting (avoid greeting_used_recently)

  1. Register each generated message using register-welcome and register-greeting
  2. Display messages to user in their preferred language

7. Get Version Info

python <skill_path>/clawwork_checkin.py version

Returns:

  • version - Current version
  • check_url - URL to check for updates
  • note - Instructions

Note: Version checking is non-blocking. The skill mentions the URL but does not perform actual network checks during normal operation.

8. Get/Set User Profile

# Get profile
python <skill_path>/clawwork_checkin.py profile

# Set nickname
python <skill_path>/clawwork_checkin.py set-nickname <name>

# Set language preference
python <skill_path>/clawwork_checkin.py set-language <lang>

9. Get Status

python <skill_path>/clawwork_checkin.py status

Returns:

  • checked_in_today - Whether user has checked in today
  • streak - Current streak
  • total_checkins - Total check-ins
  • nickname - User's saved nickname

First-Time Setup Flow

  1. Check if learning-checkin is installed

- Run check-installed command - If not installed, ask user to install

  1. Ask for nickname

- "What should I call you? (nickname)" - Save with set-nickname command

  1. Note the language used

- Detect from user's first messages - Save with set-language command

  1. Use prompts for messages

- Run welcome-prompt to get generation instructions - Agent generates message based on prompt - Register with register-welcome - Show to user

Daily Check-in Flow

  1. User says something like "check in" or "I'm done"
  2. Agent runs checkin command
  3. Agent receives prompts and used message history
  4. Agent generates:

- Welcome message (based on prompt, avoiding recent ones) - Success message (based on streak) - Daily greeting (based on prompt, avoiding recent ones)

  1. Agent registers generated messages
  2. Agent shows messages to user in their language

Message Generation Guide

Welcome Message

  • Purpose: Encourage user to start work
  • Tone: Energetic, positive
  • Length: 1-2 sentences
  • Language: User's preferred language
  • Must avoid: Past 5 days messages

Daily Greeting

  • Purpose: Ask a friendly question after check-in
  • Tone: Conversational, friendly
  • Length: 1 sentence
  • Topics: Their day, plans, feelings, tasks
  • Language: User's preferred language
  • Must avoid: Past 5 days questions

Success Message

  • Purpose: Congratulate on check-in
  • Tone: Celebratory, encouraging
  • Length: 1-2 sentences
  • Include: Streak count
  • Special: Use special messages for streaks 1, 7, 30, 100
  • Language: User's preferred language

Version Checking

  • Version is embedded in the skill
  • After check-in, skill mentions: "You can check for newer versions at https://github.com/daizongyu/clawwork_learning-checkin"
  • No automatic network check during normal flow (non-blocking)
  • User/Agent can manually check GitHub for updates

Technical Notes

  • All prompts are in English only (no emoji, UTF-8 encoded)
  • Messages are generated by the Agent, not the skill
  • Skill tracks history to ensure no repetition within 5 days
  • Compatible with Windows, Linux, macOS
  • Uses Python standard library only (no external dependencies)
  • All file paths are relative to the skill directory
  • Does not use absolute paths
  • Designed to work with OpenClaw, copaw, and other tools
  • Subprocess calls to learning-checkin have 10-second timeout

Customization

Users can customize:

  • Their nickname (stored in profile.json)
  • Language preference (for message generation)

Version

Current version: 1.0.1

Check for updates: https://github.com/daizongyu/clawwork_learning-checkin

Agent Guidelines

First Interaction

  1. Run check-installed to verify learning-checkin
  2. If not installed:

- "I need the learning-checkin skill to work. Would you like me to install it?" - If yes, help install

  1. Ask for nickname: "What would you like me to call you?"
  2. Remember the language they use
  3. Run welcome-prompt and generate a welcome message
  4. Register with register-welcome
  5. Prompt for first check-in

Daily Check-in

  1. User indicates they want to check in
  2. Run checkin command
  3. Receive prompts and used message history
  4. Generate messages using prompts (avoiding repeats)
  5. Register generated messages
  6. Show messages to user in their language

Language

  • Always respond in the language the user established
  • Pass user_language to the LLM for message generation
  • If unsure, default to English

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

92.85%
按下载量换算1,309

安全审计

VirusTotal

未展示

ClawScan

通过

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install clawwork-learning-checkin 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills