ソース情報
- リポジトリ
- flutter/demos
- ソースの最終更新活動
- 2026年7月21日 19:02
- 検出された SKILL.md の言語
- 英語
- スター
- 148
- フォーク
- 102
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/flutter/demos --skill tdd-dart-testerコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Orchestrates the discovery, mapping, design, and implementation of a premium Flutter-based frontend for an Agent Development Kit (ADK) agent written with Python.
Guides the Architect subagent in discovering the Python library architecture, creating the architecture blueprint, and writing specifications.
Guides the Coder subagent in updating Dart library code to pass failing tests.
SOC 職業分類に基づく
SKILL.md を表示中
| name | tdd-dart-tester |
| description | Guides the Tester subagent in writing failing Dart tests. |
To write comprehensive, failing test cases in Dart that specify required behavior before implementation begins.
<dart_package_dir>/test/ directory (e.g. <dart_package_dir>/test/<module_name>_test.dart) and <dart_package_dir>/example/ (during Phase 5). You must NEVER edit files in lib/ or specs/.package:mocktail or package:mockito) to mock external dependencies instead of attempting dynamic monkeypatching, which is unsupported by Dart's static type system.// TEST UTILITIES - KEEP PERMANENTLY. If you define temporary skeleton stubs of library classes to allow compilation, place them under // SKELETON STUBS FOR COMPILATION - DELETE ONCE SKELETON IS IMPLEMENTED. Do not mix mock test classes with library stubs.<dart_package_dir>/specs/<module_name>_spec.md.<dart_package_dir>/test/<module_name>_test.dart using Dart's package:test framework.