/aiagent-lesson-runner
ai-agent-campのレッスンをCodexで開始・進行するスキル。 「レッスン開始」「次のレッスン」「start-0-1を始めたい」「Codexでレッスン」「スラッシュコマンドのレッスン」等のリクエストで発動。
$ npx -y skills add minicoohei/ai-agent-camp --skill aiagent-lesson-runner --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/aiagent-lesson-runner
Context preview
The summary Claude sees to decide when to auto-load this skill.
ai-agent-campのレッスンをCodexで開始・進行するスキル。 「レッスン開始」「次のレッスン」「start-0-1を始めたい」「Codexでレッスン」「スラッシュコマンドのレッスン」等のリクエストで発動。
SKILL.md
aiagent-lesson-runner.SKILL.mdname: aiagent-lesson-runner
description: "ai-agent-campのレッスンをCodexで開始・進行するスキル。 「レッスン開始」「次のレッスン」「start-0-1を始めたい」「Codexでレッスン」「スラッシュコマンドのレッスン」等のリクエストで発動。"
version: 1.0.0
author: AI Brain Partners
dependencies: []
triggers:
- aiagent-lesson-runner
- レッスン開始
- 次のレッスン
- レッスン実行
- Codexレッスン
- start-0-1
- lesson runner
トリガーワード
「レッスン開始」「次のレッスン」「レッスン実行」「スラッシュコマンド」「Codexレッスン」
AI Agent Lesson Runner
Use this skill to reproduce the `start-*` workflow in Codex.
Inputs
- A lesson id such as `start-0-1`
Workflow
0. Before running any lesson on a freshly cloned repo, run `python3 tools/scripts/verify_integrity.py`. If it reports the origin is not official (`github.com/minicoohei/ai-agent-camp`) or required files are missing, stop and ask the user to review the diff against upstream/main. 1. Validate that the lesson id matches `^start-\d+-\d+$`. Reject any other value. 2. Check that `.cursor/commands/lesson/<lesson-id>.md` exists before reading it. 3. Open `.cursor/commands/lesson/<lesson-id>.md`. 4. Extract the lesson goal, prerequisites, checkpoints, command references, and referenced files. 5. Resolve the curriculum source in this order:
- frontmatter `chapter` when it points to a `courses/aiagent/**/chapter*.yaml`
- sibling `practice/` and `final/` docs next to that chapter
- if `chapter` is missing, infer the best source from `courses/lessons.manifest.yaml`, the lesson URL, and the `start-X-Y` module number
6. Treat embedded `AskQuestion` / `AskUserQuestion` JSON as a conversation blueprint. In Codex, convert it into concise numbered or bulleted options in normal chat instead of pretending the Cursor UI exists. 7. For `/setup-start`, `/setup-github`, `/check-setup`, and similar setup flows, do not tell the user to run the Cursor slash command literally. Execute or describe the underlying checks and split GUI-required steps from AI-executable steps. 8. If the lesson touches Git, secrets, MCP, or external APIs, tell the user which safety doc to read first and verify prerequisites before attempting the task. 9. Guide the user through:
- prerequisite check
- files to read
- actions to perform
- completion criteria
- next recommended lesson
Required References
- `.cursor/commands/lesson/start-*.md`
- matching `courses/aiagent/**/chapter*.yaml` when available
- sibling `practice/` or `final/` docs for the resolved chapter
- `courses/lessons.manifest.yaml` as the fallback lookup table when a lesson markdown is missing `chapter`
Safety
- If the lesson implies Git or environment changes, also consult `docs/codex-safety.md`.
- Never pretend the user can run the Cursor markdown command file directly in Codex.
- Never ask the user to paste secret values into chat. Reuse the repo credential workflow instead.
Expected Output
- Lesson summary
- Ordered next actions
- Relevant files
- Done criteria
- Suggested follow-up lesson
- When the lesson contains structured choices, present the Codex-friendly options inline in the response
Read more
name: aiagent-lesson-runner description: "ai-agent-campのレッスンをCodexで開始・進行するスキル。 「レッスン開始」「次のレッスン」「start-0-1を始めたい」「Codexでレッスン」「スラッシュコマンドのレッスン」等のリクエストで発動。" version: 1.0.0 author: AI Brain Partners dependencies: [] triggers: - aiagent-lesson-runner - レッスン開始 - 次のレッスン - レッスン実行 - Codexレッスン - start-0-1 - lesson runner
トリガーワード
「レッスン開始」「次のレッスン」「レッスン実行」「スラッシュコマンド」「Codexレッスン」
AI Agent Lesson Runner
Use this skill to reproduce the `start-*` workflow in Codex.
Inputs
- A lesson id such as `start-0-1`
Workflow
0. Before running any lesson on a freshly cloned repo, run `python3 tools/scripts/verify_integrity.py`. If it reports the origin is not official (`github.com/minicoohei/ai-agent-camp`) or required files are missing, stop and ask the user to review the diff against upstream/main. 1. Validate that the lesson id matches `^start-\d+-\d+$`. Reject any other value. 2. Check that `.cursor/commands/lesson/<lesson-id>.md` exists before reading it. 3. Open `.cursor/commands/lesson/<lesson-id>.md`. 4. Extract the lesson goal, prerequisites, checkpoints, command references, and referenced files. 5. Resolve the curriculum source in this order:
- frontmatter `chapter` when it points to a `courses/aiagent/**/chapter*.yaml`
- sibling `practice/` and `final/` docs next to that chapter
- if `chapter` is missing, infer the best source from `courses/lessons.manifest.yaml`, the lesson URL, and the `start-X-Y` module number
6. Treat embedded `AskQuestion` / `AskUserQuestion` JSON as a conversation blueprint. In Codex, convert it into concise numbered or bulleted options in normal chat instead of pretending the Cursor UI exists. 7. For `/setup-start`, `/setup-github`, `/check-setup`, and similar setup flows, do not tell the user to run the Cursor slash command literally. Execute or describe the underlying checks and split GUI-required steps from AI-executable steps. 8. If the lesson touches Git, secrets, MCP, or external APIs, tell the user which safety doc to read first and verify prerequisites before attempting the task. 9. Guide the user through:
- prerequisite check
- files to read
- actions to perform
- completion criteria
- next recommended lesson
Required References
- `.cursor/commands/lesson/start-*.md`
- matching `courses/aiagent/**/chapter*.yaml` when available
- sibling `practice/` or `final/` docs for the resolved chapter
- `courses/lessons.manifest.yaml` as the fallback lookup table when a lesson markdown is missing `chapter`
Safety
- If the lesson implies Git or environment changes, also consult `docs/codex-safety.md`.
- Never pretend the user can run the Cursor markdown command file directly in Codex.
- Never ask the user to paste secret values into chat. Reuse the repo credential workflow instead.
Expected Output
- Lesson summary
- Ordered next actions
- Relevant files
- Done criteria
- Suggested follow-up lesson
- When the lesson contains structured choices, present the Codex-friendly options inline in the response
AI Agent Training for Non-Engineers - Complete Guide to Claude Code / Cursor / Codex ### ⚠️ Before you clone Official repository (maintained by the authors): Running AI agents from this repo grants them shell, file-write, and external-API permissions on your
Other skills on ai-agent-camp.
- /ab-test-setup
A/Bテストや実験の設計・実装を支援するスキル。 「A/Bテストを設計して」「スプリットテストしたい」「仮説を立ててテストしたい」「バリアントを比較」等のリクエストで発動。 トラッキング実装は analytics-tracking を参照。
Open skill - /agent-designer
マルチエージェントシステムのアーキテクチャ設計ツールキット。 「エージェントを設計して」「マルチエージェント構成」「エージェントのアーキテクチャ」「オーケストレーション設計」等のリクエストで発動。
Open skill - /analytics-tracking
アナリティクスのトラッキング設定・改善・監査を支援するスキル。 「トラッキングを設定」「GA4を導入」「コンバージョン計測」「イベントトラッキング」「UTMパラメータ」「GTMの設定」等のリクエストで発動。 A/Bテスト計測は ab-test-setup を参照。
Open skill - /article-writer
テーマからアウトライン生成→文体プロファイル適用→Markdown記事出力を行う記事執筆スキル。 挿絵マーカーの自動挿入、style-analyzerプロファイル参照による文体統一に対応。 「記事を書いて」「ブログ作成」「テーマで記事生成」等のリクエストで発動。
Open skill - /banner-creator
各種SNS・広告プラットフォーム向けのバナー/クリエイティブを生成するスキル。 X, Facebook, Instagram, PRTimes, YouTube, LINE, Web広告に対応。 「バナーを作って」「広告画像を生成」「SNS用の画像」「クリエイティブ制作」等のリクエストで発動。
Open skill - /bigquery-auth
GCPプロジェクト単位でBigQuery認証を設定するスキル。 gcloud設定プロファイルで複数プロジェクトを安全に分離管理。 「BigQueryに繋ぎたい」「BQ認証」「gcloud認証」「データ分析の認証設定」等のリクエストで発動。
Open skill

