laohan-jiaocheng

laohan-jiaocheng is a skill for Claude Code from hanzhcn/laohan-skills. It costs 106 tokens per session (935 once invoked), scanned A, original, MIT.

A tutorial router that selects installation and setup instructions from keywords such as claude-mem, CLAUDE.md, Gemini sidebar, GLM, or ECC. It guides the user through the selected tutorial and checks key results.

In plain words
What is it for?
Setting up Claude memory with LiteLLM, configuring CLAUDE.md, fixing the Chrome Gemini sidebar, connecting Claude Code to GLM, or installing and maintaining the ECC plugin.
Why use it?
It avoids searching through unrelated setup guides and adds verification, such as checking that a service starts or a command works. It only covers the five listed tutorial areas.

Skill for Claude Code

Written for Claude Code: argument-hint in frontmatter. Also seen: mentions CLAUDE.md; mentions Claude Code.

Good fit Setting up Claude memory with LiteLLM, configuring CLAUDE.md, fixing the Chrome Gemini sidebar, connecting Claude Code to GLM, or installing and maintaining the ECC plugin.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/hanzhcn/laohan-skills/laohan-jiaocheng
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add hanzhcn/laohan-skills --skill laohan-jiaocheng
Clone the repo
git clone --depth 1 https://github.com/hanzhcn/laohan-skills

Made for: Claude Code.

Wrote 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.

agentmods badge for laohan-jiaocheng

README.md
[![agentmods](https://agentmods.dev/badge/skills/hanzhcn/laohan-skills/laohan-jiaocheng/github.svg)](https://agentmods.dev/skills/hanzhcn/laohan-skills/laohan-jiaocheng)
Your own site
<a href="https://agentmods.dev/skills/hanzhcn/laohan-skills/laohan-jiaocheng"><img src="https://agentmods.dev/badge/skills/hanzhcn/laohan-skills/laohan-jiaocheng/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for laohan-jiaocheng

Your own site · 80×15
<a href="https://agentmods.dev/skills/hanzhcn/laohan-skills/laohan-jiaocheng"><img src="https://agentmods.dev/badge/skills/hanzhcn/laohan-skills/laohan-jiaocheng.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 106 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 935 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00106 $0.00935
Opus 5 $0.00053 $0.00467
Sonnet 5 $0.00021 $0.00187
Haiku 4.5 $0.00011 $0.00093

Measured 12d ago against content hash 164bf9167d95, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

laohan-jiaocheng scanned grade A with 1 finding 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 12d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

- **完成条件:** 验证命令返回成功(如 `curl /health` 返回 200、命令 `--version` 输出版本号)
laohan-jiaocheng/SKILL.md · 56 lines

What it actually says

老韩教程路由

根据关键词加载对应教程,按步骤引导用户完成配置,关键步骤验证结果。

核心理念

教程类 skill 的核心不是"讲知识"而是"帮用户跑通"。每个教程都必须验证结果——服务启动了吗、命令能用了吗。跑通比理解重要。

不适用场景

  • 问"XX工具怎么用"(使用教程)→ 按 SKILL.md 内容直接回答,不走分步引导
  • 问"帮我配置 XX"但路由表中没有对应教程 → 告诉用户目前只有 5 个教程,列出可选范围
  • 问"写一个教程"(创建教程)→ 用 laohan-skillcreator 的流程

路由表

关键词匹配 教程文件 一句话说明
"claude-mem"/"litellm"/"记忆"/"健忘" references/claude-mem-litellm.md claude-mem + LiteLLM 让 Claude Code 用国产模型实现跨会话记忆
"CLAUDE.md"/"claude-md"/"配置指南"/"四个原则" references/claude-md-guide.md CLAUDE.md 四个核心原则(想清楚再动手/能50行别200行/只改该改的/目标驱动执行)
"gemini"/"侧边栏"/"chrome gemini" references/gemini-sidebar-fix.md Chrome Gemini 侧边栏国内修复(Mac + Windows 双平台)
"glm"/"智谱"/"claude-code-glm"/"国产模型" references/claude-code-glm.md Claude Code 接入智谱 GLM 作为后端
"ecc"/"插件"/"everything-claude-code" references/ecc-plugin-guide.md ECC 插件安装、rules 分发、hooks 加载机制

执行逻辑

  1. 匹配教程:从用户输入提取关键词,按路由表确定目标教程
    • 如果关键词匹配不到任何教程 → 列出 5 个可选教程,让用户选择
  2. 加载教程:读取 references/<对应文件>.md 全文
    • 完成条件: 文件存在且非空
  3. 分步引导:将教程内容按步骤呈现,每步完成后用户确认再进入下一步
  4. 验证:关键步骤执行后验证结果(服务启动、配置生效、命令可用)
    • 完成条件: 验证命令返回成功(如 curl /health 返回 200、命令 --version 输出版本号)
  5. 完成:输出配置总结 + 下一步建议

教程源与同步

教程源文件在 ~/Documents/laohan-skills/docs/ 维护。本 skill 的 references/ 是同步副本。

更新流程

  1. 修改 docs/*.md(源文件)
  2. cp docs/*.md laohan-jiaocheng/references/(同步)
  3. 如有新教程,同步后更新本路由表
  4. git add && git commit && git push

同步检查(每次使用时执行):

  • 验证 references/ 下 5 个文件均存在
  • 如文件缺失,提示先同步:cd ~/Documents/laohan-skills && cp docs/*.md laohan-jiaocheng/references/
Files

What ships with it

5 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.

Changes

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.

  1. 12d ago First seen · 56 lines · 106 tokens per session scan A 164bf9167d95

Subscribe to this mod's changes

laohan-jiaocheng is a skill published in the GitHub repository hanzhcn/laohan-skills (11 stars, last pushed yesterday), licensed MIT. It adds 106 tokens to every session and 935 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.