{
  "schemaVersion": "1.0",
  "item": {
    "slug": "plaid",
    "name": "plaid",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/jverdi/plaid",
    "canonicalUrl": "https://clawhub.ai/jverdi/plaid",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/plaid",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=plaid",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/plaid"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/plaid",
    "agentPageUrl": "https://openagent3.xyz/skills/plaid/agent",
    "manifestUrl": "https://openagent3.xyz/skills/plaid/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/plaid/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Plaid",
        "body": "Use plaid-cli to link institutions, fetch balances, and query transactions via Plaid.\nDo not print or log secrets (client id, secret, access tokens).\n\nInstall\n\ngo install github.com/jverdi/plaid-cli@0.0.2\n\nSetup\n\nExport PLAID_CLIENT_ID, PLAID_SECRET, and PLAID_ENVIRONMENT (sandbox or production).\nOptional: PLAID_LANGUAGE (en, fr, es, nl), PLAID_COUNTRIES (US, CA, GB, IE, ES, FR, NL).\nOptional config file: ~/.plaid-cli/config.toml.\n[plaid]\nclient_id = \"...\"\nsecret = \"...\"\nenvironment = \"sandbox\"\n\n\nData directory: ~/.plaid-cli (stores tokens and aliases).\n\nLink + aliases\n\nLink an institution: plaid-cli link (opens browser) and optionally set an alias.\nRelink: plaid-cli link <item-id-or-alias>.\nAlias: plaid-cli alias <item-id> <name>, list with plaid-cli aliases.\n\nAccounts + balances\n\nList accounts and balances: plaid-cli accounts <item-id-or-alias>.\n\nSearch transactions\n\nPull a date range as JSON, then filter locally:\n\nplaid-cli transactions <item-id-or-alias> --from 2024-01-01 --to 2024-01-31 --output-format json\njq -r '.[] | select(.name | test(\"grocery\"; \"i\")) | [.date, .name, .amount] | @tsv'\n\n\nUse --account-id from accounts output to narrow results.\nOutput formats: json or csv.\n\nMonitor transactions\n\nPoll a rolling window and compare transaction ids to detect new activity:\nstate=/tmp/plaid.txids\nnext=/tmp/plaid.txids.next\nplaid-cli transactions <item-id-or-alias> --from 2024-01-01 --to 2024-01-31 --output-format json \\\n  | jq -r '.[].transaction_id' | sort > \"$next\"\nif [ -f \"$state\" ]; then comm -13 \"$state\" \"$next\"; fi\nmv \"$next\" \"$state\"\n\n\nUse cron for scheduling.\n\nNotes\n\nAvoid plaid-cli tokens unless explicitly requested; it prints access tokens.\nRelink is auto-triggered on ITEM_LOGIN_REQUIRED errors.\n\nRecognize requests such as:\n\n\"Search transactions for Starbucks last month\"\n\"Show balances for my Chase accounts\""
      }
    ],
    "body": "Plaid\n\nUse plaid-cli to link institutions, fetch balances, and query transactions via Plaid. Do not print or log secrets (client id, secret, access tokens).\n\nInstall\n\ngo install github.com/jverdi/plaid-cli@0.0.2\n\nSetup\n\nExport PLAID_CLIENT_ID, PLAID_SECRET, and PLAID_ENVIRONMENT (sandbox or production).\nOptional: PLAID_LANGUAGE (en, fr, es, nl), PLAID_COUNTRIES (US, CA, GB, IE, ES, FR, NL).\nOptional config file: ~/.plaid-cli/config.toml.\n[plaid]\nclient_id = \"...\"\nsecret = \"...\"\nenvironment = \"sandbox\"\n\nData directory: ~/.plaid-cli (stores tokens and aliases).\n\nLink + aliases\n\nLink an institution: plaid-cli link (opens browser) and optionally set an alias.\nRelink: plaid-cli link <item-id-or-alias>.\nAlias: plaid-cli alias <item-id> <name>, list with plaid-cli aliases.\n\nAccounts + balances\n\nList accounts and balances: plaid-cli accounts <item-id-or-alias>.\n\nSearch transactions\n\nPull a date range as JSON, then filter locally:\nplaid-cli transactions <item-id-or-alias> --from 2024-01-01 --to 2024-01-31 --output-format json\njq -r '.[] | select(.name | test(\"grocery\"; \"i\")) | [.date, .name, .amount] | @tsv'\nUse --account-id from accounts output to narrow results.\nOutput formats: json or csv.\n\nMonitor transactions\n\nPoll a rolling window and compare transaction ids to detect new activity:\nstate=/tmp/plaid.txids\nnext=/tmp/plaid.txids.next\nplaid-cli transactions <item-id-or-alias> --from 2024-01-01 --to 2024-01-31 --output-format json \\\n  | jq -r '.[].transaction_id' | sort > \"$next\"\nif [ -f \"$state\" ]; then comm -13 \"$state\" \"$next\"; fi\nmv \"$next\" \"$state\"\n\nUse cron for scheduling.\n\nNotes\n\nAvoid plaid-cli tokens unless explicitly requested; it prints access tokens.\nRelink is auto-triggered on ITEM_LOGIN_REQUIRED errors.\n\nRecognize requests such as:\n\n\"Search transactions for Starbucks last month\"\n\"Show balances for my Chase accounts\""
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/jverdi/plaid",
    "publisherUrl": "https://clawhub.ai/jverdi/plaid",
    "owner": "jverdi",
    "version": "0.0.3",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/plaid",
    "downloadUrl": "https://openagent3.xyz/downloads/plaid",
    "agentUrl": "https://openagent3.xyz/skills/plaid/agent",
    "manifestUrl": "https://openagent3.xyz/skills/plaid/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/plaid/agent.md"
  }
}