ai-shifu-course-creator

ai-shifu-course-creator is a skill for Codex from LeoYeAI/openclaw-master-skills. It costs 43 tokens per session (4,539 once invoked), scanned A, original, MIT.

A course-production tool that turns raw teaching material into runnable MarkdownFlow lesson scripts and deploys them as live AI-Shifu courses. It can adapt the course language, audience level, lesson length, and assessment style.

In plain words
What is it for?
It is for creating online courses, splitting material into lessons, coordinating lesson generation, and preparing courses for deployment.
Why use it?
It gives incomplete or uneven source material a structured path toward lessons that can be delivered to learners. It can also mark uncertainty and suggest focused reruns when the input is weak.

Skill for Codex

Written for Codex: agents/openai.yaml present.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is build --course-dir ./course-a/ # Build shifu-import.json (offline).

Good fit It is for creating online courses, splitting material into lessons, coordinating lesson generation, and preparing courses for deployment.

Compare 6 skills from other repositories ↓
About the project

OpenClaw Master Skills is a curated, regularly updated collection of skills that extends an AI personal assistant platform with capabilities such as research, browser automation, presentation creation, and prompt work. It is intended for people using OpenClaw or MyClaw.ai to give their agents additional tasks and workflows. The catalogue contains many skills and agents from this collection.

LeoYeAI/openclaw-master-skills · 2,141 stars · on GitHub · myclaw.ai

Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/LeoYeAI/openclaw-master-skills
agentmods
npx agentmods add skills/leoyeai/openclaw-master-skills/ai-shifu-course-creator

Made for: Codex.

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 ai-shifu-course-creator

README.md
[![agentmods](https://agentmods.dev/badge/skills/leoyeai/openclaw-master-skills/ai-shifu-course-creator/github.svg)](https://agentmods.dev/skills/leoyeai/openclaw-master-skills/ai-shifu-course-creator)
Your own site
<a href="https://agentmods.dev/skills/leoyeai/openclaw-master-skills/ai-shifu-course-creator"><img src="https://agentmods.dev/badge/skills/leoyeai/openclaw-master-skills/ai-shifu-course-creator/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 ai-shifu-course-creator

Your own site · 80×15
<a href="https://agentmods.dev/skills/leoyeai/openclaw-master-skills/ai-shifu-course-creator"><img src="https://agentmods.dev/badge/skills/leoyeai/openclaw-master-skills/ai-shifu-course-creator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 43 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,539 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00043 $0.04539
Opus 5 $0.00022 $0.02269
Sonnet 5 $0.00009 $0.00908
Haiku 4.5 $0.00004 $0.00454

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

Security

Grade A, and why

ai-shifu-course-creator 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 9d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/shifu-cli.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

skills/ai-shifu-course-creator/SKILL.md · 578 lines

How it starts

The opening of the file, as written. The whole thing — 578 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Course Creator

Convert raw course material into runnable, optimized MarkdownFlow lesson scripts and deploy them as live AI-Shifu courses.

Execution Modes

  • Standard mode (default): Input quality is sufficient; run requested phases in full.
  • Fallback mode: Input is incomplete or low quality; produce coarse outputs, mark uncertainty, and provide focused rerun hints.

Language Resolution Policy

See references/language-resolution.md for the full policy.

Resolve target language with this strict priority:

  1. explicit_output_language_request
  2. target_language_parameter
  3. session_language_preference
  4. prompt_language_detection
  5. source_material_dominant_language
  6. default_fallback_language (en-US)

Authoring Control Inputs

Use these optional controls across all phases:

  • course_profile (json): audience level, prerequisite level, lesson duration target, lesson count target, and assessment mode.
  • delivery_constraints (json): interaction density, platform limits, must-cover topics, avoid topics, and non-negotiable source fragments.

See references/input-contract.md for recommended object shapes.

Output Boundary

  • Final outputs are learner-facing teaching content only.
  • Authoring rules, pipeline notes, and process instructions stay in skill docs and references, not in lesson outputs.
  • Internal design notes may appear only in HTML comments when needed.

Pipeline Overview

Phase 1: Segmentation → Phase 2: Orchestration → Phase 3: Generation → Phase 4: Optimization → Phase 5: Deployment

Usage Paths

Path A: End-to-End

Run all five phases from raw material to a live deployed course.

  1. Phase 1: Segment raw material into semantic units.
  2. Phase 2: Orchestrate lesson boundaries and generate scripts.
  3. Phase 3: Generate per-lesson MarkdownFlow scripts (called internally by Phase 2).
  4. Phase 4: Audit and optimize final scripts.
  5. Phase 5: Build, import, and publish to the AI-Shifu platform.

Path B: Author Only

Read the full file on GitHub · 578 lines

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. 9d ago First seen · 578 lines · 43 tokens per session scan A afd6116922fc

Subscribe to this mod's changes

ai-shifu-course-creator is a skill published in the GitHub repository LeoYeAI/openclaw-master-skills (2,141 stars, last pushed 1mo ago), licensed MIT. It adds 43 tokens to every session and 4,539 once invoked, about $0.0002 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-09-03.

Related

Other skills, from other repositories

study-strategy-selector

Recommend practical study strategies matched to the material, learning goal, assessment, time, and learner constraints. Use for revision planning, homework routines, independent study, replacing ineffective habits, or adapting recall, spacing, explanation, and practice activities.

iflytek/skillhub · 52 tokens

retrieval-practice-generator

Generate low-stakes retrieval-practice questions with grounded answer notes and implementation guidance. Use for quiz starters, revision activities, delayed recall, misconception checks, or adapting recall difficulty.

iflytek/skillhub · 41 tokens

exam-ready

Prepare a concise exam review from study materials and a syllabus supplied by the user. Use for topic summaries, recall questions, MCQ cues, and time-limited revision plans that must stay grounded in those materials.

iflytek/skillhub · 45 tokens

interview-prep

Technical interview preparation expert for algorithms, system design, and behavioral questions.

RightNow-AI/openfang · 18 tokens

comfyui-skill-openclaw

Run registered ComfyUI workflows through the fast comfyui-skill CLI, and use the official local Comfy MCP for live template, node, model, validation, and orchestration capabilities. Use this Skill when: (1) The user requests to "generate an image", "draw a picture", or "execute a ComfyUI workflow". (2) The user has…

HuangYuChuh/ComfyUI_Skills_OpenClaw · 125 tokens

common-sense-index-investing-bogle

Apply John Bogle index investing rules for low-cost funds, asset allocation, fees, taxes, ETFs, advisers, and buy-hold discipline.

simbajigege/book2skills · 38 tokens