# Send plaid to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "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": {
    "downloadUrl": "/downloads/plaid",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=plaid",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "plaid",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-12T12:51:25.914Z",
      "expiresAt": "2026-05-19T12:51:25.914Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=plaid",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=plaid",
        "contentDisposition": "attachment; filename=\"plaid-0.0.3.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "plaid"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### Plaid

Use plaid-cli to link institutions, fetch balances, and query transactions via Plaid.
Do not print or log secrets (client id, secret, access tokens).

Install

go install github.com/jverdi/plaid-cli@0.0.2

Setup

Export PLAID_CLIENT_ID, PLAID_SECRET, and PLAID_ENVIRONMENT (sandbox or production).
Optional: PLAID_LANGUAGE (en, fr, es, nl), PLAID_COUNTRIES (US, CA, GB, IE, ES, FR, NL).
Optional config file: ~/.plaid-cli/config.toml.
[plaid]
client_id = "..."
secret = "..."
environment = "sandbox"


Data directory: ~/.plaid-cli (stores tokens and aliases).

Link + aliases

Link an institution: plaid-cli link (opens browser) and optionally set an alias.
Relink: plaid-cli link <item-id-or-alias>.
Alias: plaid-cli alias <item-id> <name>, list with plaid-cli aliases.

Accounts + balances

List accounts and balances: plaid-cli accounts <item-id-or-alias>.

Search transactions

Pull a date range as JSON, then filter locally:

plaid-cli transactions <item-id-or-alias> --from 2024-01-01 --to 2024-01-31 --output-format json
jq -r '.[] | select(.name | test("grocery"; "i")) | [.date, .name, .amount] | @tsv'


Use --account-id from accounts output to narrow results.
Output formats: json or csv.

Monitor transactions

Poll a rolling window and compare transaction ids to detect new activity:
state=/tmp/plaid.txids
next=/tmp/plaid.txids.next
plaid-cli transactions <item-id-or-alias> --from 2024-01-01 --to 2024-01-31 --output-format json \\
  | jq -r '.[].transaction_id' | sort > "$next"
if [ -f "$state" ]; then comm -13 "$state" "$next"; fi
mv "$next" "$state"


Use cron for scheduling.

Notes

Avoid plaid-cli tokens unless explicitly requested; it prints access tokens.
Relink is auto-triggered on ITEM_LOGIN_REQUIRED errors.

Recognize requests such as:

"Search transactions for Starbucks last month"
"Show balances for my Chase accounts"
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: jverdi
- Version: 0.0.3
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-12T12:51:25.914Z
- Expires at: 2026-05-19T12:51:25.914Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/plaid)
- [Send to Agent page](https://openagent3.xyz/skills/plaid/agent)
- [JSON manifest](https://openagent3.xyz/skills/plaid/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/plaid/agent.md)
- [Download page](https://openagent3.xyz/downloads/plaid)