← Back to Skills Marketplace
skjack

Vibe-Learning

by skJack · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
155
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install checkai
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 w...
README (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.
Usage Guidance
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).
Capability Analysis
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.
Capability Assessment
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.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install checkai
  3. After installation, invoke the skill by name or use /checkai
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
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.
Metadata
Slug checkai
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is 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... It is an AI Agent Skill for Claude Code / OpenClaw, with 155 downloads so far.

How do I install Vibe-Learning?

Run "/install checkai" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Vibe-Learning free?

Yes, Vibe-Learning is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Vibe-Learning support?

Vibe-Learning is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Vibe-Learning?

It is built and maintained by skJack (@skjack); the current version is v1.0.0.

💬 Comments