ソース情報
- リポジトリ
- 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 api-serverコマンドは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 | API Server |
| description | Standards for building HTTP services, REST APIs, and middleware in Golang. |
| metadata | {"labels":["golang","http","api","rest","middleware"],"triggers":{"files":["cmd/server/*.go","internal/adapter/handler/**"],"keywords":["http server","rest api","gin","echo","middleware"]}} |
net/http): Use for simple services or when zero deps is required. Use http.ServeMux (Go 1.22+ has decent routing).labstack/echo): Recommended for production REST APIs. Excellent middleware support, binding, and error handling.gin-gonic/gin): High performance alternative./health and /ready endpoints.application/json for REST APIs.func(next http.Handler) http.Handlerfunc(next echo.HandlerFunc) echo.HandlerFunc