<< All versions
Skill v1.0.0
currentAutomated scan100/100minicoohei/ai-agent-camp/aiagent-verify-module
──Details
PublishedApril 28, 2026 at 05:31 AM
Content Hashsha256:d7af6c4395d6c1c6...
Git SHA9cd83f76f12f
──Files
Files (1 file, 2.3 KB)
SKILL.md2.3 KBactive
SKILL.md · 58 lines · 2.3 KB
name: aiagent-verify-module description: "モジュールの完了状況をAI評価で検証するスキル。 「モジュール確認」「モジュール1の達成度」「レッスンの完了チェック」「進捗を検証」「verify module」等のリクエストで発動。" version: 1.0.0 author: AI Brain Partners dependencies: [] triggers:
- aiagent-verify-module
- モジュール確認
- モジュールの達成度
- レッスン完了チェック
- 進捗を検証
- verify module
AI Agent Verify Module
Use this skill to verify whether a learner has successfully completed all lessons in a given module.
Inputs
- A module number (e.g.
1for Module 1: Banner/Image Generation)
Workflow
- Run the verification script to collect factual data:
``bash uv run python tools/verify_module.py --module <N> --json ``
- Parse the JSON output to understand:
- Which lessons exist in the module
- Which output files were expected and whether they exist/are valid
- What checkpoints each lesson defines
- For each lesson with existing output files, read the files to evaluate quality.
- For subjective checkpoints (e.g. "understood X"), ask the user for confirmation.
- Produce a structured evaluation report:
- Grade:
- A: 全レッスン完了 + 出力ファイルが正しい形式 + 追加の工夫あり
- B: 全レッスン完了 + 出力ファイルが正しい形式
- C: 一部レッスン未完了だが主要タスクは完了
- D: 主要タスクが未完了
- Per-lesson details: output status, checkpoint achievement
- Feedback: specific remediation steps for missing items
- Next steps: which lessons to redo or which module to proceed to
Required References
.cursor/commands/lesson/start-*.md— lesson definitions with checkpoints and output pathstools/verify_module.py— factual verification scripttools/lesson_progress.py— progress tracking utilities
Safety
- This skill is read-only. It does not modify any files or progress state.
- Never pretend the user can run Cursor slash commands directly in Codex.
Expected Output
- Module completion summary table
- Per-lesson breakdown with output status
- Overall grade (A/B/C/D)
- Actionable feedback and next steps