ソース情報
- リポジトリ
- 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 typescript-securityコマンドは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 | TypeScript Security |
| description | Secure coding practices for building safe TypeScript applications. |
| metadata | {"labels":["security","typescript","validation","sanitization"],"triggers":{"files":["**/*.ts","**/*.tsx"],"keywords":["validate","sanitize","xss","injection","auth","password","secret","token"]}} |
Security standards for TypeScript applications based on OWASP guidelines.
zod/joi/class-validator.DOMPurify for HTML. Prevent XSS.bcrypt for hashing. Implement strict RBAC.secure, httpOnly, sameSite cookies.npm audit.eval(): Avoid dynamic execution.// Validation (Zod)
const UserSchema = z.object({
email: z.string().email(),
password: z.string().min(8),
});
// Secure Cookie
const cookieOpts = {
httpOnly: true,
secure: process.env.NODE_ENV === 'prod',
sameSite: 'strict' as const,
};
For authentication patterns and security headers: See references/REFERENCE.md.
common/security-standards | best-practices | language