plugins/certificate/skills/collecting-kentei-lab-exams/SKILL.md
kentei-lab.com の資格・検定問題を、指定 URL からその資格の全問題(問題文・選択肢・正解・解説)を巡回取得し 1 資格 1 JSON ファイル(Anki 登録に適した構造化データ)に保存する。出力はそのまま creating-flashcards スキルへ渡して試験名ごとに Anki フラッシュカード化できる。 Use when kentei-lab の資格 URL(/exams/<slug> ・ /exams/<slug>/start ・ /quiz/<slug>/<n> のいずれか)を渡され 「問題を全部保存したい」「問題集を収集したい」「Anki カードにしたい」等と言われたとき。 補足トリガー: kentei-lab, ケンテイラボ, 検定, 資格試験, 問題集, quiz 収集, JSON 保存, Anki 連携。 ブラウザ操作自体の汎用ガイドは web:automating-browser、E2E テストは web:testing-e2e-with-playwright を使う。 本スキルは kentei-lab 専用の収集ワークフローと bundled script(scripts/collect-kentei-lab.sh)を提供する。
npx skillsauth add sumik5/sumik-claude-plugin collecting-kentei-lab-examsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
kentei-lab.com は認証不要・全問無料公開の資格・検定問題集サイト(147 資格・58,950 問収録)。人間は概要ページの 「問題を解く →」から開始ページの「全問題を始める N問」を選び、問題ページを 1 問ずつ進める。
本スキルの実装(scripts/collect-kentei-lab.sh)は、この人間の導線と同じ問題集合を /quiz/<slug>/<n>(n=1..N)
への直接 URL 反復で決定的に取得する。同一 n は常に同一問題であり(ランダム出題設定は提示順序のみに影響)、
「全問題を始める」ボタンや「次の問題へ」リンクのクリックには一切依存しない。そのため中断・再開に強く、
1 資格分(最大 1015 問)を長時間の run_in_background ジョブとして安全に走らせられる。
出力は 1 資格 1 JSON ファイル(<slug>.json)で、creating-flashcards スキルの kentei_lab_import.py
ファストパスにそのまま渡して 検定試験::<検定名>::<級>::kentei-lab(級を検出できない試験は
検定試験::<検定名>::kentei-lab)デッキへ一括登録できる。
詳細な導線・実行方法・出力フォーマット・resume の仕組み・トラブルシュートは INSTRUCTIONS.md を参照。
tools
FastAPI (Python) web API development guide covering fundamentals (routing, path/query params, Pydantic models, request/response, error handling), data persistence (SQLAlchemy, SQLModel, async DB, MongoDB, CRUD, Alembic migrations), dependency injection (Depends, dependency_overrides, scopes/lifespan), auth & security (OAuth2, JWT, CORS), async & concurrency (async/await, Starlette, BackgroundTasks, WebSocket, SSE/streaming), testing (TestClient, pytest, httpx, mocking), production deployment & scaling (uvicorn/gunicorn, Docker, optimization), generative-AI services (model serving, streaming, concurrency), and microservice/GraphQL/OpenAPI patterns. MUST load when fastapi is in pyproject.toml/requirements.txt or .py files import fastapi. For Python language/tooling fundamentals (uv/ruff/mypy, packaging, non-FastAPI patterns), use lang:developing-python. For REST/HTTP-spec design, versioning, and API test strategy, use developing-web-apis. For Node.js/Fastify backend services, use building-nodejs-services.
development
studying(スタディング, member.studying.jp)のコースレッスン一覧URLから、配下の「スマート問題集」 「セレクト過去問集(学科試験対策・実技試験対策)」の全問題(問題文・選択肢・正解・解説)を科目単位で 取得し、1科目1JSONファイルに保存する。出力は creating-flashcards スキルへ渡して科目ごとに Anki フラッシュカード化できる。 Use when studying のコースレッスン一覧URL(https://member.studying.jp/course/id/<course_id>/ 形式) を渡され「問題を全部保存したい」「Anki カードにしたい」等と言われたとき。 補足トリガー: studying, スタディング, 資格試験, スマート問題集, セレクト過去問集, 問題集, JSON 保存, Anki 連携。 ブラウザ操作自体の汎用ガイドは web:automating-browser、E2E テストは web:testing-e2e-with-playwright を使う。本スキルは studying 専用の収集ワークフロー + bundled script(scripts/collect-studying.sh) +ログイン認証を提供する。
development
Whizlabs のコース practice test 一覧URLから、配下の全クイズ(Free Test・Practice Test 1〜N 等)を practice mode で巡回し、各問題(問題文・選択肢・正解・解説・参考資料)を取得して 1 クイズ 1 JSON ファイルに 保存する。出力は creating-flashcards スキルへ渡してクイズごとに Anki フラッシュカード化できる。 Use when Whizlabs のコースURL(/learn/course/<slug>/<course-id>/pt 形式)を渡され 「問題を全部保存したい」「Anki カードにしたい」等と言われたとき。 補足トリガー: whizlabs, ホイズラボ, 資格試験, 問題集, practice test, quiz 収集, JSON 保存, Anki 連携。 ブラウザ操作自体の汎用ガイドは web:automating-browser、E2E テストは web:testing-e2e-with-playwright を使う。 本スキルは Whizlabs 専用の収集ワークフロー + bundled script(scripts/collect-whizlabs.sh)+ ログイン認証(agent-browser Auth Vault)を提供する。
development
Guides production Flutter app development with Dart targeting iOS, Android, web, and desktop from a single codebase, including project setup, the widget system (Stateless/Stateful, Material and Cupertino), layout, theming and animation, state management (setState, Provider, Riverpod, BLoC/Cubit, Redux, GetX), navigation and routing (Navigator, go_router, auto_route), networking and backends (http, dio, REST, Firebase, GraphQL), local persistence, responsive multi-platform design, architecture patterns (Clean Architecture, BLoC, MVVM), the pub.dev package ecosystem, widget and integration testing, performance optimization, and build and store release. REQUIRED when creating, implementing, modifying, testing, or shipping a Flutter app, or when pubspec.yaml lists the flutter SDK. For the Dart language itself (types, null safety, OOP, async, collections), use developing-dart. For native iOS/iPadOS apps in Swift/SwiftUI, use developing-ios-apps. For Apple HIG UI/UX decisions, use applying-apple-hig.