From test-maker
Test Maker (test-maker.app) で穴埋め・選択式・多答・別解ありの自動採点テストを作成・更新・一覧取得・内容取得する時に使う。ユーザーが「テストメーカーで問題作って」「穴埋めテスト作りたい」「〇〇のクイズを作って」「さっき作ったテストを直して」「問3だけ選択肢に変えて」などと依頼したとき、または `mcp__test-maker__create_examination` 等の MCP ツールを呼ぶ前に参照する。
How this skill is triggered — by the user, by Claude, or both
Slash command
/test-maker:test-makerThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
[Test Maker](https://www.test-maker.app/) は穴埋め・選択式・多答問題を自動採点できるオンラインテスト作成ツール。このスキルは **MCP 経由でテストの作成・更新・一覧取得・内容取得** を行うときのガイド。
Test Maker は穴埋め・選択式・多答問題を自動採点できるオンラインテスト作成ツール。このスキルは MCP 経由でテストの作成・更新・一覧取得・内容取得 を行うときのガイド。
接続方法がまだの場合は references/client-setup.md を参照してユーザーに案内する(Claude Code / Cursor / Claude Desktop / Codex CLI の設定手順を掲載)。
| ツール | 用途 |
|---|---|
create_examination | マークダウンから新しいテストを作成 |
update_examination | 既存テストを上書き保存(差分編集) |
get_examination | 既存テストをマークダウンで取得(差分編集の前段) |
list_my_examinations | 自分のテスト一覧(枠情報・最新20件) |
list_examination_tags | 公開テスト作成時に指定する tagId の一覧 |
get_account_status | 現在のプラン・枠消費状況 |
get_test_maker_format_spec | マークダウン記法の公式仕様(セッション 1 回だけ 取得してキャッシュ) |
get_feature_catalog | MCP でできること / 編集ページでできることの一覧(ユーザーから機能を問われたら参照) |
ユーザーが題材(教科書抜粋・PDF のテキスト・記事・手入力)を渡してきたら:
<question correct="..." /> タグを埋め込んだ原稿を作成するcreate_examination({ title, markdown }) を呼ぶ(既定で 非公開 作成)マークダウン記法の詳細(<question> タグ全属性・誤答選択肢の作り方・完成例)は references/format-spec.md を参照。
examinationId を特定する
create_examination / update_examination 応答に含まれる id を使うlist_my_examinations を呼んで 新しい順の一覧から特定(ユーザーに id を聞き返す前にまず呼ぶ)get_examination({ examinationId }) で 現在のマークダウンを取得update_examination({ examinationId, title, markdown }) で上書き保存原文を取らずに全文書き直すと精度が落ちる。必ず get_examination → 編集 → update_examination の順で。
list_my_examinations() を呼ぶ。応答先頭に無料枠の消費状況(非公開 X / 3・公開 Y / 10)が含まれるので、ユーザーに残り枠も併せて案内する。
get_feature_catalog() を呼ぶ。MCP 経由で今できること / 編集ページでのみ設定できること / 将来 MCP 対応検討中のことの一覧が返る。MCP に無い機能は編集ページ URL に誘導 するのが基本。
update_examination で上書きするget_test_maker_format_spec はセッション初回のみ呼ぶ(毎回呼ばない)tagId エラー・round-trip の崩れなど: references/troubleshooting.md## 基礎英単語
りんごの英語は<question correct="apple" />である。
光合成が行われる細胞小器官は<question correct="葉緑体" choiceItems='["ミトコンドリア", "葉緑体", "リボソーム", "ゴルジ体"]' isMultipleChoice="false" />である。
日本の与党第一党は<question correct='["自民党", "自由民主党"]' hasAlternativeSolutions="true" />である。
詳細仕様(属性全リスト・数式・正誤判定・多答・品質ルール)は references/format-spec.md を参照。
npx claudepluginhub texmeijin/test-maker-skillGuides test-driven development for Django applications using pytest-django, factory_boy, and Django REST Framework. Covers red-green-refactor workflow, conftest fixtures, and coverage reporting.