Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/dipro-vn/dipro-ai-boost --skill security-secure-api-consumptionコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
SOC 職業分類に基づく
| name | security-secure-api-consumption |
| description | null |
Category: security · Status: 🟢 Active
Khi gọi API từ FE: cấu hình transport, lỗi, secret, CORS và giới hạn tần suất.
const res = await fetch('/api/bff/orders', { credentials: 'include' });
if (!res.ok) throw new ApiError(res.status); // không lộ message nội bộ
const data = OrdersSchema.parse(await res.json());
Good: key ở server/BFF, retry có backoff, CORS allowlist.
Avoid: nhúng secret vào NEXT_PUBLIC_*, retry vô hạn, CORS * kèm credentials.