Getting it into your agent
This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.
/plugin marketplace add chengkj99/kj-skills/plugin install kj-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/chengkj99/kj-skills/tutorial-guide)<a href="https://agentmods.dev/skills/chengkj99/kj-skills/tutorial-guide"><img src="https://agentmods.dev/badge/skills/chengkj99/kj-skills/tutorial-guide.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00105 | $0.04386 |
| Opus 5 | $0.00053 | $0.02193 |
| Sonnet 5 | $0.00021 | $0.00877 |
| Haiku 4.5 | $0.00011 | $0.00439 |
Grade A, and why
tutorial-guide scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 270 lines — stays where its author put it; the contents beside it link to each section on GitHub.
教程指南生成技能
为用户生成风格统一、内容完整、专业精美的新手教程指南,输出为 .docx Word 文档。
触发条件
用户提供:
- 主题名称(必填):如"微信小程序开发"、"Superpowers 完全新手教程"
- 参考链接(可选):官方文档、视频、文章等
- 二维码图片(已内置):公众号/视频号二维码存于
assets/目录,无需用户提供
输出规范
- 格式:
.docxWord 文档 +.mdMarkdown 文档(同时生成) - 文件名:
[主题名]-完全新手指南.docx/[主题名]-完全新手指南.md - 保存路径:默认写入当前工作目录所属的
kj-llm-wiki仓库下的raw/papers/- 例如当前工作目录是
/Users/didi/ai_space/kj-llm-wiki,输出到/Users/didi/ai_space/kj-llm-wiki/raw/papers/ - 例如当前工作目录是
/Users/chengkangjian/Library/Mobile Documents/iCloud~md~obsidian/Documents/kj-llm-wiki,输出到该目录下的raw/papers/ - 如需临时指定输出目录,可在运行脚本时设置环境变量
TUTORIAL_GUIDE_OUTPUT_DIR
- 例如当前工作目录是
- 使用
docxnpm 包生成,脚本保存到skills/tutorial-guide/scripts/gen_[主题名].js - 脚本中同时生成
.docx和.md两个文件到同一目录
文档结构(顺序固定)
1. 封面页
- 主标题:
[主题名称] 完全新手指南(居中,36pt,粗体,深蓝色#1a73e8) - 副标题:
从零开始,手把手带你入门(居中,18pt,灰色#5f6368) - 作者:
作者:[公众号名](居中,14pt) - 日期:当前日期(居中,12pt,灰色)
- 封面后插入分页符
2. 目录页
- 标题"目录"(居中,Heading1 样式,深蓝色)
- 手动构建目录条目(禁止使用
TableOfContents组件——该组件需在 Word 中手动更新域才能显示,直接打开时目录为空) - 目录条目格式:
前言、第一章 XXX、第二章 XXX… 每行一个条目,使用普通段落(Normal 样式),字体 13pt,左对齐,行间距适中 - 目录后插入分页符
手动目录段落示例:
// 目录条目示例(根据实际章节列表逐条生成)
new Paragraph({
children: [
new TextRun({ text: "前言", size: 26, font: "Arial" }),
new TextRun({ text: "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t3", size: 26, font: "Arial", color: "888888" })
],
spacing: { before: 80, after: 80 }
}),
new Paragraph({
children: [
new TextRun({ text: "第一章 概念介绍与核心原理", size: 26, font: "Arial" })
],
spacing: { before: 80, after: 80 }
}),
// ... 以下按实际章节逐条手动列出
⚠️ 注意:页码可写固定占位(如省略或标注"—"),但章节名称必须与正文标题完全一致,目录条目必须完整列出所有章节和小节标题。
3. 前言
- Heading1:"前言"
- 正文介绍:这个工具/技术是什么、能解决什么问题、适合哪些读者
4. 正文章节(5-15 章,根据主题内容量合理设计)
章节数量规则:
- 简单工具/入门主题:5-8 章
- 中等复杂度开发框架:8-12 章
- 综合性平台/语言:10-15 章
每章必须包含:
Heading1:第X章 [章节名]Heading2:各小节(每章至少 2-3 个小节)- 锚点开场:用具体场景/问题/反常识提问引入,禁止"本章介绍……"
- 正文段落:说人话、短句优先,步骤具体可操作,不水字数
- 可验证的易错点:至少 1 个有来源或可复现的常见错误,写出触发条件、具体报错或误区表现
- 有序/无序列表(使用 numbering config,禁止手动插入 bullet 符号)
- 代码块(Courier New 等宽字体 + 浅灰背景段落,代码必须可直接运行)
- 提示框(带边框底色段落,前缀:💡小贴士 / ⚠️注意 / ✅最佳实践)
What ships with it
7 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 6d ago First seen · 270 lines · 105 tokens per session scan A 60de1f5cd72f
tutorial-guide is a skill published in the GitHub repository chengkj99/kj-skills (14 stars, last pushed 4d ago), licensed MIT. It adds 105 tokens to every session and 4,386 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
stage-dsl
The map for reading and editing an OpenMAIC stage document with readstage, patchstage, and grepstage. Load it before patching a structure you have not patched before, when patchstage rejects an operation, or whenever the path from a stage, outline, scene, content object, or action to the field you need is uncertain.…
pptx-import
会话里有上传的 .pptx,且用户要把这份幻灯片填进一节已建的课(先 createstage 建课,再 importpptx 把页面追加进这节课堂,保留原版排版;课堂标题以 createstage 为准,PPT 不接管)。随后逐页检查(有 renderscenepreview 就渲染看)并修 bad case,理解整课之后才写旁白/spotlight,最后 TTS。仅在用户要求时插入 quiz 或 interactive。不要重新规划整课。.
dev-camp-deck
Creates a professional PowerPoint presentation about a Copilot Dev Camp lab or topic. Researches Microsoft Learn documentation, organizes content into a slide structure, and generates a polished deck with speaker notes. Use when user asks to "create a presentation on", "make a deck about", "build a slideshow for"…
read-book
When you want to read and extract structured notes from a book — PDF, EPUB, MOBI, markdown, .txt, pasted text, or URL to a public-domain work. Reads in chunks (by chapter when a TOC exists, by 50-page blocks otherwise), extracts per-chapter TL;DR + key concepts + quotes + action items + frameworks, and offers to…
training-report
Produce a professional training/workshop report as a .docx file. Use this skill whenever the user mentions "training report", "workshop report", "compte rendu", "compte rendu de formation", "formation report", "debriefing a workshop", "write up a training session", "résumé de formation", or any request to document a…
slides.convert_to_typst
Convert markdown slides to Typst-compatible format via pandoc.