Agent Skills by ALSEL
Anthropic Claudeソフトウェア開発⭐ リポ 1品質スコア 58/100

windsurf-known-pitfalls

Windsurfのアンチパターンと一般的な統合の誤りを特定して回避できます。Windsurfコードのレビューで問題を確認する場合や、新しい開発者のオンボーディング、既存のWindsurf統合でベストプラクティスの違反をチェックする際に利用してください。「windsurf mistakes」「windsurf anti-patterns」「windsurf pitfalls」「windsurf what not to do」「windsurf code review」などのフレーズで実行できます。

description の原文を見る

Identify and avoid Windsurf anti-patterns and common integration mistakes. Use when reviewing Windsurf code for issues, onboarding new developers, or auditing existing Windsurf integrations for best practices violations. Trigger with phrases like "windsurf mistakes", "windsurf anti-patterns", "windsurf pitfalls", "windsurf what not to do", "windsurf code review".

SKILL.md 本文

注意: このスキルのライセンスは ライセンス未確認 です。本サイトでは本文プレビューのみを表示しています。利用前に GitHub の原本でライセンス条件をご確認ください。

Windsurf 既知の落とし穴

概要

Windsurf との統合時に発生する一般的な間違いとアンチパターン。

前提条件

  • Windsurf コードベースへのレビューアクセス
  • async/await パターンの理解
  • セキュリティのベストプラクティスに関する知識
  • レート制限の概念に関する知識

落とし穴 #1: リクエストパス内の同期的 API 呼び出し

❌ アンチパターン

// ユーザーが Windsurf API 呼び出しを待つ
app.post('/checkout', async (req, res) => {
  const payment = await windsurfClient.processPayment(req.body);  // 2-5s latency
  const notification = await windsurfClient.sendEmail(payment);   // Another 1-2s
  res.json({ success: true });  // User waited 3-7s
});

✅ より良いアプローチ

// 即座に返却し、非同期で処理
app.post('/checkout', async

...

詳細情報

作者
Brmbobo
リポジトリ
Brmbobo/Web2podcast
ライセンス
不明
最終更新
2026/1/26

Source: https://github.com/Brmbobo/Web2podcast / ライセンス: 未指定

本サイトは GitHub 上で公開されているオープンソースの SKILL.md ファイルをクロール・インデックス化したものです。 各スキルの著作権は原作者に帰属します。掲載に問題がある場合は info@alsel.co.jp または /takedown フォームよりご連絡ください。
原作者: Brmbobo · Brmbobo/Web2podcast · ライセンス: ライセンス未確認