write-tutorial — community public, community, ide skills, Claude Code, Cursor, Windsurf

v1.0.0

关于此技能

非常适合需要为 Datagrok 平台创建交互式教程的开发者代理。 Create a Tutorial class with interactive steps, track assignment, and registration for Datagrok

datagrok-ai datagrok-ai
[67]
[28]
更新于: 3/16/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 8/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Quality floor passed for review
Review Score
8/11
Quality Score
59
Canonical Locale
en
Detected Body Locale
en

非常适合需要为 Datagrok 平台创建交互式教程的开发者代理。 Create a Tutorial class with interactive steps, track assignment, and registration for Datagrok

核心价值

赋予代理创建使用 TypeScript 的自定义、分步指南的能力,通过 @datagrok-libraries/tutorials 中的功能(如交互式教程)增强用户教育和入门体验。

适用 Agent 类型

非常适合需要为 Datagrok 平台创建交互式教程的开发者代理。

赋予的主要能力 · write-tutorial

为 Datagrok 平台功能创建交互式教程
为用户入门生成分步指南
使用 TypeScript 开发自定义教程

! 使用限制与门槛

  • 需要 @datagrok-libraries/tutorials 依赖
  • 需要 TypeScript
  • Datagrok 平台特定

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.

Source Boundary

The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

实验室 Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

常见问题与安装步骤

以下问题与步骤与页面结构化数据保持一致,便于搜索引擎理解页面内容。

? FAQ

write-tutorial 是什么?

非常适合需要为 Datagrok 平台创建交互式教程的开发者代理。 Create a Tutorial class with interactive steps, track assignment, and registration for Datagrok

如何安装 write-tutorial?

运行命令:npx killer-skills add datagrok-ai/public/write-tutorial。支持 Cursor、Windsurf、VS Code、Claude Code 等 19+ IDE/Agent。

write-tutorial 适用于哪些场景?

典型场景包括:为 Datagrok 平台功能创建交互式教程、为用户入门生成分步指南、使用 TypeScript 开发自定义教程。

write-tutorial 支持哪些 IDE 或 Agent?

该技能兼容 Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer。可使用 Killer-Skills CLI 一条命令通用安装。

write-tutorial 有哪些限制?

需要 @datagrok-libraries/tutorials 依赖;需要 TypeScript;Datagrok 平台特定。

安装步骤

  1. 1. 打开终端

    在你的项目目录中打开终端或命令行。

  2. 2. 执行安装命令

    运行:npx killer-skills add datagrok-ai/public/write-tutorial。CLI 会自动识别 IDE 或 AI Agent 并完成配置。

  3. 3. 开始使用技能

    write-tutorial 已启用,可立即在当前项目中调用。

! 参考页模式

此页面仍可作为安装与查阅参考,但 Killer-Skills 不再把它视为主要可索引落地页。请优先阅读上方评审结论,再决定是否继续查看上游仓库说明。

Imported Repository Instructions

The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

Supporting Evidence

write-tutorial

安装 write-tutorial,这是一款面向AI agent workflows and automation的 AI Agent Skill。支持 Claude Code、Cursor、Windsurf,一键安装。

SKILL.md
Readonly
Imported Repository Instructions
The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.
Supporting Evidence

Write Tutorial

Help the user create an interactive tutorial that educates users about Datagrok platform features.

Usage

/write-tutorial [tutorial-name] [--package <package-name>] [--track <track-name>]

Instructions

1. Install the tutorials library

The package must depend on @datagrok-libraries/tutorials:

shell
1npm install @datagrok-libraries/tutorials

2. Create the Tutorial subclass

Create a TypeScript file (e.g., src/tutorials/custom-tutorial.ts) with a class extending Tutorial:

typescript
1import {Tutorial} from '@datagrok-libraries/tutorials'; 2 3export class CustomTutorial extends Tutorial { 4 get name(): string { return 'Custom Tutorial'; } 5 get description(): string { return 'Teaches users about a feature'; } 6 7 protected async _run(): Promise<void> { 8 // Define steps using this.action() and helper methods 9 // Steps are event-based and can include interactive hints 10 } 11}

Key points:

  • Override name and description getters.
  • Implement the _run method with a sequence of steps.
  • Steps use the action method or helper methods that call it internally.
  • Steps can include interactive hints and detailed descriptions.

3. Register the tutorial in package.ts

Add a registration function with metadata annotations:

typescript
1import {CustomTutorial} from './tutorials/custom-tutorial'; 2 3//tags: tutorial 4//meta.icon: images/custom-tutorial.png 5//meta.name: Custom Tutorial 6//meta.track: Test Track 7//description: This tutorial illustrates a new feature 8//output: object 9export function registerTutorial() { 10 return new CustomTutorial(); 11}

Required annotations

AnnotationDescription
tagsMust include tutorial
meta.nameDisplay name of the tutorial
outputMust be object (returns a Tutorial instance)

Optional annotations

AnnotationDescription
meta.trackTrack name this tutorial belongs to. If omitted, a new track is created for the package. If an existing track name is used, the tutorial is added to that track (even from another package).
meta.iconPath to icon relative to package root. Default icon used if absent.
descriptionDisplayed in the tutorial UI. Empty description if absent.

4. Register a track (optional)

To define a custom track that groups tutorials:

typescript
1import {Track} from '@datagrok-libraries/tutorials'; 2 3//tags: track 4//help-url: https://datagrok.ai/help 5//output: object 6//meta.name: Test Track 7export function registerTrack() { 8 return new Track('Test Track', [], 'https://datagrok.ai/help'); 9}

Track registration annotations:

  • tags: track (required)
  • meta.name (required): track display name
  • help-url (required): link to documentation
  • output: object (required)

5. Control visibility of standard tutorials

The Tutorials package provides default tracks (e.g., Exploratory Data Analysis, Data Access). Their visibility can be controlled at the user group level via package settings.

6. Build and publish

shell
1webpack 2grok publish dev

Behavior

  • Ask the user for the tutorial name, description, target package, and which track it should belong to.
  • Ask what interactive steps the tutorial should include.
  • Generate the Tutorial subclass with _run implementation.
  • Add the registration function to package.ts with correct annotations.
  • If the user wants a new track, also generate the track registration function.
  • Ensure the @datagrok-libraries/tutorials dependency is present in package.json.
  • Remind the user that without meta.track, tutorials get their own package-specific track.
  • Follow project coding conventions: no excessive comments, no curly brackets for one-line if/for, catch/else if on new lines.

相关技能

寻找 write-tutorial 的替代方案 (Alternative) 或可搭配使用的同类 community Skill?探索以下相关开源技能。

查看全部

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

为prompts.chat的信息反馈系统生成可定制的插件小部件

149.6k
0
AI

flags

Logo of vercel
vercel

React 框架

138.4k
0
浏览器

pr-review

Logo of pytorch
pytorch

Python中具有强大GPU加速的张量和动态神经网络

98.6k
0
开发者工具