ソース情報
- リポジトリ
- aloisdeniel/skills
- ソースの最終更新活動
- 2026年1月26日 12:55
- 検出された SKILL.md の言語
- 英語
- スター
- 4
- フォーク
- 1
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
SOC 職業分類に基づく
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/aloisdeniel/skills --skill dev-dart-patternsコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
Implement the next highest priority user story from the PRD. Triggers on: implement the next feature, dev next feature.
Analyze product screenshots to extract feature lists and generate development task checklists. Use when: (1) Analyzing competitor product screenshots for feature extraction, (2) Generating PRD/task lists from UI designs, (3) Batch analyzing multiple app screens, (4) Conducting competitive analysis from visual references.
A CLI tool to manage Product Requirements Documents (PRDs) with features, user stories, and acceptance criteria. Triggers on: prd, product requirements, feature management, feature, user story.
| name | dev-dart-patterns |
| description | Common Dart specific development patterns. Triggers: flutter, dart |
This skill provides common development patterns to be used when developping programs using the Dart programming language.
class Example {
const Example({
required this.name,
});
final String name;
void greet() {
print('Hello, $name!');
}
}
/// Define a sealed class with subclasses
sealed class Result<T> {
const Result();
const factory Result.success(T data) = Success<T>;
const factory Result.error(int code) = Error<T>;
}
class Success<T> extends Result<T> {
final T data;
const Success(this.data);
}
class Error<T> extends Result<T> {
final int code;
const Error(this.code);
}
async functions with await and try/catch blocks over chaining then callsFuture<String> fetchData() async {
try {
final response = await http.get(Uri.parse('https://api.example.com/data'));
if (response.statusCode == 200) {
return response.body;
} else {
throw FetchException('Failed to load data, statuc code: ${response.statusCode}', inner: e);
}
} catch (e) {
throw FetchException('Error fetching data', inner: e);
}
}
switch statements and expressions when possible/// Pattern matching expressions with `switch`
@override
Widget build(BuildContext context) {
return switch(result) {
Success(:final data) => Container(color: Colors.green, child: Text('Success with data: $data')),
Error(:final code) => Text('Error with code: $code'),
};
}
/// Pattern matching statements with `switch`
switch(result) {
case Success(:final data):
print('Success with data: $data');
case Error(:final code)
print('Error with code: $code');
}