Pschool Course Builder
pschool プロジェクト専用のコース・カリキュラム自動生成 skill (schema v2 = state machine DAG)。 Udemy / 技術学習プラットフォーム型の 1 コース = フラット chapters[] + sections[] view group 構成で、 各 chapter は lecture / mixed / exercise / quiz / review の 5 タイプ混在を許容 (handson は legacy、 新規生成禁止)。 mixed / exercise は書籍型 (コード片 → なぜそう書くか の往復) を強制し、 教材として「学んで作る」 を繰り返すフォーマットを担保。 各 chapter は `state_transitions[]` で前章 state から本章 state への遷移を明示し、 actions[] (create_file / edit_file / define_symbol / call_symbol / extend_enum / add_dependency / run_command) で受講者の操作を構造化、 asserts[] (file_exists / symbol_defined / symbol_called / shell_exit_0 / http_response / manual) で完了検証を多層化する。 wiring chain (define ↔ call) を schema 上で表現 + Step 5.7 dogfooding (`--mode full` で project 単位並列の実機実行) で全 action/assert を機械検証することで「コース通りに実装すれば動くアプリが完成する」 保証を 90%+ に引き上げる。 section 数 4-8 / chapter 数 3-10 per section の可変設計を topic 特性 (言語入門 / framework + product / infra / library) から判定。 Context7 MCP + WebFetch + GitHub Awesome List + Exa の 4 source RAG retrieval + 5-stage progression (導入 → 基礎 → 応用 → 実践 → まとめ + capstone) + Bloom's taxonomy + worked-example→faded→independent 練習設計 + spaced retrieval (末尾 chapter type=exercise) で技術学習ベストプラクティスを担保。 triple-research-dev の 5 stage パイプライン (4 体並列研究 → synthesizer → planner → generator → reviewer) を踏襲、 ハルシネーション対策として引用 URL 必須 / retrieval-only / chapter 並列 reviewer で 100% カバレッジ + spot-check / Opus fact-check pass の 4 防衛を実装。 Step 5.5 schema 検証 + Step 5.7 dogfooding (Phase 3a = `--mode full`) はいずれも `check_handson_chain_v2.py` の 1 行実行で完結。 トリガーは `/pschool-course-builder <topic>` slash command、 または自然言語で『<トピック> でコース作って』『<トピック> のカリキュラム生成』『マイクロコース作成』『ハンズオンコース作って』『Cloud Run + gRPC でコース』『新規コース』『教材生成』『カリキュラム構築』『course.yaml 生成』『state machine DAG コース』『pschool で<X>を学ぶコース』『chapter プラン作成』『capstone 設計』『Curriculum Generator 試作』『Awesome List からカリキュラム』『最新の<X>でコース』などの依頼。 必ずこの skill を使うこと: ユーザーが pschool 用コース生成に関する単一語句を出した時点でも、 明示的に「skill 使って」 と言われていなくても発動する。 pschool 固有 yaml schema v2 (state_transitions / actions[] / asserts[] / wiring chain) に厳密準拠し、 生成後は `pschool start <course_id>` でそのまま受講開始でき、 かつ `python check_handson_chain_v2.py --mode schema courses/<id>/` が CRITICAL 0 を返す状態で出力される。
Security AStatic scan found no risk patternsHow grading works ›
What this skill does
Pschool Course Builder is a community-contributed Claude Code skill in the research-methods sub-category. It ships as a SKILL.md file that Claude Code auto-discovers under ~/.claude/skills/pschool-course-builder/ and loads when your prompt matches the skill's trigger.
Who uses this skill
The Pschool Course Builder Claude Code skill is built for researchers, data scientists, academics, and analysts working with complex data and scientific literature. It's part of ClaudSkills (also referred to as Claude Skills or Claude Code Skills) — the open community-curated registry of 153,000+ SKILL.md files for Anthropic's Claude Code agent and the wider Claude ecosystem (Claude API, Claude Agent SDK).
How to install
Free
Manual install (2 steps)
mkdir -p ~/.claude/skills/pschool-course-builder
curl -L https://claudskills.com/skills/pschool-course-builder/SKILL.md \
-o ~/.claude/skills/pschool-course-builder/SKILL.md
Or just download SKILL.md directly and drop it into ~/.claude/skills/pschool-course-builder/. Claude Code auto-discovers it on next session.
Skills live at ~/.claude/skills/pschool-course-builder/SKILL.md on macOS/Linux, or %USERPROFILE%\.claude\skills\pschool-course-builder\SKILL.md on Windows. See the full install guide for step-by-step instructions.
Telegram
📱 Install from your phone or desktop Telegram
Open @claudskills_bot on Telegram, tap Open Desktop App, and the desktop app installs this skill for you. Or share the bot link with a colleague — they get the same one-tap install. Learn more →
Pro
One-click install via the desktop app
The ClaudSkills desktop app installs any skill directly into ~/.claude/skills/ with one click — no terminal required. Pro starts at $9/mo or $149 lifetime.
Pro
For the full experience including quality scoring and one-click install features for each skill — upgrade to Pro.
Frequently asked questions
How do I install the Pschool Course Builder Claude Code skill?
Install via the ClaudSkills desktop app (one click) or copy
SKILL.md from the source repository to
~/.claude/skills/pschool-course-builder/SKILL.md and restart Claude Code. Both flows are detailed at
claudskills.com/install/.
What does the Pschool Course Builder skill do?
pschool プロジェクト専用のコース・カリキュラム自動生成 skill (schema v2 = state machine DAG)。 Udemy / 技術学習プラットフォーム型の 1 コース = フラット chapters[] + sections[] view group 構成で、 各 chapter は lecture / mixed / exercise / quiz / review の 5 タイプ混在を許容 (handson は legacy、 新規生成禁止)。 mixed / exercise は書籍型 (コード片 → なぜそう書くか の往復) を強制し、 教材として「学んで作る」 を繰り返すフォーマットを担保。 各 chapter は `state_transitions[]` で前章 state から本章 state への遷移を明示し、 actions[] (create_file / edit_file / define_symbol / call_symbol / extend_enum / add_dependency / run_command) で受講者の操作を構造化、 asserts[] (file_exists / symbol_defined / symbol_called / shell_exit_0 / http_response / manual) で完了検証を多層化する。 wiring chain (define ↔ call) を schema 上で表現 + Step 5.7 dogfooding (`--mode full` で project 単位並列の実機実行) で全 action/assert を機械検証することで「コース通りに実装すれば動くアプリが完成する」 保証を 90%+ に引き上げる。 section 数 4-8 / chapter 数 3-10 per section の可変設計を topic 特性 (言語入門 / framework + product / infra / library) から判定。 Context7 MCP + WebFetch + GitHub Awesome List + Exa の 4 source RAG retrieval + 5-stage progression (導入 → 基礎 → 応用 → 実践 → まとめ + capstone) + Bloom's taxonomy + worked-example→faded→independent 練習設計 + spaced retrieval (末尾 chapter type=exercise) で技術学習ベストプラクティスを担保。 triple-research-dev の 5 stage パイプライン (4 体並列研究 → synthesizer → planner → generator → reviewer) を踏襲、 ハルシネーション対策として引用 URL 必須 / retrieval-only / chapter 並列 reviewer で 100% カバレッジ + spot-check / Opus fact-check pass の 4 防衛を実装。 Step 5.5 schema 検証 + Step 5.7 dogfooding (Phase 3a = `--mode full`) はいずれも `check_handson_chain_v2.py` の 1 行実行で完結。 トリガーは `/pschool-course-builder <topic>` slash command、 または自然言語で『<トピック> でコース作って』『<トピック> のカリキュラム生成』『マイクロコース作成』『ハンズオンコース作って』『Cloud Run + gRPC でコース』『新規コース』『教材生成』『カリキュラム構築』『course.yaml 生成』『state machine DAG コース』『pschool で<X>を学ぶコース』『chapter プラン作成』『capstone 設計』『Curriculum Generator 試作』『Awesome List からカリキュラム』『最新の<X>でコース』などの依頼。 必ずこの skill を使うこと: ユーザーが pschool 用コース生成に関する単一語句を出した時点でも、 明示的に「skill 使って」 と言われていなくても発動する。 pschool 固有 yaml schema v2 (state_transitions / actions[] / asserts[] / wiring chain) に厳密準拠し、 生成後は `pschool start <course_id>` でそのまま受講開始でき、 かつ `python check_handson_chain_v2.py --mode schema courses/<id>/` が CRITICAL 0 を返す状態で出力される。
Is this skill free to install?
Yes. ClaudSkills is an open registry — every skill keeps its source repository's license, and manual install via copy is free. ClaudSkills Pro ($9/mo, $79/yr, or $149 one-time) adds one-click install via the desktop app and a multi-signal Quality Score.
When should I use the Pschool Course Builder skill?
Use Pschool Course Builder when your Claude Code task falls under the Science & Research category — specifically in the research methods area. Claude Code auto-discovers installed skills and invokes the right one based on the task description, so you can also ask Claude directly (e.g. "use Pschool Course Builder" or describe the task and let Claude pick). Browse related skills at
/category/science/.
What is a Claude Code skill and how does the Pschool Course Builder skill fit in?
A Claude Code skill is a
SKILL.md file that lives under
~/.claude/skills/<name>/ and tells the Claude Code CLI agent how to perform a specific task (instructions, prompts, allowed tools). Skills are auto-discovered at session start. Pschool Course Builder is one of 67,000+ skills indexed in the open ClaudSkills catalog, classified under the Science & Research category. Learn more at
/learn/what-is-a-claude-skill/.
Attribution & license
Cite this skill
If you reference this skill in a blog post, paper, or documentation, you can cite it as:
APA
lihs-ie. (2026). Pschool Course Builder [Claude Code skill]. ClaudSkills. https://claudskills.com/skills/pschool-course-builder/
BibTeX
@misc{pschool-course-builder-2026,
author = {lihs-ie},
title = {Pschool Course Builder [Claude Code skill]},
year = {2026},
publisher = {ClaudSkills},
url = {https://claudskills.com/skills/pschool-course-builder/}
}
Embed this skill
Promote, attribute, or link this skill from your own README, blog post, or documentation. All three snippets are free to use — no sign-up, no API key. More distribution surfaces →
Badge
[](https://claudskills.com/skills/pschool-course-builder/?utm_source=badge&utm_medium=readme&utm_campaign=skill_badge)
<script>
<script src="https://claudskills.com/embed/pschool-course-builder.js" async></script>
<iframe>
<iframe src="https://claudskills.com/embed/pschool-course-builder.html" width="100%" height="160" frameborder="0" loading="lazy" title="ClaudSkills: Pschool Course Builder"></iframe>
Security scan
Grade A · scanned 2026-07-18 — free static scan against the OWASP Agentic Skills Top 10.
The scan flagged 1 of 10 categories (network), including lower-severity patterns. Patterns shown inside code fences are weighted as examples rather than instructions — read the grading methodology for what this does and does not guarantee.
- ✓ Prompt injection
- ✓ Data exfiltration
- ✓ Supply chain
- ✓ Reverse shell
- ✓ Credentials
- ✓ Execution
- ✓ Filesystem
- ✓ Persistence
- ✓ Obfuscation
- ⚠ Network
Show this grade on your repo (click to copy):
[](https://claudskills.com/skills/pschool-course-builder/#security)
More Science & Research skills
Browse all Science & Research skills in the ClaudSkills registry, or explore these other picks from the same category:
Part of Acreator Store — Adam Lankamer's AI tools:
PerfectStudio ·
Ucaption ·
UTagger ·
AutoXPoster ·
TestYourSkills ·
AutomationFlows ·
Au Naturel ·
Telegram @acreatorstore