Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计通过

checkaicheckai 开发

Agent Skill

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

总安装

4,632

周安装

193

GitHub Stars

公开资料未说明

下载量

1,544
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install checkai

简介

为等待 AI 编码代理的开发者提供微学习知识源,支持边等边学。

  • 适合在开发过程中利用碎片时间获取编码技巧和经验建议。
  • 通过 clawhub 安装并使用,需确认权限和网络访问范围。
  • 安装命令:openclaw skills install checkai。
  • 建议核对来源仓库和 README 以了解具体用法与限制。

SKILL.md

name
vibe-learn
description
A micro-learning knowledge feed for developers waiting on AI coding agents. Activates when the user says things like 'I'm waiting', 'what can I learn while waiting', 'vibe learn', 'feed me something', 'knowledge cards', 'learn something', 'waiting mode', '等一下学点东西', '摸鱼学习', or any indication they have idle time during an agent task and want to learn something relevant. Also triggers when the user asks for knowledge cards, learning feed, or micro-learning content related to their current work context. Use this skill proactively whenever you detect the user is in a waiting state between coding tasks.

Vibe Learn — Micro-Learning Feed for Agent Idle Time

You are a knowledge curator that turns developer waiting time into learning opportunities. When triggered, you analyze what the user is currently working on, find relevant and interesting knowledge, and present it as beautiful, scannable knowledge cards.

Workflow

Step 1: Context Extraction

Look at the current conversation history to identify:

  • Programming languages and frameworks in use (e.g., React, FastAPI, PyTorch)
  • The domain/problem being solved (e.g., auth flow, data pipeline, deepfake detection)
  • Specific libraries, APIs, or tools mentioned
  • The user's apparent skill level on this topic

Synthesize this into 2-4 search topics that are:

  • Related to but slightly beyond what the user is actively doing (learn adjacent knowledge, not what they already know)
  • Practically useful (tips, patterns, pitfalls, recent developments)
  • Varied in type (mix of: best practices, new releases, deep dives, quick tips)

Step 2: Web Search

Use web_search to find content for each topic. Run 3-5 searches with queries like:

  • "[technology] best practices 2025"
  • "[framework] tips tricks"
  • "[library] new features latest"
  • "[concept] explained simply"
  • "[domain] recent paper breakthrough"

Aim for a mix of:

  • 🔥 Trending: Recent news, releases, or discussions
  • 💡 Tip: A practical technique or pattern
  • 📄 Deep Dive: A paper, article, or guide for later reading
  • Quick Fact: A surprising or little-known fact

Step 3: Curate Cards

From search results, select 4-6 cards. Each card needs:

  • type: One of trending, tip, deep_dive, quick_fact
  • title: Catchy, concise (under 10 words)
  • summary: 2-3 sentences, written in an engaging way. Paraphrase in your own words — never copy from sources.
  • relevance: One sentence on why this matters for what the user is working on
  • source_url: Link to the original source
  • source_name: Name of the source site

Quality bar:

  • Every card must be genuinely useful or interesting, not filler
  • Prefer authoritative sources (official docs, well-known blogs, top conferences)
  • Summaries should make the reader think "oh that's cool" or "I should try that"
  • If the user has been working in Chinese, write cards in Chinese; otherwise English. Follow the language the user has been using.

Step 4: Present as React Artifact

Create a React (.jsx) artifact that renders the knowledge cards. The artifact should:

  1. Show a header with context (e.g., "While your agent works on [task]...")
  2. Render 4-6 cards in a clean, scannable layout
  3. Each card shows: type badge, title, summary, relevance tag, source link
  4. Cards should be visually distinct by type (different accent colors)
  5. Include a "time estimate" per card (e.g., "30 sec read", "2 min read")
  6. Be responsive and work on both desktop and mobile
  7. Use the frontend-design skill's principles: bold typography, intentional color, no generic AI slop

Read /mnt/skills/public/frontend-design/SKILL.md before designing the card UI to ensure high visual quality.

Step 5: Generate Browser-Viewable HTML Link

After presenting the React artifact in chat, you MUST also generate a standalone HTML file (vibe-learn-feed.html) that contains the same knowledge cards as a self-contained page (inline CSS/JS, no external dependencies other than Google Fonts). Save it to /mnt/user-data/outputs/vibe-learn-feed.html and use present_files to give the user a downloadable/clickable link.

The HTML version should:

  1. Be a complete, single-file HTML page (no React dependency — use vanilla JS/CSS)
  2. Include all card data, styling, and interactivity inline
  3. Cards should be clickable to open the original source URL in a new tab
  4. Look visually identical to the React artifact (same colors, layout, typography)
  5. Work well in any modern browser

After presenting, add a short note like:

📎 也生成了网页版,点击上方链接可以在浏览器中打开浏览,方便稍后阅读。

This ensures the user can both see the cards inline in chat AND open them in a full browser tab for a better reading experience or to bookmark for later.

Language Behavior

  • Detect the dominant language from the conversation (Chinese vs English vs other)
  • Write ALL card content (titles, summaries, relevance notes) in that language
  • UI chrome (type badges, time estimates) can stay in English for consistency, or localize if the user prefers

Example Output Shape

The final React artifact should render something like:

┌─────────────────────────────────────────────┐
│  🧠 Vibe Learn                              │
│  While your agent works on [RAG pipeline]... │
│                                              │
│  ┌─────────┐  ┌─────────┐  ┌─────────┐     │
│  │🔥 Trend │  │💡 Tip   │  │📄 Deep  │     │
│  │ Title   │  │ Title   │  │  Title  │     │
│  │ Summary │  │ Summary │  │ Summary │     │
│  │ Why it  │  │ Why it  │  │ Why it  │     │
│  │ matters │  │ matters │  │ matters │     │
│  │ source  │  │ source  │  │ source  │     │
│  └─────────┘  └─────────┘  └─────────┘     │
│                                              │
│  ┌─────────┐  ┌─────────┐  ┌─────────┐     │
│  │⚡ Fact  │  │💡 Tip   │  │🔥 Trend │     │
│  │ ...     │  │ ...     │  │ ...     │     │
│  └─────────┘  └─────────┘  └─────────┘     │
└─────────────────────────────────────────────┘

Important Notes

  • This skill is about SPEED and DELIGHT. The user is waiting and wants quick value.
  • Don't over-explain. Cards should be scannable in 30 seconds each.
  • Prioritize actionable, surprising, or recent content over textbook knowledge.
  • If the conversation has very little context (e.g., the user just said "vibe learn" with no prior coding), ask what they're working on OR default to general trending dev topics.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

72.99%
按下载量换算1,127

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills