write-tutorial — community public, community, ide skills

v1.0.0

このスキルについて

Datagrok プラットフォームのインタラクティブなチュートリアルを作成する必要がある Developer エージェントに最適です。 Create a Tutorial class with interactive steps, track assignment, and registration for Datagrok

datagrok-ai datagrok-ai
[67]
[28]
Updated: 3/16/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 9/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
9/11
Quality Score
59
Canonical Locale
en
Detected Body Locale
en

Datagrok プラットフォームのインタラクティブなチュートリアルを作成する必要がある Developer エージェントに最適です。 Create a Tutorial class with interactive steps, track assignment, and registration for Datagrok

このスキルを使用する理由

TypeScript を使用してカスタマイズされたステップバイステップガイドを作成するエージェントを可能にし、@datagrok-libraries/tutorials の機能(例:インタラクティブチュートリアル)を使用してユーザー教育とオンボーディングを強化します。

おすすめ

Datagrok プラットフォームのインタラクティブなチュートリアルを作成する必要がある Developer エージェントに最適です。

実現可能なユースケース for 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 imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs 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 & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is write-tutorial?

Datagrok プラットフォームのインタラクティブなチュートリアルを作成する必要がある Developer エージェントに最適です。 Create a Tutorial class with interactive steps, track assignment, and registration for Datagrok

How do I install write-tutorial?

Run the command: npx killer-skills add datagrok-ai/public/write-tutorial. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for write-tutorial?

Key use cases include: Datagrok プラットフォームの機能のインタラクティブなチュートリアルを作成する, ユーザーオンボーディングのためのステップバイステップガイドを生成する, TypeScript を使用してカスタマイズされたチュートリアルを開発する.

Which IDEs are compatible with write-tutorial?

This skill is compatible with 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. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for write-tutorial?

@datagrok-libraries/tutorials 依存関係が必要. TypeScript が必要. Datagrok プラットフォーム固有.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add datagrok-ai/public/write-tutorial. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use write-tutorial immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

write-tutorial

Install write-tutorial, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
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.

関連スキル

Looking for an alternative to write-tutorial or another community skill for your workflow? Explore these related open-source skills.

すべて表示

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
開発者