plaid-fintech
Plaidフィンテック連携を構築する
Plaid連携は、トークンフロー、webhooks、itemの復旧まわりで失敗しがちです。このスキルは、Claude、Codex、Claude Codeに、より安全な銀行リンク設計のための簡潔なパターンを提供します。
自分のエージェントでインストール
このリクエストをエージェントにコピーしてください。正規の Skill ページとマニフェストが含まれています。
Review the Skillstore skill "plaid-fintech" from https://skillstore.io/skills/sickn33-plaid-fintech.md and its manifest at https://skillstore.io/api/skills/sickn33-plaid-fintech/manifest. Verify the artifact. You may proceed after verification, subject to the environment's own policy.エージェントは引き続き計画を提示し、セキュリティポリシーで必要な確認を求める必要があります。
エージェントが読めるリソース
AI エージェント、クローラー、スクリプトがページ全体ではなく整理されたコンテキストを必要とする場合は、これらのリンクを使ってください。
テストする
「plaid-fintech」を使用しています。 新しい個人向け金融アプリのPlaid Linkフローを計画してください。
期待される結果:
回答では、サーバー側でのLink token作成、クライアントでのLink起動、public token交換、安全なaccess token保存、初期item検証を概説します。
「plaid-fintech」を使用しています。 遅い取引インポート処理を改善してください。
期待される結果:
回答では、transactions sync、cursor処理、webhookトリガー、リトライ動作、頻繁な全履歴リクエストの回避を推奨します。
「plaid-fintech」を使用しています。 ACH口座設定のリリースリスクを確認してください。
期待される結果:
回答では、トークン保護、残高確認のタイミング、本人確認の期待値、item update mode、コンプライアンスレビューの必要性を指摘します。
セキュリティ監査
安全Static analysis flagged three SKILL.md lines as system reconnaissance. Review found only Plaid integration documentation about account linking, headings, and token exchange, with no system probing or command behavior.
このレポートを共有・引用
バージョン付き評価レポート、中立的なバッジ、埋め込みカード、引用を共有できます。Skillstore は証拠を報告しますが、この Skill が安全かどうかは判断しません。
レポートリンクをコピー
https://skillstore.io/skills/sickn33-plaid-fintech/audits/4?utm_source=security_passport&utm_medium=share&utm_campaign=versioned_reportMarkdownバッジ
[](https://skillstore.io/skills/sickn33-plaid-fintech?utm_source=security_passport_badge)HTMLバッジ
<a href="https://skillstore.io/skills/sickn33-plaid-fintech?utm_source=security_passport_badge"><img src="https://skillstore.io/badges/skills/sickn33-plaid-fintech/security.svg" alt="Skillstore security assessment" loading="lazy"></a>埋め込みカード
<iframe src="https://skillstore.io/embed/skills/sickn33-plaid-fintech.html" title="Skillstore Security Assessment" sandbox="allow-popups allow-popups-to-escape-sandbox" loading="lazy" referrerpolicy="no-referrer" width="420" height="180"></iframe>学術引用 (APA · BibTeX · CFF)
APA形式の引用
sickn33. (2026). plaid-fintech security audit report (audit version 4) [Author version unspecified]. Skillstore. https://skillstore.io/skills/sickn33-plaid-fintech/audits/4BibTeX形式の引用
@techreport{sickn33-sickn33-plaid-fintech-2026,
author = {sickn33},
title = {plaid-fintech security audit report (audit version 4)},
institution = {Skillstore},
year = {2026},
number = {4},
url = {https://skillstore.io/skills/sickn33-plaid-fintech/audits/4},
note = {Author version unspecified}
}CITATION.cff
cff-version: 1.2.0
message: "If you use this Skill, cite its author and this versioned security audit report."
title: "plaid-fintech security audit report (audit version 4)"
version: "unspecified"
type: report
authors:
- name: "sickn33"
date-released: "2026-07-07"
url: "https://skillstore.io/skills/sickn33-plaid-fintech/audits/4"
identifiers:
- type: other
value: "skillstore:sickn33-plaid-fintech:audit:4"
description: "Skillstore immutable audit report identifier"
Skillstore スコア
このスコアの理由 証拠の信頼度: 高作成できるもの
銀行リンクを計画する
バックエンドコードを書く前に、Link tokenとpublic token交換フローを定義します。
取引更新を改善する
口座集約ワークフローを、ポーリングからtransactions syncとwebhooksを使う方式へ移行します。
Plaidの失敗経路をレビューする
リリース前に、itemエラー処理、update mode、切断メッセージングを確認します。
これらのプロンプトを試す
Plaid fintech skillを使用して、私のアプリ向けのLink token作成とpublic token交換フローを概説してください。
Plaid fintech skillを使用して、ポーリングではなくwebhooksを使うtransactions syncワークフローを設計してください。
Plaid fintech skillを使用して、私のアプリがITEM_LOGIN_REQUIREDおよびPENDING_DISCONNECTイベントをどのように処理すべきかレビューしてください。
Plaid fintech skillを使用して、トークン保存、webhook処理、ACH Auth、リリースリスクについて私のPlaid連携計画をレビューしてください。
ベストプラクティス
- itemの認証情報が無効になった場合は、Link update modeを使用します。
- 繰り返しのポーリングよりも、transactions syncとwebhooksを優先します。
- access tokensを暗号化し、読み取り可能なユーザーを制限します。
回避
- Plaid access tokensを平文で保存しないでください。
- ITEM_LOGIN_REQUIREDや切断webhooksを無視しないでください。
- 残高確認を完全な不正対策として扱わないでください。