ソース情報
- リポジトリ
- Mte90/dotfiles
- ソースの最終更新活動
- 2026年2月24日 11:25
- 検出された SKILL.md の言語
- 英語
- スター
- 51
- フォーク
- 6
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/Mte90/dotfiles --skill php-error-handlingコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Django authentication - local accounts, social OAuth, registration, email verification, MFA, session management
django-filter - Django filtering library for querysets with Django REST Framework integration
Build modern dynamic web applications with Django and htmx - partial rendering, HTMX-specific responses, and seamless frontend integration
SOC 職業分類に基づく
SKILL.md を表示中
| name | PHP Error Handling |
| description | Modern PHP error and exception handling standards. |
| metadata | {"labels":["php","exceptions","error-handling","psr-3"],"triggers":{"files":["**/*.php"],"keywords":["try","catch","finally","Throwable","set_exception_handler"]}} |
src/
└── Exceptions/
├── {Domain}Exception.php
└── Handler.php
false.Throwable for both Errors and Exceptions.RuntimeException for domain-specific errors.catch (TypeA | TypeB $e) for identical handling.finally to ensure resource release.set_exception_handler in entry points.@.