Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

tutorial-design教程设计

Agent Skill

用于辅助界面设计、视觉规范、排版、配色、布局和交互体验优化。它适合让 Agent 根据产品场景整理页面结构、生成 UI 方案、检查视觉一致性或改进组件层级。使用时需要结合现有品牌、设计系统和用户任务,不应只堆装饰元素;涉及真实页面改动时,应通过截图或浏览器预览检查文本溢出、对齐和响应式表现。

总安装

1,104

周安装

46

GitHub Stars

15

下载量

368
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:tutorial-design(教程设计)
来源仓库:https://github.com/nickcrew/claude-ctx-plugin
仓库路径:skills/tutorial-design
安装命令:
npx skills add https://github.com/nickcrew/claude-ctx-plugin --skill tutorial-design
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/nickcrew/claude-ctx-plugin --skill tutorial-design

简介

用于辅助界面设计、视觉规范和交互体验优化,支持 UI 方案生成和组件层级调整。

  • 适用于页面结构整理、配色排版建议和响应式表现检查。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 需结合品牌系统和用户任务使用,避免堆砌装饰元素;涉及真实改动时应通过预览验证效果。
  • 建议参考原始 README 了解输入输出格式和设计约束。

SKILL.md

Tutorial Design

Design and write hands-on tutorials that transform complex technical concepts into engaging, progressive learning experiences with exercises, checkpoints, and troubleshooting guidance.

When to Use This Skill

  • Writing a getting-started tutorial for a library, API, or tool
  • Creating workshop materials for team training or conferences
  • Building multi-part learning series with progressive difficulty
  • Designing coding exercises with self-assessment checkpoints
  • Converting existing documentation into guided learning content
  • Creating quick-start guides that get users productive fast

Quick Reference

ResourcePurposeLoad when
references/design-patterns.mdProgressive disclosure patterns, exercise types, checkpoint design, difficulty calibration, prerequisite mappingPlanning tutorial structure or designing exercises

Workflow Overview

Phase 1: Objectives   → Define learning outcomes, prerequisites, and audience
Phase 2: Decompose    → Break concepts into atomic, sequenced steps
Phase 3: Design       → Create exercises, checkpoints, and troubleshooting tips
Phase 4: Write        → Produce tutorial content with runnable examples
Phase 5: Validate     → Test the tutorial path end-to-end

Phase 1: Define Learning Objectives

Every tutorial starts with clear outcomes.

Opening Section Template

## What You'll Learn

- [Specific, measurable outcome 1]
- [Specific, measurable outcome 2]
- [Specific, measurable outcome 3]

## Prerequisites

- [Required knowledge or setup]
- [Tools needed]

## Time Estimate

~[X] minutes

## What You'll Build

[Brief description or screenshot of the final result]

Writing good objectives:

  • Use action verbs: "build", "configure", "debug", "deploy" — not "understand" or "learn about"
  • Make them testable: the reader should be able to verify they achieved each outcome
  • Scope realistically: 3-5 objectives per tutorial

Phase 2: Concept Decomposition

Break the topic into atomic learning steps.

Sequencing Rules

  1. One concept per section — never introduce two new ideas at once
  2. Dependency order — concepts must build on what came before
  3. Concrete before abstract — show the working example, then explain the theory
  4. Simple before complex — start with the minimal version, layer complexity

Concept Map

Before writing, sketch a dependency graph:

[Prerequisites] → [Core concept A] → [Core concept B]
                                    ↘ [Variation 1]
                  [Core concept A] → [Core concept C] → [Advanced topic]

Each node becomes a section. Dependencies become the section order.


Phase 3: Design Exercises and Checkpoints

Exercise Types

TypeDifficultyWhen to use
Fill-in-the-blankLowReinforce syntax after an example
Debug challengeMediumTeach error reading and common mistakes
Extension taskMediumAdd a feature to working code
From scratchHighBuild based on requirements only
RefactoringHighImprove existing implementation

Checkpoint Pattern

After every major section, insert a checkpoint:

### Checkpoint

At this point you should have:
- [ ] A running server on port 3000
- [ ] The `/health` endpoint returning `{ "status": "ok" }`
- [ ] Server logs showing incoming requests

**If something's wrong**, see the [Troubleshooting](#troubleshooting) section below.

Troubleshooting Sections

For every section, anticipate 2-3 common errors:

### Troubleshooting

**Error: `EADDRINUSE: address already in use`**
Another process is using port 3000. Run `lsof -i :3000` to find it,
then stop it or change your port.

**Error: `Cannot find module 'express'`**
You haven't installed dependencies yet. Run `npm install` in the project root.

Phase 4: Write the Tutorial

Section Structure (for each concept)

  1. Brief intro (1-2 sentences) — what this section covers and why it matters
  2. Minimal example — complete, runnable code showing the concept
  3. Line-by-line explanation — walk through the important parts
  4. Try it — tell the reader to run the code and what to expect
  5. Extend it — optional exercise to deepen understanding
  6. Troubleshooting — common errors for this section

Writing Principles

  • Show, then explain — code first, theory second
  • Frequent validation — readers should run code every 2-3 minutes
  • Fail forward — include intentional errors to teach debugging
  • Incremental complexity — each step adds one thing to the previous
  • Copy-paste friendly — examples must work when pasted directly

Content Elements

Code blocks must:

  • Be complete and runnable (no ... elisions in critical paths)
  • Include expected output in a separate block
  • Use meaningful variable names
  • Have inline comments only where non-obvious

Explanations should:

  • Connect to real-world use cases
  • Provide the "why" behind each step
  • Use analogies to familiar concepts
  • Anticipate the reader's "but what about...?" questions

Closing Section

## Summary

You've learned how to:
- [Outcome 1 restated]
- [Outcome 2 restated]

## Next Steps

- [Natural follow-on tutorial or topic]
- [Related documentation]
- [Community resources]

Phase 5: Validate

Before publishing, test the entire tutorial path:

  1. Follow every step from a clean environment
  2. Run every code example and verify output matches
  3. Trigger every troubleshooting scenario at least once
  4. Time the tutorial — does it match the estimate?
  5. Have someone unfamiliar with the topic attempt it

Tutorial Formats

FormatDurationWhen to use
Quick Start5 minFirst contact, get running fast
Deep Dive30-60 minComprehensive single-topic exploration
Workshop SeriesMulti-partProgressive learning across sessions
CookbookVariableProblem-solution pairs, non-linear reading
Interactive Lab15-45 minHands-on environment with guided steps

Anti-Patterns

  • Introducing concepts before they are needed ("you'll use this later")
  • Showing code snippets that cannot run standalone
  • Assuming knowledge not listed in prerequisites
  • Walls of text without code breaks
  • Exercises without solutions (even collapsed/hidden ones)
  • Skipping the "why" and only showing the "how"

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.57%
按下载量换算124

Claude

31.5%
按下载量换算116

Cursor

19.14%
按下载量换算70

Gemini CLI

9.35%
按下载量换算34

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills