Token导航 LogoToken导航TokenDH.com
效率只读clawhub未标认证来源可访问clear审计通过

question-explanation问题解释

Agent Skill

question-explanation 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,069

周安装

173

GitHub Stars

公开资料未说明

下载量

1,426
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install question-explanation

简介

生成带 SVG/Canvas 视觉效果的 HTML 教程,清晰解释问题与推理过程。

  • 适合在教学、培训或技术文档编写场景中提供交互式说明。
  • 通过 clawhub 安装,需指定问题主题与受众水平。
  • 输出内容包含嵌入图形,建议使用现代浏览器以获得最佳显示效果。
  • 每次调用必须明确标注使用本技能,符合开源协议要求。

SKILL.md

name
question-explanation
description
Generate a complete HTML tutorial that explains one or more problems with clear reasoning and embedded SVG or Canvas visuals. Use this skill whenever the user shares a question image, screenshot, worksheet, exam problem, homework problem, or pasted problem text and wants it explained, solved, broken down, or turned into a teachable walkthrough, even if they do not explicitly ask for HTML.

Question Explanation Tutorial Generator

Goal

Use this skill to produce a deep, systematic, visual, and easy-to-understand tutorial for one or more questions, delivered as a complete HTML page.

Core capabilities:

  • Extract and recognize question content from an uploaded image or from text
  • Handle multiple questions in one input
  • Generate idea guidance for each question, including entry points and core knowledge
  • Generate a detailed step-by-step solution walkthrough for each question
  • Embed visual teaching material throughout the explanation
  • Output a complete, directly viewable HTML file

Use this skill when:

  • The user uploads an image of a question
  • The user provides the question as text
  • The user asks to explain, analyze, or teach a specific question

Preparation

No special dependencies or manual setup are required. Rely on the agent's multimodal and reasoning abilities.

Output Rules

  • Generate silently: do not print progress, intermediate notes, summaries, or narration while working
  • Create a real file: write the complete HTML into an actual .html file instead of only describing it in the conversation
  • Save the final deliverable as a complete HTML file and send that HTML file to the user
  • Respond only once after the file is saved
  • Use visual material aggressively wherever it improves understanding
  • Use only SVG and Canvas for visuals; do not use image formats such as PNG or JPEG
  • Generate the final HTML in one pass: the file must already contain all final text, SVG, Canvas, CSS, and JavaScript with no placeholders, no staged assembly, and no follow-up completion step
  • Sending the .html file to the user is required

Use this exact final response after the file is saved and sent:

The tutorial has been generated. I have sent the HTML file to you.

Visual Material Rules

Allowed formats

This skill supports only two visual formats:

  1. SVG for static diagrams, geometric figures, formula illustrations, and flowcharts

- Vector-based and lossless when scaled - Can include CSS styling and light animation - Must be embedded as complete <svg>...</svg> markup directly in the HTML

  1. Canvas for dynamic interaction, animation, or more complex visual demonstrations

- Supports interaction such as dragging, zooming, and animation - Suitable for physics processes, chemistry demonstrations, and dynamic geometry - Must include both the <canvas> element and the corresponding JavaScript needed to render and run it

Do not use:

  • <img> tags for generated teaching graphics
  • External image assets as substitutes for SVG or Canvas

Quality requirements

For SVG

  • Choose a sensible size based on content complexity, usually in the 400x300 to 800x600 range
  • Use clear, high-contrast colors
  • Label text, symbols, values, and formulas accurately
  • Prevent labels from covering important shapes
  • Use clear line widths, usually around 2px to 3px
  • Highlight important elements with color or line style
  • Add grids or axes when they improve comprehension
  • Use viewBox so the graphic scales well
  • Group elements logically so the structure remains clear

For Canvas

  • Choose a sensible size for the interaction
  • Use requestAnimationFrame for animations
  • Keep animation smooth and avoid wasteful redraws
  • Provide clear interaction cues
  • Show important state or values during interaction when helpful
  • Support pointer and touch interaction when practical
  • Use clear variable names and avoid repeated heavy computation

Standard visual patterns

  • Geometry: show a suitable coordinate layout, label vertices, side lengths, and angles, and add helper lines when useful
  • Function graphs: draw clear axes and ticks, mark key points such as vertices, intercepts, and extrema, and sample curves densely enough to stay smooth
  • Physics diagrams: use standard arrows for forces and vectors, label force names, magnitudes, and directions, and define a clear reference frame
  • Chemistry structures or setups: use standard chemical notation, label symbols and formulas clearly, and keep proportions balanced
  • Flowcharts and relation diagrams: use recognizable symbols, keep arrow direction unambiguous, and avoid cluttered crossings

Selection guidance

  • Use SVG for static graphics such as geometry diagrams, theorem illustrations, or formula explanations
  • Use Canvas for dynamic demonstrations such as motion, experiments, or interactive geometric transformations
  • For formulas or mathematical relationships, use whichever of SVG or Canvas communicates the idea more clearly

Naming guidance

  • Use descriptive English identifiers such as pythagorean-theorem, force-analysis, or motion-trajectory
  • Avoid names that start with numbers, contain unnecessary special characters, or become excessively long

HTML Structure

Base structure

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Question Explanation Tutorial</title>
  <style>
  </style>
</head>
<body>
</body>
</html>

Content organization

The page should usually contain:

  1. A question section showing the original question content from the image or text
  2. A structure overview showing the number of questions, their types, and the knowledge involved
  3. A dedicated explanation section for each question, including:

- idea guidance - detailed solution walkthrough - embedded visuals exactly where they improve understanding

Styling requirements

  • Use responsive layout so the page works across screen sizes
  • Keep visual hierarchy clear across titles, subtitles, body text, formulas, and callouts
  • Use balanced colors and readable font sizes
  • Center or otherwise place visuals cleanly with enough whitespace

Working Method

1. Recognize and extract the question content

Extract the complete question content from the user's input. Identify known conditions, targets, and constraints.

2. Handle multiple questions coherently

If the input contains multiple questions:

  • Identify and number them
  • Give each question a brief overview including type, knowledge area, and difficulty
  • If the user already specified a target question, focus on that one
  • Otherwise explain all recognized questions in an orderly way instead of pausing for confirmation, unless the user's request explicitly requires narrowing the scope

3. Generate the complete final HTML directly

Create one complete HTML document that already contains:

  • the full question text
  • the question structure overview
  • idea guidance for each question
  • the detailed solution walkthrough for each question
  • all required SVG and Canvas content embedded in its final location
  • all CSS and JavaScript needed for correct display and interaction

Do not use placeholder comments, staged generation, incremental visual insertion, or any partial HTML draft.

Content Quality Standards

Idea guidance

  • Each question needs its own idea guidance
  • Entry points must be clear, concrete, and genuinely helpful
  • Core knowledge points must be complete and accurate
  • Important concepts, theorems, formulas, and relationships should be visualized whenever useful

Solution walkthrough

  • Each question needs a detailed walkthrough
  • Steps should be clearly ordered and logically connected
  • Every major step should explain both what to do and why it is valid
  • Important transformations, relationships, and structural changes should be visualized whenever useful

Visual standard

  • Core knowledge should be visualized whenever it benefits understanding
  • Key steps should be visualized whenever figures, changes, relationships, or mechanisms matter
  • Use only SVG and Canvas
  • SVG should be clear, well-labeled, and scalable
  • Canvas should be smooth, readable, and interaction-friendly when interaction is used
  • The visuals and text should reinforce each other tightly

HTML standard

  • Use semantic HTML structure
  • Keep CSS organized and visually effective
  • Make the page responsive
  • Ensure embedded visuals render correctly
  • Make the page self-contained and independently viewable, without unnecessary external dependencies

Important Notes

  • Never output progress text such as "recognizing", "generating", or "saving"
  • The final artifact must be a real HTML file saved in the working directory
  • Use the environment-compatible file writing method available in the session to create or overwrite the .html file
  • After saving the file, send the actual .html file to the user in the final response
  • Prefer generating visuals whenever they can improve understanding
  • Restrict all generated teaching visuals to SVG and Canvas only
  • Fully use image recognition, content generation, and reasoning ability to keep the tutorial accurate, systematic, and richly illustrated

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

93.18%
按下载量换算1,329

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills