← 返回 Skills 市场
skjack

Vibe-Learning

作者 skJack · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
155
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install checkai
功能描述
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 w...
使用说明 (SKILL.md)

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.
安全使用建议
This skill appears internally consistent and does not ask for credentials or install code. It will read the current conversation to generate context-aware content, run web searches to gather sources, and save a single standalone HTML file to /mnt/user-data/outputs/vibe-learn-feed.html which will be presented as a downloadable link. If you are comfortable with the agent reading the chat context and creating that output file, the behavior matches its description. If you prefer not to have files written, avoid running it or remove write permissions to the outputs folder. Also: when reviewing generated cards, verify source URLs yourself before following external links (the skill links to third-party articles found via web search).
功能分析
Type: OpenClaw Skill Name: checkai Version: 1.0.0 The 'vibe-learn' skill is a legitimate utility designed to provide context-aware micro-learning content to developers during idle time. It uses standard agent capabilities such as conversation analysis, web searching, and file generation (SKILL.md) to curate and present knowledge cards as React artifacts and standalone HTML files in the designated output directory.
能力评估
Purpose & Capability
The name/description (micro-learning feed for idle developer time) matches the runtime instructions: analyze conversation context, run web searches, curate 4–6 cards, render a React artifact, and write a standalone HTML file. No unrelated credentials, binaries, or system-level accesses are requested.
Instruction Scope
Instructions require reading the current conversation history (expected) and the frontend-design SKILL.md at /mnt/skills/public/frontend-design/SKILL.md to follow UI principles (reasonable, but it reads another skill's doc). It also directs writing a file to /mnt/user-data/outputs/vibe-learn-feed.html and using present_files to expose that file—this is expected for producing a downloadable HTML artifact. Nothing in the instructions directs collection or exfiltration of unrelated secrets or external endpoints beyond standard web search and linking to public sources.
Install Mechanism
This is an instruction-only skill with no install spec and no code files, so nothing is written to disk beyond the explicit output file the skill creates at runtime.
Credentials
The skill declares no required environment variables, credentials, or config paths. Its runtime actions (searching, reading conversation, saving an HTML output) are proportionate to the described functionality.
Persistence & Privilege
The skill does not request always: true and uses default invocation settings. It writes its own output file to a user-data outputs path (normal) and does not modify other skills or system-wide agent settings.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install checkai
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /checkai 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
vibe-learn 1.0.0 — Initial Release - Introduces a micro-learning knowledge feed for developers waiting on AI coding agents. - Automatically detects idle/waiting states and delivers 4–6 curated knowledge cards relevant to the user's current coding context. - Uses conversation history to pinpoint languages, frameworks, and topics for adjacent learning opportunities. - Presents cards as a React artifact with high-quality, scannable UI, following frontend-design principles. - Generates a matching standalone HTML page for browser reading/bookmarking. - Dynamically adapts content language (Chinese/English) based on user context.
元数据
Slug checkai
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Vibe-Learning 是什么?

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 w... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 155 次。

如何安装 Vibe-Learning?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install checkai」即可一键安装,无需额外配置。

Vibe-Learning 是免费的吗?

是的,Vibe-Learning 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Vibe-Learning 支持哪些平台?

Vibe-Learning 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Vibe-Learning?

由 skJack(@skjack)开发并维护,当前版本 v1.0.0。

💬 留言讨论