[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-anthropic-tres-recon-gaps":3,"mdc--uj1zma-key":34,"related-repo-anthropic-tres-recon-gaps":2728,"related-org-anthropic-tres-recon-gaps":2832},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":23,"repoUrl":24,"updatedAt":25,"license":26,"forks":27,"topics":28,"repo":29,"sourceUrl":32,"mdContent":33},"tres-recon-gaps","resolve TRES Finance reconciliation gaps","Query, display, and resolve reconciliation gaps from the TRES Finance MCP connector. Trigger this skill ONLY when the user explicitly requests to view or close reconciliation gaps — for example: \"show me the reconciliation gaps\", \"close the recon gaps\", \"view gaps for today\", \"plug the reconciliation gaps for ETH\", \"fix the gaps for USDC and BTC\". Do NOT trigger for general balance queries, transaction history, or ledger browsing. Covers the full workflow: confirming the target date, optionally filtering by asset, fetching gap data, enriching with fiat and on-chain balances, rendering an HTML dashboard where each gap row has copy-prompt buttons (Plug \u002F Auto-fill) — clicking copies a ready-to-paste Claude prompt for that gap. The user pastes it in the chat and Claude executes the action. Ends with a data collect once the user is done.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"anthropic","Anthropic","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fanthropic.png","anthropics",[13,17,20],{"name":14,"slug":15,"type":16},"Finance","finance","tag",{"name":18,"slug":19,"type":16},"Accounting","accounting",{"name":21,"slug":22,"type":16},"Reconciliation","reconciliation",294,"https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fclaude-plugins-community","2026-07-02T07:37:57.668108",null,69,[],{"repoUrl":24,"stars":23,"forks":27,"topics":30,"description":31},[],"Community plugin marketplace for Claude Cowork and Claude Code. Read-only mirror — submit plugins at clau.de\u002Fplugin-directory-submission.","https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fclaude-plugins-community\u002Ftree\u002FHEAD\u002Ftres-finance-plugin\u002Fskills\u002Ftres-recon-gaps","---\nname: tres-recon-gaps\ndescription: >\n  Query, display, and resolve reconciliation gaps from the TRES Finance MCP connector.\n  Trigger this skill ONLY when the user explicitly requests to view or close reconciliation\n  gaps — for example: \"show me the reconciliation gaps\", \"close the recon gaps\", \"view gaps\n  for today\", \"plug the reconciliation gaps for ETH\", \"fix the gaps for USDC and BTC\".\n  Do NOT trigger for general balance queries, transaction history, or ledger browsing.\n  Covers the full workflow: confirming the target date, optionally filtering by asset,\n  fetching gap data, enriching with fiat and on-chain balances, rendering an HTML dashboard\n  where each gap row has copy-prompt buttons (Plug \u002F Auto-fill) — clicking copies a\n  ready-to-paste Claude prompt for that gap. The user pastes it in the chat and Claude\n  executes the action. Ends with a data collect once the user is done.\ncompatibility: \"Requires TRES Finance MCP connector\"\n---\n\n# TRES Reconciliation Gaps Skill\n\nEnd-to-end workflow for surfacing, analyzing, and resolving reconciliation gaps in TRES Finance.\n\n---\n\n## Pre-flight: confirm date and asset scope\n\n**Before fetching any data**, confirm two things with the user:\n\n### 1. Target date\n\nThe reconciliation queries are scoped to a specific date (the `endDate` parameter).\n\n- If the user **explicitly stated a date** — use it.\n- If the user **did not mention a date** — assume today's date and inform them:\n  > \"I'll fetch reconciliation gaps for today (YYYY-MM-DD). Let me know if you want a different date.\"\n\nUse ISO format `YYYY-MM-DD` throughout.\n\n### 2. Asset filter (optional)\n\n- If the user **named specific assets** (e.g. \"for ETH and USDC\", \"just BTC\") — note them. After fetching, filter the results to only those `asset.symbol` values before displaying.\n- If the user **did not specify assets** — fetch and display all gaps.\n\n---\n\n## Step 1 — Fetch reconciliation gaps\n\nUse the `reconciliation` query. Always pass the confirmed `endDate`. Fetch up to 200 at a time.\n\n```graphql\nquery GetReconciliationGaps($limit: Int, $offset: Int, $endDate: Date) {\n  reconciliation(limit: $limit, offset: $offset, endDate: $endDate) {\n    totalCount\n    results {\n      id\n      amount\n      calculatedBalance\n      state\n      status\n      gap\n      belongsTo {\n        id\n        name\n        identifier\n      }\n      asset {\n        key\n        identifier\n        symbol\n        platform\n      }\n      pendingTransactionsCount\n      pendingTransactionsTotalAmount\n    }\n  }\n}\n```\n\nVariables: `{\"limit\": 200, \"offset\": 0, \"endDate\": \"\u003Cconfirmed-date>\"}`\n\n> Note: `gap` = `calculatedBalance − historicalBalance`. Positive means the ledger has *more* than on-chain; negative means the ledger has *less*.\n\nIf the user requested specific assets, filter the results now: keep only rows where `asset.symbol` matches the requested symbols (case-insensitive).\n\n---\n\n## Step 2 — Enrich with fiat values and on-chain balances\n\nTake all IDs from the (filtered) Step 1 results and query `assetBalance`:\n\n```graphql\nquery GetAssetBalancesWithFiat($ids: [String], $limit: Int, $currency: String) {\n  assetBalance(id_In: $ids, limit: $limit, currency: $currency, excludeUnderDelegation: true) {\n    totalCount\n    results {\n      id\n      calculatedBalance\n      historicalBalance\n      reconciliation\n      fiatValue {\n        value\n        unitPrice\n        fiatCurrency\n      }\n      belongsTo {\n        id\n        name\n        identifier\n      }\n      asset {\n        key\n        symbol\n        platform\n        identifier\n      }\n    }\n  }\n}\n```\n\nVariables: `{\"currency\": \"usd\", \"ids\": [\"\u003Cid1>\", \"\u003Cid2>\", ...], \"limit\": 200}`\n\n**Important**: `id_In` expects `[String]`, not `[ID]`.\n\nCompute for each row:\n```\nfiatGap = reconciliation (token gap) × fiatValue.unitPrice\n```\n\n---\n\n## Step 3 — Display: always render the HTML dashboard\n\n**Always** generate a standalone `.html` file as the primary output — do not fall back to an inline widget.\n\nRead `references\u002Fhtml-template-notes.md` for the full visual spec (fonts, colors, layout, column widths, modal behavior, API call mechanism).\n\nKey requirements for the generated file:\n- Dark financial dashboard aesthetic (spec in reference file)\n- Sticky header showing the **target date** and a refresh timestamp badge\n- 5 summary metric cards: net fiat gap, positive gap count, negative gap count, asset group count, pending tx count\n- If an **asset filter** was applied, show a visible filter badge in the toolbar (e.g. `Filtered: ETH, USDC`)\n- Search + direction filter + platform filter toolbar\n- Asset-grouped collapsible sections, sorted by absolute net fiat gap descending\n- Full column set per row — last column has two copy-prompt buttons: **↳ Plug** (blue) and **⟳ Auto-fill** (purple)\n- Clicking either button copies a ready-to-paste prompt to clipboard and shows a toast: \"Prompt copied — paste it in the Claude chat to resolve this gap.\"\n- **No HTTP requests** — the HTML is a pure display interface; all mutations happen in Claude after the user pastes the prompt\n\nAfter generating the file, present it to the user with `present_files`.\n\n---\n\n## Step 4 — Actions (plug-once and auto-fill)\n\nThe user triggers actions by copying a prompt from the HTML dashboard and pasting it into the Claude chat. When Claude receives one of these prompts, execute the corresponding mutation immediately — no further confirmation needed (the user already chose the action in the dashboard).\n\n### One-time plug (`createPlug`)\n\n```graphql\nmutation CreatePlug(\n  $hash: String!\n  $platform: Platform!\n  $timestamp: DateTime!\n  $belongsToId: ID!\n  $assetId: ID!\n  $assetIdentifier: String!\n  $amount: Float!\n  $direction: Direction!\n  $thirdPartyIdentifier: String!\n) {\n  createPlug(\n    hash: $hash\n    platform: $platform\n    timestamp: $timestamp\n    belongsToId: $belongsToId\n    assetId: $assetId\n    assetIdentifier: $assetIdentifier\n    amount: $amount\n    direction: $direction\n    thirdPartyIdentifier: $thirdPartyIdentifier\n  ) {\n    transaction { id identifier platform timestamp }\n  }\n}\n```\n\n**Variable mapping:**\n| Field | Value |\n|---|---|\n| `hash` | `plug_\u003CassetId>_\u003CwalletId>_\u003Ctimestamp_ms>` |\n| `platform` | `asset.platform` |\n| `timestamp` | `new Date().toISOString()` |\n| `belongsToId` | `belongsTo.id` |\n| `assetId` | `asset.key` |\n| `assetIdentifier` | `asset.identifier` (use `\"native\"` for native assets like ETH\u002FAVAX) |\n| `amount` | `Math.abs(gap)` |\n| `direction` | `gap > 0 ? \"INFLOW\" : \"OUTFLOW\"` |\n| `thirdPartyIdentifier` | `belongsTo.identifier` (wallet address) |\n\n### Auto gap-fill rule (`createReconciliationGapFillRule`)\n\n```graphql\nmutation CreateGapFillRule(\n  $name: String!\n  $assetId: String!\n  $internalAccountId: Int!\n  $interval: Interval!\n  $startDate: Date!\n  $endDate: Date!\n) {\n  createReconciliationGapFillRule(\n    name: $name\n    assetId: $assetId\n    internalAccountId: $internalAccountId\n    interval: $interval\n    startDate: $startDate\n    endDate: $endDate\n  ) {\n    success\n    message\n    ruleId\n  }\n}\n```\n\n**Variable mapping:**\n| Field | Value |\n|---|---|\n| `name` | User-editable rule name (pre-filled: `Auto gap-fill · \u003Casset> · \u003Cwallet>`) |\n| `assetId` | `asset.key` |\n| `internalAccountId` | `parseInt(belongsTo.id)` — must be `Int!` |\n| `interval` | `DAILY` \u002F `WEEKLY` \u002F `MONTHLY` |\n| `startDate` | ISO date string, e.g. `\"2026-04-07\"` |\n| `endDate` | ISO date string (default: 2 years from today) |\n\n---\n\n## Step 5 — Run data collect after plugs are done\n\nOnce the user indicates they are **finished adding plugs** (e.g. \"done\", \"that's all\", \"looks good\"), run a data collect to sync the updated state.\n\nUse the `triggerDataCollect` mutation (or equivalent — introspect with `get_schema_summary` if needed):\n\n```graphql\nmutation TriggerDataCollect {\n  triggerDataCollect {\n    success\n    message\n  }\n}\n```\n\nAfter it completes, inform the user:\n> \"Data collect triggered — TRES will now sync the latest on-chain balances. The reconciliation gaps should update shortly.\"\n\n---\n\n## Grouping and sorting logic\n\n**Default grouping: by asset symbol**\n- Group all rows sharing the same `asset.symbol` into one group\n- Net fiat gap shown per group header\n- Sort groups by absolute net fiat gap descending\n- Sort rows within each group by absolute fiat gap descending\n\n**Alternative: group by wallet** (if user requests it)\n- Group by `belongsTo.identifier`\n- Same sorting logic\n\nAlways order by **fiat gap**, not token gap.\n\n---\n\n## Number formatting conventions\n\n```js\n\u002F\u002F Fiat values\n≥ $1M  → \"$X.XXXM\"\n≥ $1K  → \"$X.XXK\"\n\u003C $1K  → \"$X.XX\"\n\n\u002F\u002F Token quantities\n≥ 1B   → \"X.XXXB\"\n≥ 1M   → \"X.XXXM\"\n≥ 1K   → \"X.XXXK\"\n\u003C 1K   → up to 6 significant figures, trim trailing zeros\n\n\u002F\u002F Signs\nPositive gaps: \"+\" prefix\nNegative gaps: \"−\" (minus sign, not hyphen)\nNo sign:       absolute values (on-chain bal, calculated bal)\n```\n\n---\n\n## Common edge cases\n\n| Situation | Handling |\n|---|---|\n| `unitPrice = 0` | Show \"—\" for fiat gap; token gap still displays |\n| `historicalBalance` is negative | Display as-is; flag visually if extreme |\n| `pendingTransactionsCount > 0` | Show amber warning badge — pending txs may reduce the gap once confirmed |\n| Very large token gaps with tiny fiat value | Still show; sort by fiat means they appear near bottom |\n| `gap` field timeouts on large datasets | Use `assetBalance.reconciliation` field instead (same value, more reliable) |\n| Asset filter yields zero rows | Inform the user: \"No gaps found for [assets] on [date]\" |\n\n---\n\n## Key schema facts (verified)\n\n- `reconciliation` query — has `endDate` parameter; returns `gap` and basic balance fields\n- `assetBalance` query — returns `historicalBalance`, `reconciliation` (= gap), and `fiatValue { value, unitPrice }`; **prefer for enriched data**\n- `assetBalance(id_In: [String])` — note `[String]` not `[ID]`\n- `createPlug` — `belongsToId` is `ID!`, `assetId` is `ID!` (pass the asset key string)\n- `createReconciliationGapFillRule` — `internalAccountId` is `Int!`; `assetId` is `String!`; `interval` is `Interval!` enum\n- Platform enum values: `ETHEREUM`, `BASE`, `ARBITRUM`, `OPTIMISM`, `POLYGON`, `AVAX`, `AVALANCHE_P_CHAIN`, `MANTRA`, etc.\n",{"data":35,"body":37},{"name":4,"description":6,"compatibility":36},"Requires TRES Finance MCP connector",{"type":38,"children":39},"root",[40,49,55,59,66,77,84,98,135,148,154,187,190,196,215,460,471,510,522,525,531,544,749,759,792,797,807,810,816,834,847,852,941,953,956,962,967,980,1185,1193,1422,1435,1605,1612,1779,1782,1788,1800,1820,1871,1876,1884,1887,1893,1901,1931,1941,1959,1971,1974,1980,2330,2333,2339,2479,2482,2488,2722],{"type":41,"tag":42,"props":43,"children":45},"element","h1",{"id":44},"tres-reconciliation-gaps-skill",[46],{"type":47,"value":48},"text","TRES Reconciliation Gaps Skill",{"type":41,"tag":50,"props":51,"children":52},"p",{},[53],{"type":47,"value":54},"End-to-end workflow for surfacing, analyzing, and resolving reconciliation gaps in TRES Finance.",{"type":41,"tag":56,"props":57,"children":58},"hr",{},[],{"type":41,"tag":60,"props":61,"children":63},"h2",{"id":62},"pre-flight-confirm-date-and-asset-scope",[64],{"type":47,"value":65},"Pre-flight: confirm date and asset scope",{"type":41,"tag":50,"props":67,"children":68},{},[69,75],{"type":41,"tag":70,"props":71,"children":72},"strong",{},[73],{"type":47,"value":74},"Before fetching any data",{"type":47,"value":76},", confirm two things with the user:",{"type":41,"tag":78,"props":79,"children":81},"h3",{"id":80},"_1-target-date",[82],{"type":47,"value":83},"1. Target date",{"type":41,"tag":50,"props":85,"children":86},{},[87,89,96],{"type":47,"value":88},"The reconciliation queries are scoped to a specific date (the ",{"type":41,"tag":90,"props":91,"children":93},"code",{"className":92},[],[94],{"type":47,"value":95},"endDate",{"type":47,"value":97}," parameter).",{"type":41,"tag":99,"props":100,"children":101},"ul",{},[102,115],{"type":41,"tag":103,"props":104,"children":105},"li",{},[106,108,113],{"type":47,"value":107},"If the user ",{"type":41,"tag":70,"props":109,"children":110},{},[111],{"type":47,"value":112},"explicitly stated a date",{"type":47,"value":114}," — use it.",{"type":41,"tag":103,"props":116,"children":117},{},[118,119,124,126],{"type":47,"value":107},{"type":41,"tag":70,"props":120,"children":121},{},[122],{"type":47,"value":123},"did not mention a date",{"type":47,"value":125}," — assume today's date and inform them:\n",{"type":41,"tag":127,"props":128,"children":129},"blockquote",{},[130],{"type":41,"tag":50,"props":131,"children":132},{},[133],{"type":47,"value":134},"\"I'll fetch reconciliation gaps for today (YYYY-MM-DD). Let me know if you want a different date.\"",{"type":41,"tag":50,"props":136,"children":137},{},[138,140,146],{"type":47,"value":139},"Use ISO format ",{"type":41,"tag":90,"props":141,"children":143},{"className":142},[],[144],{"type":47,"value":145},"YYYY-MM-DD",{"type":47,"value":147}," throughout.",{"type":41,"tag":78,"props":149,"children":151},{"id":150},"_2-asset-filter-optional",[152],{"type":47,"value":153},"2. Asset filter (optional)",{"type":41,"tag":99,"props":155,"children":156},{},[157,176],{"type":41,"tag":103,"props":158,"children":159},{},[160,161,166,168,174],{"type":47,"value":107},{"type":41,"tag":70,"props":162,"children":163},{},[164],{"type":47,"value":165},"named specific assets",{"type":47,"value":167}," (e.g. \"for ETH and USDC\", \"just BTC\") — note them. After fetching, filter the results to only those ",{"type":41,"tag":90,"props":169,"children":171},{"className":170},[],[172],{"type":47,"value":173},"asset.symbol",{"type":47,"value":175}," values before displaying.",{"type":41,"tag":103,"props":177,"children":178},{},[179,180,185],{"type":47,"value":107},{"type":41,"tag":70,"props":181,"children":182},{},[183],{"type":47,"value":184},"did not specify assets",{"type":47,"value":186}," — fetch and display all gaps.",{"type":41,"tag":56,"props":188,"children":189},{},[],{"type":41,"tag":60,"props":191,"children":193},{"id":192},"step-1-fetch-reconciliation-gaps",[194],{"type":47,"value":195},"Step 1 — Fetch reconciliation gaps",{"type":41,"tag":50,"props":197,"children":198},{},[199,201,206,208,213],{"type":47,"value":200},"Use the ",{"type":41,"tag":90,"props":202,"children":204},{"className":203},[],[205],{"type":47,"value":22},{"type":47,"value":207}," query. Always pass the confirmed ",{"type":41,"tag":90,"props":209,"children":211},{"className":210},[],[212],{"type":47,"value":95},{"type":47,"value":214},". Fetch up to 200 at a time.",{"type":41,"tag":216,"props":217,"children":222},"pre",{"className":218,"code":219,"language":220,"meta":221,"style":221},"language-graphql shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","query GetReconciliationGaps($limit: Int, $offset: Int, $endDate: Date) {\n  reconciliation(limit: $limit, offset: $offset, endDate: $endDate) {\n    totalCount\n    results {\n      id\n      amount\n      calculatedBalance\n      state\n      status\n      gap\n      belongsTo {\n        id\n        name\n        identifier\n      }\n      asset {\n        key\n        identifier\n        symbol\n        platform\n      }\n      pendingTransactionsCount\n      pendingTransactionsTotalAmount\n    }\n  }\n}\n","graphql","",[223],{"type":41,"tag":90,"props":224,"children":225},{"__ignoreMap":221},[226,237,246,255,264,273,282,291,300,309,318,327,336,345,354,363,372,381,389,398,407,415,424,433,442,451],{"type":41,"tag":227,"props":228,"children":231},"span",{"class":229,"line":230},"line",1,[232],{"type":41,"tag":227,"props":233,"children":234},{},[235],{"type":47,"value":236},"query GetReconciliationGaps($limit: Int, $offset: Int, $endDate: Date) {\n",{"type":41,"tag":227,"props":238,"children":240},{"class":229,"line":239},2,[241],{"type":41,"tag":227,"props":242,"children":243},{},[244],{"type":47,"value":245},"  reconciliation(limit: $limit, offset: $offset, endDate: $endDate) {\n",{"type":41,"tag":227,"props":247,"children":249},{"class":229,"line":248},3,[250],{"type":41,"tag":227,"props":251,"children":252},{},[253],{"type":47,"value":254},"    totalCount\n",{"type":41,"tag":227,"props":256,"children":258},{"class":229,"line":257},4,[259],{"type":41,"tag":227,"props":260,"children":261},{},[262],{"type":47,"value":263},"    results {\n",{"type":41,"tag":227,"props":265,"children":267},{"class":229,"line":266},5,[268],{"type":41,"tag":227,"props":269,"children":270},{},[271],{"type":47,"value":272},"      id\n",{"type":41,"tag":227,"props":274,"children":276},{"class":229,"line":275},6,[277],{"type":41,"tag":227,"props":278,"children":279},{},[280],{"type":47,"value":281},"      amount\n",{"type":41,"tag":227,"props":283,"children":285},{"class":229,"line":284},7,[286],{"type":41,"tag":227,"props":287,"children":288},{},[289],{"type":47,"value":290},"      calculatedBalance\n",{"type":41,"tag":227,"props":292,"children":294},{"class":229,"line":293},8,[295],{"type":41,"tag":227,"props":296,"children":297},{},[298],{"type":47,"value":299},"      state\n",{"type":41,"tag":227,"props":301,"children":303},{"class":229,"line":302},9,[304],{"type":41,"tag":227,"props":305,"children":306},{},[307],{"type":47,"value":308},"      status\n",{"type":41,"tag":227,"props":310,"children":312},{"class":229,"line":311},10,[313],{"type":41,"tag":227,"props":314,"children":315},{},[316],{"type":47,"value":317},"      gap\n",{"type":41,"tag":227,"props":319,"children":321},{"class":229,"line":320},11,[322],{"type":41,"tag":227,"props":323,"children":324},{},[325],{"type":47,"value":326},"      belongsTo {\n",{"type":41,"tag":227,"props":328,"children":330},{"class":229,"line":329},12,[331],{"type":41,"tag":227,"props":332,"children":333},{},[334],{"type":47,"value":335},"        id\n",{"type":41,"tag":227,"props":337,"children":339},{"class":229,"line":338},13,[340],{"type":41,"tag":227,"props":341,"children":342},{},[343],{"type":47,"value":344},"        name\n",{"type":41,"tag":227,"props":346,"children":348},{"class":229,"line":347},14,[349],{"type":41,"tag":227,"props":350,"children":351},{},[352],{"type":47,"value":353},"        identifier\n",{"type":41,"tag":227,"props":355,"children":357},{"class":229,"line":356},15,[358],{"type":41,"tag":227,"props":359,"children":360},{},[361],{"type":47,"value":362},"      }\n",{"type":41,"tag":227,"props":364,"children":366},{"class":229,"line":365},16,[367],{"type":41,"tag":227,"props":368,"children":369},{},[370],{"type":47,"value":371},"      asset {\n",{"type":41,"tag":227,"props":373,"children":375},{"class":229,"line":374},17,[376],{"type":41,"tag":227,"props":377,"children":378},{},[379],{"type":47,"value":380},"        key\n",{"type":41,"tag":227,"props":382,"children":384},{"class":229,"line":383},18,[385],{"type":41,"tag":227,"props":386,"children":387},{},[388],{"type":47,"value":353},{"type":41,"tag":227,"props":390,"children":392},{"class":229,"line":391},19,[393],{"type":41,"tag":227,"props":394,"children":395},{},[396],{"type":47,"value":397},"        symbol\n",{"type":41,"tag":227,"props":399,"children":401},{"class":229,"line":400},20,[402],{"type":41,"tag":227,"props":403,"children":404},{},[405],{"type":47,"value":406},"        platform\n",{"type":41,"tag":227,"props":408,"children":410},{"class":229,"line":409},21,[411],{"type":41,"tag":227,"props":412,"children":413},{},[414],{"type":47,"value":362},{"type":41,"tag":227,"props":416,"children":418},{"class":229,"line":417},22,[419],{"type":41,"tag":227,"props":420,"children":421},{},[422],{"type":47,"value":423},"      pendingTransactionsCount\n",{"type":41,"tag":227,"props":425,"children":427},{"class":229,"line":426},23,[428],{"type":41,"tag":227,"props":429,"children":430},{},[431],{"type":47,"value":432},"      pendingTransactionsTotalAmount\n",{"type":41,"tag":227,"props":434,"children":436},{"class":229,"line":435},24,[437],{"type":41,"tag":227,"props":438,"children":439},{},[440],{"type":47,"value":441},"    }\n",{"type":41,"tag":227,"props":443,"children":445},{"class":229,"line":444},25,[446],{"type":41,"tag":227,"props":447,"children":448},{},[449],{"type":47,"value":450},"  }\n",{"type":41,"tag":227,"props":452,"children":454},{"class":229,"line":453},26,[455],{"type":41,"tag":227,"props":456,"children":457},{},[458],{"type":47,"value":459},"}\n",{"type":41,"tag":50,"props":461,"children":462},{},[463,465],{"type":47,"value":464},"Variables: ",{"type":41,"tag":90,"props":466,"children":468},{"className":467},[],[469],{"type":47,"value":470},"{\"limit\": 200, \"offset\": 0, \"endDate\": \"\u003Cconfirmed-date>\"}",{"type":41,"tag":127,"props":472,"children":473},{},[474],{"type":41,"tag":50,"props":475,"children":476},{},[477,479,485,487,493,495,501,503,508],{"type":47,"value":478},"Note: ",{"type":41,"tag":90,"props":480,"children":482},{"className":481},[],[483],{"type":47,"value":484},"gap",{"type":47,"value":486}," = ",{"type":41,"tag":90,"props":488,"children":490},{"className":489},[],[491],{"type":47,"value":492},"calculatedBalance − historicalBalance",{"type":47,"value":494},". Positive means the ledger has ",{"type":41,"tag":496,"props":497,"children":498},"em",{},[499],{"type":47,"value":500},"more",{"type":47,"value":502}," than on-chain; negative means the ledger has ",{"type":41,"tag":496,"props":504,"children":505},{},[506],{"type":47,"value":507},"less",{"type":47,"value":509},".",{"type":41,"tag":50,"props":511,"children":512},{},[513,515,520],{"type":47,"value":514},"If the user requested specific assets, filter the results now: keep only rows where ",{"type":41,"tag":90,"props":516,"children":518},{"className":517},[],[519],{"type":47,"value":173},{"type":47,"value":521}," matches the requested symbols (case-insensitive).",{"type":41,"tag":56,"props":523,"children":524},{},[],{"type":41,"tag":60,"props":526,"children":528},{"id":527},"step-2-enrich-with-fiat-values-and-on-chain-balances",[529],{"type":47,"value":530},"Step 2 — Enrich with fiat values and on-chain balances",{"type":41,"tag":50,"props":532,"children":533},{},[534,536,542],{"type":47,"value":535},"Take all IDs from the (filtered) Step 1 results and query ",{"type":41,"tag":90,"props":537,"children":539},{"className":538},[],[540],{"type":47,"value":541},"assetBalance",{"type":47,"value":543},":",{"type":41,"tag":216,"props":545,"children":547},{"className":218,"code":546,"language":220,"meta":221,"style":221},"query GetAssetBalancesWithFiat($ids: [String], $limit: Int, $currency: String) {\n  assetBalance(id_In: $ids, limit: $limit, currency: $currency, excludeUnderDelegation: true) {\n    totalCount\n    results {\n      id\n      calculatedBalance\n      historicalBalance\n      reconciliation\n      fiatValue {\n        value\n        unitPrice\n        fiatCurrency\n      }\n      belongsTo {\n        id\n        name\n        identifier\n      }\n      asset {\n        key\n        symbol\n        platform\n        identifier\n      }\n    }\n  }\n}\n",[548],{"type":41,"tag":90,"props":549,"children":550},{"__ignoreMap":221},[551,559,567,574,581,588,595,603,611,619,627,635,643,650,657,664,671,678,685,692,699,706,713,720,727,734,741],{"type":41,"tag":227,"props":552,"children":553},{"class":229,"line":230},[554],{"type":41,"tag":227,"props":555,"children":556},{},[557],{"type":47,"value":558},"query GetAssetBalancesWithFiat($ids: [String], $limit: Int, $currency: String) {\n",{"type":41,"tag":227,"props":560,"children":561},{"class":229,"line":239},[562],{"type":41,"tag":227,"props":563,"children":564},{},[565],{"type":47,"value":566},"  assetBalance(id_In: $ids, limit: $limit, currency: $currency, excludeUnderDelegation: true) {\n",{"type":41,"tag":227,"props":568,"children":569},{"class":229,"line":248},[570],{"type":41,"tag":227,"props":571,"children":572},{},[573],{"type":47,"value":254},{"type":41,"tag":227,"props":575,"children":576},{"class":229,"line":257},[577],{"type":41,"tag":227,"props":578,"children":579},{},[580],{"type":47,"value":263},{"type":41,"tag":227,"props":582,"children":583},{"class":229,"line":266},[584],{"type":41,"tag":227,"props":585,"children":586},{},[587],{"type":47,"value":272},{"type":41,"tag":227,"props":589,"children":590},{"class":229,"line":275},[591],{"type":41,"tag":227,"props":592,"children":593},{},[594],{"type":47,"value":290},{"type":41,"tag":227,"props":596,"children":597},{"class":229,"line":284},[598],{"type":41,"tag":227,"props":599,"children":600},{},[601],{"type":47,"value":602},"      historicalBalance\n",{"type":41,"tag":227,"props":604,"children":605},{"class":229,"line":293},[606],{"type":41,"tag":227,"props":607,"children":608},{},[609],{"type":47,"value":610},"      reconciliation\n",{"type":41,"tag":227,"props":612,"children":613},{"class":229,"line":302},[614],{"type":41,"tag":227,"props":615,"children":616},{},[617],{"type":47,"value":618},"      fiatValue {\n",{"type":41,"tag":227,"props":620,"children":621},{"class":229,"line":311},[622],{"type":41,"tag":227,"props":623,"children":624},{},[625],{"type":47,"value":626},"        value\n",{"type":41,"tag":227,"props":628,"children":629},{"class":229,"line":320},[630],{"type":41,"tag":227,"props":631,"children":632},{},[633],{"type":47,"value":634},"        unitPrice\n",{"type":41,"tag":227,"props":636,"children":637},{"class":229,"line":329},[638],{"type":41,"tag":227,"props":639,"children":640},{},[641],{"type":47,"value":642},"        fiatCurrency\n",{"type":41,"tag":227,"props":644,"children":645},{"class":229,"line":338},[646],{"type":41,"tag":227,"props":647,"children":648},{},[649],{"type":47,"value":362},{"type":41,"tag":227,"props":651,"children":652},{"class":229,"line":347},[653],{"type":41,"tag":227,"props":654,"children":655},{},[656],{"type":47,"value":326},{"type":41,"tag":227,"props":658,"children":659},{"class":229,"line":356},[660],{"type":41,"tag":227,"props":661,"children":662},{},[663],{"type":47,"value":335},{"type":41,"tag":227,"props":665,"children":666},{"class":229,"line":365},[667],{"type":41,"tag":227,"props":668,"children":669},{},[670],{"type":47,"value":344},{"type":41,"tag":227,"props":672,"children":673},{"class":229,"line":374},[674],{"type":41,"tag":227,"props":675,"children":676},{},[677],{"type":47,"value":353},{"type":41,"tag":227,"props":679,"children":680},{"class":229,"line":383},[681],{"type":41,"tag":227,"props":682,"children":683},{},[684],{"type":47,"value":362},{"type":41,"tag":227,"props":686,"children":687},{"class":229,"line":391},[688],{"type":41,"tag":227,"props":689,"children":690},{},[691],{"type":47,"value":371},{"type":41,"tag":227,"props":693,"children":694},{"class":229,"line":400},[695],{"type":41,"tag":227,"props":696,"children":697},{},[698],{"type":47,"value":380},{"type":41,"tag":227,"props":700,"children":701},{"class":229,"line":409},[702],{"type":41,"tag":227,"props":703,"children":704},{},[705],{"type":47,"value":397},{"type":41,"tag":227,"props":707,"children":708},{"class":229,"line":417},[709],{"type":41,"tag":227,"props":710,"children":711},{},[712],{"type":47,"value":406},{"type":41,"tag":227,"props":714,"children":715},{"class":229,"line":426},[716],{"type":41,"tag":227,"props":717,"children":718},{},[719],{"type":47,"value":353},{"type":41,"tag":227,"props":721,"children":722},{"class":229,"line":435},[723],{"type":41,"tag":227,"props":724,"children":725},{},[726],{"type":47,"value":362},{"type":41,"tag":227,"props":728,"children":729},{"class":229,"line":444},[730],{"type":41,"tag":227,"props":731,"children":732},{},[733],{"type":47,"value":441},{"type":41,"tag":227,"props":735,"children":736},{"class":229,"line":453},[737],{"type":41,"tag":227,"props":738,"children":739},{},[740],{"type":47,"value":450},{"type":41,"tag":227,"props":742,"children":744},{"class":229,"line":743},27,[745],{"type":41,"tag":227,"props":746,"children":747},{},[748],{"type":47,"value":459},{"type":41,"tag":50,"props":750,"children":751},{},[752,753],{"type":47,"value":464},{"type":41,"tag":90,"props":754,"children":756},{"className":755},[],[757],{"type":47,"value":758},"{\"currency\": \"usd\", \"ids\": [\"\u003Cid1>\", \"\u003Cid2>\", ...], \"limit\": 200}",{"type":41,"tag":50,"props":760,"children":761},{},[762,767,769,775,777,783,785,791],{"type":41,"tag":70,"props":763,"children":764},{},[765],{"type":47,"value":766},"Important",{"type":47,"value":768},": ",{"type":41,"tag":90,"props":770,"children":772},{"className":771},[],[773],{"type":47,"value":774},"id_In",{"type":47,"value":776}," expects ",{"type":41,"tag":90,"props":778,"children":780},{"className":779},[],[781],{"type":47,"value":782},"[String]",{"type":47,"value":784},", not ",{"type":41,"tag":90,"props":786,"children":788},{"className":787},[],[789],{"type":47,"value":790},"[ID]",{"type":47,"value":509},{"type":41,"tag":50,"props":793,"children":794},{},[795],{"type":47,"value":796},"Compute for each row:",{"type":41,"tag":216,"props":798,"children":802},{"className":799,"code":801,"language":47},[800],"language-text","fiatGap = reconciliation (token gap) × fiatValue.unitPrice\n",[803],{"type":41,"tag":90,"props":804,"children":805},{"__ignoreMap":221},[806],{"type":47,"value":801},{"type":41,"tag":56,"props":808,"children":809},{},[],{"type":41,"tag":60,"props":811,"children":813},{"id":812},"step-3-display-always-render-the-html-dashboard",[814],{"type":47,"value":815},"Step 3 — Display: always render the HTML dashboard",{"type":41,"tag":50,"props":817,"children":818},{},[819,824,826,832],{"type":41,"tag":70,"props":820,"children":821},{},[822],{"type":47,"value":823},"Always",{"type":47,"value":825}," generate a standalone ",{"type":41,"tag":90,"props":827,"children":829},{"className":828},[],[830],{"type":47,"value":831},".html",{"type":47,"value":833}," file as the primary output — do not fall back to an inline widget.",{"type":41,"tag":50,"props":835,"children":836},{},[837,839,845],{"type":47,"value":838},"Read ",{"type":41,"tag":90,"props":840,"children":842},{"className":841},[],[843],{"type":47,"value":844},"references\u002Fhtml-template-notes.md",{"type":47,"value":846}," for the full visual spec (fonts, colors, layout, column widths, modal behavior, API call mechanism).",{"type":41,"tag":50,"props":848,"children":849},{},[850],{"type":47,"value":851},"Key requirements for the generated file:",{"type":41,"tag":99,"props":853,"children":854},{},[855,860,872,877,897,902,907,926,931],{"type":41,"tag":103,"props":856,"children":857},{},[858],{"type":47,"value":859},"Dark financial dashboard aesthetic (spec in reference file)",{"type":41,"tag":103,"props":861,"children":862},{},[863,865,870],{"type":47,"value":864},"Sticky header showing the ",{"type":41,"tag":70,"props":866,"children":867},{},[868],{"type":47,"value":869},"target date",{"type":47,"value":871}," and a refresh timestamp badge",{"type":41,"tag":103,"props":873,"children":874},{},[875],{"type":47,"value":876},"5 summary metric cards: net fiat gap, positive gap count, negative gap count, asset group count, pending tx count",{"type":41,"tag":103,"props":878,"children":879},{},[880,882,887,889,895],{"type":47,"value":881},"If an ",{"type":41,"tag":70,"props":883,"children":884},{},[885],{"type":47,"value":886},"asset filter",{"type":47,"value":888}," was applied, show a visible filter badge in the toolbar (e.g. ",{"type":41,"tag":90,"props":890,"children":892},{"className":891},[],[893],{"type":47,"value":894},"Filtered: ETH, USDC",{"type":47,"value":896},")",{"type":41,"tag":103,"props":898,"children":899},{},[900],{"type":47,"value":901},"Search + direction filter + platform filter toolbar",{"type":41,"tag":103,"props":903,"children":904},{},[905],{"type":47,"value":906},"Asset-grouped collapsible sections, sorted by absolute net fiat gap descending",{"type":41,"tag":103,"props":908,"children":909},{},[910,912,917,919,924],{"type":47,"value":911},"Full column set per row — last column has two copy-prompt buttons: ",{"type":41,"tag":70,"props":913,"children":914},{},[915],{"type":47,"value":916},"↳ Plug",{"type":47,"value":918}," (blue) and ",{"type":41,"tag":70,"props":920,"children":921},{},[922],{"type":47,"value":923},"⟳ Auto-fill",{"type":47,"value":925}," (purple)",{"type":41,"tag":103,"props":927,"children":928},{},[929],{"type":47,"value":930},"Clicking either button copies a ready-to-paste prompt to clipboard and shows a toast: \"Prompt copied — paste it in the Claude chat to resolve this gap.\"",{"type":41,"tag":103,"props":932,"children":933},{},[934,939],{"type":41,"tag":70,"props":935,"children":936},{},[937],{"type":47,"value":938},"No HTTP requests",{"type":47,"value":940}," — the HTML is a pure display interface; all mutations happen in Claude after the user pastes the prompt",{"type":41,"tag":50,"props":942,"children":943},{},[944,946,952],{"type":47,"value":945},"After generating the file, present it to the user with ",{"type":41,"tag":90,"props":947,"children":949},{"className":948},[],[950],{"type":47,"value":951},"present_files",{"type":47,"value":509},{"type":41,"tag":56,"props":954,"children":955},{},[],{"type":41,"tag":60,"props":957,"children":959},{"id":958},"step-4-actions-plug-once-and-auto-fill",[960],{"type":47,"value":961},"Step 4 — Actions (plug-once and auto-fill)",{"type":41,"tag":50,"props":963,"children":964},{},[965],{"type":47,"value":966},"The user triggers actions by copying a prompt from the HTML dashboard and pasting it into the Claude chat. When Claude receives one of these prompts, execute the corresponding mutation immediately — no further confirmation needed (the user already chose the action in the dashboard).",{"type":41,"tag":78,"props":968,"children":970},{"id":969},"one-time-plug-createplug",[971,973,979],{"type":47,"value":972},"One-time plug (",{"type":41,"tag":90,"props":974,"children":976},{"className":975},[],[977],{"type":47,"value":978},"createPlug",{"type":47,"value":896},{"type":41,"tag":216,"props":981,"children":983},{"className":218,"code":982,"language":220,"meta":221,"style":221},"mutation CreatePlug(\n  $hash: String!\n  $platform: Platform!\n  $timestamp: DateTime!\n  $belongsToId: ID!\n  $assetId: ID!\n  $assetIdentifier: String!\n  $amount: Float!\n  $direction: Direction!\n  $thirdPartyIdentifier: String!\n) {\n  createPlug(\n    hash: $hash\n    platform: $platform\n    timestamp: $timestamp\n    belongsToId: $belongsToId\n    assetId: $assetId\n    assetIdentifier: $assetIdentifier\n    amount: $amount\n    direction: $direction\n    thirdPartyIdentifier: $thirdPartyIdentifier\n  ) {\n    transaction { id identifier platform timestamp }\n  }\n}\n",[984],{"type":41,"tag":90,"props":985,"children":986},{"__ignoreMap":221},[987,995,1003,1011,1019,1027,1035,1043,1051,1059,1067,1075,1083,1091,1099,1107,1115,1123,1131,1139,1147,1155,1163,1171,1178],{"type":41,"tag":227,"props":988,"children":989},{"class":229,"line":230},[990],{"type":41,"tag":227,"props":991,"children":992},{},[993],{"type":47,"value":994},"mutation CreatePlug(\n",{"type":41,"tag":227,"props":996,"children":997},{"class":229,"line":239},[998],{"type":41,"tag":227,"props":999,"children":1000},{},[1001],{"type":47,"value":1002},"  $hash: String!\n",{"type":41,"tag":227,"props":1004,"children":1005},{"class":229,"line":248},[1006],{"type":41,"tag":227,"props":1007,"children":1008},{},[1009],{"type":47,"value":1010},"  $platform: Platform!\n",{"type":41,"tag":227,"props":1012,"children":1013},{"class":229,"line":257},[1014],{"type":41,"tag":227,"props":1015,"children":1016},{},[1017],{"type":47,"value":1018},"  $timestamp: DateTime!\n",{"type":41,"tag":227,"props":1020,"children":1021},{"class":229,"line":266},[1022],{"type":41,"tag":227,"props":1023,"children":1024},{},[1025],{"type":47,"value":1026},"  $belongsToId: ID!\n",{"type":41,"tag":227,"props":1028,"children":1029},{"class":229,"line":275},[1030],{"type":41,"tag":227,"props":1031,"children":1032},{},[1033],{"type":47,"value":1034},"  $assetId: ID!\n",{"type":41,"tag":227,"props":1036,"children":1037},{"class":229,"line":284},[1038],{"type":41,"tag":227,"props":1039,"children":1040},{},[1041],{"type":47,"value":1042},"  $assetIdentifier: String!\n",{"type":41,"tag":227,"props":1044,"children":1045},{"class":229,"line":293},[1046],{"type":41,"tag":227,"props":1047,"children":1048},{},[1049],{"type":47,"value":1050},"  $amount: Float!\n",{"type":41,"tag":227,"props":1052,"children":1053},{"class":229,"line":302},[1054],{"type":41,"tag":227,"props":1055,"children":1056},{},[1057],{"type":47,"value":1058},"  $direction: Direction!\n",{"type":41,"tag":227,"props":1060,"children":1061},{"class":229,"line":311},[1062],{"type":41,"tag":227,"props":1063,"children":1064},{},[1065],{"type":47,"value":1066},"  $thirdPartyIdentifier: String!\n",{"type":41,"tag":227,"props":1068,"children":1069},{"class":229,"line":320},[1070],{"type":41,"tag":227,"props":1071,"children":1072},{},[1073],{"type":47,"value":1074},") {\n",{"type":41,"tag":227,"props":1076,"children":1077},{"class":229,"line":329},[1078],{"type":41,"tag":227,"props":1079,"children":1080},{},[1081],{"type":47,"value":1082},"  createPlug(\n",{"type":41,"tag":227,"props":1084,"children":1085},{"class":229,"line":338},[1086],{"type":41,"tag":227,"props":1087,"children":1088},{},[1089],{"type":47,"value":1090},"    hash: $hash\n",{"type":41,"tag":227,"props":1092,"children":1093},{"class":229,"line":347},[1094],{"type":41,"tag":227,"props":1095,"children":1096},{},[1097],{"type":47,"value":1098},"    platform: $platform\n",{"type":41,"tag":227,"props":1100,"children":1101},{"class":229,"line":356},[1102],{"type":41,"tag":227,"props":1103,"children":1104},{},[1105],{"type":47,"value":1106},"    timestamp: $timestamp\n",{"type":41,"tag":227,"props":1108,"children":1109},{"class":229,"line":365},[1110],{"type":41,"tag":227,"props":1111,"children":1112},{},[1113],{"type":47,"value":1114},"    belongsToId: $belongsToId\n",{"type":41,"tag":227,"props":1116,"children":1117},{"class":229,"line":374},[1118],{"type":41,"tag":227,"props":1119,"children":1120},{},[1121],{"type":47,"value":1122},"    assetId: $assetId\n",{"type":41,"tag":227,"props":1124,"children":1125},{"class":229,"line":383},[1126],{"type":41,"tag":227,"props":1127,"children":1128},{},[1129],{"type":47,"value":1130},"    assetIdentifier: $assetIdentifier\n",{"type":41,"tag":227,"props":1132,"children":1133},{"class":229,"line":391},[1134],{"type":41,"tag":227,"props":1135,"children":1136},{},[1137],{"type":47,"value":1138},"    amount: $amount\n",{"type":41,"tag":227,"props":1140,"children":1141},{"class":229,"line":400},[1142],{"type":41,"tag":227,"props":1143,"children":1144},{},[1145],{"type":47,"value":1146},"    direction: $direction\n",{"type":41,"tag":227,"props":1148,"children":1149},{"class":229,"line":409},[1150],{"type":41,"tag":227,"props":1151,"children":1152},{},[1153],{"type":47,"value":1154},"    thirdPartyIdentifier: $thirdPartyIdentifier\n",{"type":41,"tag":227,"props":1156,"children":1157},{"class":229,"line":417},[1158],{"type":41,"tag":227,"props":1159,"children":1160},{},[1161],{"type":47,"value":1162},"  ) {\n",{"type":41,"tag":227,"props":1164,"children":1165},{"class":229,"line":426},[1166],{"type":41,"tag":227,"props":1167,"children":1168},{},[1169],{"type":47,"value":1170},"    transaction { id identifier platform timestamp }\n",{"type":41,"tag":227,"props":1172,"children":1173},{"class":229,"line":435},[1174],{"type":41,"tag":227,"props":1175,"children":1176},{},[1177],{"type":47,"value":450},{"type":41,"tag":227,"props":1179,"children":1180},{"class":229,"line":444},[1181],{"type":41,"tag":227,"props":1182,"children":1183},{},[1184],{"type":47,"value":459},{"type":41,"tag":50,"props":1186,"children":1187},{},[1188],{"type":41,"tag":70,"props":1189,"children":1190},{},[1191],{"type":47,"value":1192},"Variable mapping:",{"type":41,"tag":1194,"props":1195,"children":1196},"table",{},[1197,1216],{"type":41,"tag":1198,"props":1199,"children":1200},"thead",{},[1201],{"type":41,"tag":1202,"props":1203,"children":1204},"tr",{},[1205,1211],{"type":41,"tag":1206,"props":1207,"children":1208},"th",{},[1209],{"type":47,"value":1210},"Field",{"type":41,"tag":1206,"props":1212,"children":1213},{},[1214],{"type":47,"value":1215},"Value",{"type":41,"tag":1217,"props":1218,"children":1219},"tbody",{},[1220,1242,1263,1284,1305,1326,1357,1378,1399],{"type":41,"tag":1202,"props":1221,"children":1222},{},[1223,1233],{"type":41,"tag":1224,"props":1225,"children":1226},"td",{},[1227],{"type":41,"tag":90,"props":1228,"children":1230},{"className":1229},[],[1231],{"type":47,"value":1232},"hash",{"type":41,"tag":1224,"props":1234,"children":1235},{},[1236],{"type":41,"tag":90,"props":1237,"children":1239},{"className":1238},[],[1240],{"type":47,"value":1241},"plug_\u003CassetId>_\u003CwalletId>_\u003Ctimestamp_ms>",{"type":41,"tag":1202,"props":1243,"children":1244},{},[1245,1254],{"type":41,"tag":1224,"props":1246,"children":1247},{},[1248],{"type":41,"tag":90,"props":1249,"children":1251},{"className":1250},[],[1252],{"type":47,"value":1253},"platform",{"type":41,"tag":1224,"props":1255,"children":1256},{},[1257],{"type":41,"tag":90,"props":1258,"children":1260},{"className":1259},[],[1261],{"type":47,"value":1262},"asset.platform",{"type":41,"tag":1202,"props":1264,"children":1265},{},[1266,1275],{"type":41,"tag":1224,"props":1267,"children":1268},{},[1269],{"type":41,"tag":90,"props":1270,"children":1272},{"className":1271},[],[1273],{"type":47,"value":1274},"timestamp",{"type":41,"tag":1224,"props":1276,"children":1277},{},[1278],{"type":41,"tag":90,"props":1279,"children":1281},{"className":1280},[],[1282],{"type":47,"value":1283},"new Date().toISOString()",{"type":41,"tag":1202,"props":1285,"children":1286},{},[1287,1296],{"type":41,"tag":1224,"props":1288,"children":1289},{},[1290],{"type":41,"tag":90,"props":1291,"children":1293},{"className":1292},[],[1294],{"type":47,"value":1295},"belongsToId",{"type":41,"tag":1224,"props":1297,"children":1298},{},[1299],{"type":41,"tag":90,"props":1300,"children":1302},{"className":1301},[],[1303],{"type":47,"value":1304},"belongsTo.id",{"type":41,"tag":1202,"props":1306,"children":1307},{},[1308,1317],{"type":41,"tag":1224,"props":1309,"children":1310},{},[1311],{"type":41,"tag":90,"props":1312,"children":1314},{"className":1313},[],[1315],{"type":47,"value":1316},"assetId",{"type":41,"tag":1224,"props":1318,"children":1319},{},[1320],{"type":41,"tag":90,"props":1321,"children":1323},{"className":1322},[],[1324],{"type":47,"value":1325},"asset.key",{"type":41,"tag":1202,"props":1327,"children":1328},{},[1329,1338],{"type":41,"tag":1224,"props":1330,"children":1331},{},[1332],{"type":41,"tag":90,"props":1333,"children":1335},{"className":1334},[],[1336],{"type":47,"value":1337},"assetIdentifier",{"type":41,"tag":1224,"props":1339,"children":1340},{},[1341,1347,1349,1355],{"type":41,"tag":90,"props":1342,"children":1344},{"className":1343},[],[1345],{"type":47,"value":1346},"asset.identifier",{"type":47,"value":1348}," (use ",{"type":41,"tag":90,"props":1350,"children":1352},{"className":1351},[],[1353],{"type":47,"value":1354},"\"native\"",{"type":47,"value":1356}," for native assets like ETH\u002FAVAX)",{"type":41,"tag":1202,"props":1358,"children":1359},{},[1360,1369],{"type":41,"tag":1224,"props":1361,"children":1362},{},[1363],{"type":41,"tag":90,"props":1364,"children":1366},{"className":1365},[],[1367],{"type":47,"value":1368},"amount",{"type":41,"tag":1224,"props":1370,"children":1371},{},[1372],{"type":41,"tag":90,"props":1373,"children":1375},{"className":1374},[],[1376],{"type":47,"value":1377},"Math.abs(gap)",{"type":41,"tag":1202,"props":1379,"children":1380},{},[1381,1390],{"type":41,"tag":1224,"props":1382,"children":1383},{},[1384],{"type":41,"tag":90,"props":1385,"children":1387},{"className":1386},[],[1388],{"type":47,"value":1389},"direction",{"type":41,"tag":1224,"props":1391,"children":1392},{},[1393],{"type":41,"tag":90,"props":1394,"children":1396},{"className":1395},[],[1397],{"type":47,"value":1398},"gap > 0 ? \"INFLOW\" : \"OUTFLOW\"",{"type":41,"tag":1202,"props":1400,"children":1401},{},[1402,1411],{"type":41,"tag":1224,"props":1403,"children":1404},{},[1405],{"type":41,"tag":90,"props":1406,"children":1408},{"className":1407},[],[1409],{"type":47,"value":1410},"thirdPartyIdentifier",{"type":41,"tag":1224,"props":1412,"children":1413},{},[1414,1420],{"type":41,"tag":90,"props":1415,"children":1417},{"className":1416},[],[1418],{"type":47,"value":1419},"belongsTo.identifier",{"type":47,"value":1421}," (wallet address)",{"type":41,"tag":78,"props":1423,"children":1425},{"id":1424},"auto-gap-fill-rule-createreconciliationgapfillrule",[1426,1428,1434],{"type":47,"value":1427},"Auto gap-fill rule (",{"type":41,"tag":90,"props":1429,"children":1431},{"className":1430},[],[1432],{"type":47,"value":1433},"createReconciliationGapFillRule",{"type":47,"value":896},{"type":41,"tag":216,"props":1436,"children":1438},{"className":218,"code":1437,"language":220,"meta":221,"style":221},"mutation CreateGapFillRule(\n  $name: String!\n  $assetId: String!\n  $internalAccountId: Int!\n  $interval: Interval!\n  $startDate: Date!\n  $endDate: Date!\n) {\n  createReconciliationGapFillRule(\n    name: $name\n    assetId: $assetId\n    internalAccountId: $internalAccountId\n    interval: $interval\n    startDate: $startDate\n    endDate: $endDate\n  ) {\n    success\n    message\n    ruleId\n  }\n}\n",[1439],{"type":41,"tag":90,"props":1440,"children":1441},{"__ignoreMap":221},[1442,1450,1458,1466,1474,1482,1490,1498,1505,1513,1521,1528,1536,1544,1552,1560,1567,1575,1583,1591,1598],{"type":41,"tag":227,"props":1443,"children":1444},{"class":229,"line":230},[1445],{"type":41,"tag":227,"props":1446,"children":1447},{},[1448],{"type":47,"value":1449},"mutation CreateGapFillRule(\n",{"type":41,"tag":227,"props":1451,"children":1452},{"class":229,"line":239},[1453],{"type":41,"tag":227,"props":1454,"children":1455},{},[1456],{"type":47,"value":1457},"  $name: String!\n",{"type":41,"tag":227,"props":1459,"children":1460},{"class":229,"line":248},[1461],{"type":41,"tag":227,"props":1462,"children":1463},{},[1464],{"type":47,"value":1465},"  $assetId: String!\n",{"type":41,"tag":227,"props":1467,"children":1468},{"class":229,"line":257},[1469],{"type":41,"tag":227,"props":1470,"children":1471},{},[1472],{"type":47,"value":1473},"  $internalAccountId: Int!\n",{"type":41,"tag":227,"props":1475,"children":1476},{"class":229,"line":266},[1477],{"type":41,"tag":227,"props":1478,"children":1479},{},[1480],{"type":47,"value":1481},"  $interval: Interval!\n",{"type":41,"tag":227,"props":1483,"children":1484},{"class":229,"line":275},[1485],{"type":41,"tag":227,"props":1486,"children":1487},{},[1488],{"type":47,"value":1489},"  $startDate: Date!\n",{"type":41,"tag":227,"props":1491,"children":1492},{"class":229,"line":284},[1493],{"type":41,"tag":227,"props":1494,"children":1495},{},[1496],{"type":47,"value":1497},"  $endDate: Date!\n",{"type":41,"tag":227,"props":1499,"children":1500},{"class":229,"line":293},[1501],{"type":41,"tag":227,"props":1502,"children":1503},{},[1504],{"type":47,"value":1074},{"type":41,"tag":227,"props":1506,"children":1507},{"class":229,"line":302},[1508],{"type":41,"tag":227,"props":1509,"children":1510},{},[1511],{"type":47,"value":1512},"  createReconciliationGapFillRule(\n",{"type":41,"tag":227,"props":1514,"children":1515},{"class":229,"line":311},[1516],{"type":41,"tag":227,"props":1517,"children":1518},{},[1519],{"type":47,"value":1520},"    name: $name\n",{"type":41,"tag":227,"props":1522,"children":1523},{"class":229,"line":320},[1524],{"type":41,"tag":227,"props":1525,"children":1526},{},[1527],{"type":47,"value":1122},{"type":41,"tag":227,"props":1529,"children":1530},{"class":229,"line":329},[1531],{"type":41,"tag":227,"props":1532,"children":1533},{},[1534],{"type":47,"value":1535},"    internalAccountId: $internalAccountId\n",{"type":41,"tag":227,"props":1537,"children":1538},{"class":229,"line":338},[1539],{"type":41,"tag":227,"props":1540,"children":1541},{},[1542],{"type":47,"value":1543},"    interval: $interval\n",{"type":41,"tag":227,"props":1545,"children":1546},{"class":229,"line":347},[1547],{"type":41,"tag":227,"props":1548,"children":1549},{},[1550],{"type":47,"value":1551},"    startDate: $startDate\n",{"type":41,"tag":227,"props":1553,"children":1554},{"class":229,"line":356},[1555],{"type":41,"tag":227,"props":1556,"children":1557},{},[1558],{"type":47,"value":1559},"    endDate: $endDate\n",{"type":41,"tag":227,"props":1561,"children":1562},{"class":229,"line":365},[1563],{"type":41,"tag":227,"props":1564,"children":1565},{},[1566],{"type":47,"value":1162},{"type":41,"tag":227,"props":1568,"children":1569},{"class":229,"line":374},[1570],{"type":41,"tag":227,"props":1571,"children":1572},{},[1573],{"type":47,"value":1574},"    success\n",{"type":41,"tag":227,"props":1576,"children":1577},{"class":229,"line":383},[1578],{"type":41,"tag":227,"props":1579,"children":1580},{},[1581],{"type":47,"value":1582},"    message\n",{"type":41,"tag":227,"props":1584,"children":1585},{"class":229,"line":391},[1586],{"type":41,"tag":227,"props":1587,"children":1588},{},[1589],{"type":47,"value":1590},"    ruleId\n",{"type":41,"tag":227,"props":1592,"children":1593},{"class":229,"line":400},[1594],{"type":41,"tag":227,"props":1595,"children":1596},{},[1597],{"type":47,"value":450},{"type":41,"tag":227,"props":1599,"children":1600},{"class":229,"line":409},[1601],{"type":41,"tag":227,"props":1602,"children":1603},{},[1604],{"type":47,"value":459},{"type":41,"tag":50,"props":1606,"children":1607},{},[1608],{"type":41,"tag":70,"props":1609,"children":1610},{},[1611],{"type":47,"value":1192},{"type":41,"tag":1194,"props":1613,"children":1614},{},[1615,1629],{"type":41,"tag":1198,"props":1616,"children":1617},{},[1618],{"type":41,"tag":1202,"props":1619,"children":1620},{},[1621,1625],{"type":41,"tag":1206,"props":1622,"children":1623},{},[1624],{"type":47,"value":1210},{"type":41,"tag":1206,"props":1626,"children":1627},{},[1628],{"type":47,"value":1215},{"type":41,"tag":1217,"props":1630,"children":1631},{},[1632,1656,1675,1704,1740,1763],{"type":41,"tag":1202,"props":1633,"children":1634},{},[1635,1644],{"type":41,"tag":1224,"props":1636,"children":1637},{},[1638],{"type":41,"tag":90,"props":1639,"children":1641},{"className":1640},[],[1642],{"type":47,"value":1643},"name",{"type":41,"tag":1224,"props":1645,"children":1646},{},[1647,1649,1655],{"type":47,"value":1648},"User-editable rule name (pre-filled: ",{"type":41,"tag":90,"props":1650,"children":1652},{"className":1651},[],[1653],{"type":47,"value":1654},"Auto gap-fill · \u003Casset> · \u003Cwallet>",{"type":47,"value":896},{"type":41,"tag":1202,"props":1657,"children":1658},{},[1659,1667],{"type":41,"tag":1224,"props":1660,"children":1661},{},[1662],{"type":41,"tag":90,"props":1663,"children":1665},{"className":1664},[],[1666],{"type":47,"value":1316},{"type":41,"tag":1224,"props":1668,"children":1669},{},[1670],{"type":41,"tag":90,"props":1671,"children":1673},{"className":1672},[],[1674],{"type":47,"value":1325},{"type":41,"tag":1202,"props":1676,"children":1677},{},[1678,1687],{"type":41,"tag":1224,"props":1679,"children":1680},{},[1681],{"type":41,"tag":90,"props":1682,"children":1684},{"className":1683},[],[1685],{"type":47,"value":1686},"internalAccountId",{"type":41,"tag":1224,"props":1688,"children":1689},{},[1690,1696,1698],{"type":41,"tag":90,"props":1691,"children":1693},{"className":1692},[],[1694],{"type":47,"value":1695},"parseInt(belongsTo.id)",{"type":47,"value":1697}," — must be ",{"type":41,"tag":90,"props":1699,"children":1701},{"className":1700},[],[1702],{"type":47,"value":1703},"Int!",{"type":41,"tag":1202,"props":1705,"children":1706},{},[1707,1716],{"type":41,"tag":1224,"props":1708,"children":1709},{},[1710],{"type":41,"tag":90,"props":1711,"children":1713},{"className":1712},[],[1714],{"type":47,"value":1715},"interval",{"type":41,"tag":1224,"props":1717,"children":1718},{},[1719,1725,1727,1733,1734],{"type":41,"tag":90,"props":1720,"children":1722},{"className":1721},[],[1723],{"type":47,"value":1724},"DAILY",{"type":47,"value":1726}," \u002F ",{"type":41,"tag":90,"props":1728,"children":1730},{"className":1729},[],[1731],{"type":47,"value":1732},"WEEKLY",{"type":47,"value":1726},{"type":41,"tag":90,"props":1735,"children":1737},{"className":1736},[],[1738],{"type":47,"value":1739},"MONTHLY",{"type":41,"tag":1202,"props":1741,"children":1742},{},[1743,1752],{"type":41,"tag":1224,"props":1744,"children":1745},{},[1746],{"type":41,"tag":90,"props":1747,"children":1749},{"className":1748},[],[1750],{"type":47,"value":1751},"startDate",{"type":41,"tag":1224,"props":1753,"children":1754},{},[1755,1757],{"type":47,"value":1756},"ISO date string, e.g. ",{"type":41,"tag":90,"props":1758,"children":1760},{"className":1759},[],[1761],{"type":47,"value":1762},"\"2026-04-07\"",{"type":41,"tag":1202,"props":1764,"children":1765},{},[1766,1774],{"type":41,"tag":1224,"props":1767,"children":1768},{},[1769],{"type":41,"tag":90,"props":1770,"children":1772},{"className":1771},[],[1773],{"type":47,"value":95},{"type":41,"tag":1224,"props":1775,"children":1776},{},[1777],{"type":47,"value":1778},"ISO date string (default: 2 years from today)",{"type":41,"tag":56,"props":1780,"children":1781},{},[],{"type":41,"tag":60,"props":1783,"children":1785},{"id":1784},"step-5-run-data-collect-after-plugs-are-done",[1786],{"type":47,"value":1787},"Step 5 — Run data collect after plugs are done",{"type":41,"tag":50,"props":1789,"children":1790},{},[1791,1793,1798],{"type":47,"value":1792},"Once the user indicates they are ",{"type":41,"tag":70,"props":1794,"children":1795},{},[1796],{"type":47,"value":1797},"finished adding plugs",{"type":47,"value":1799}," (e.g. \"done\", \"that's all\", \"looks good\"), run a data collect to sync the updated state.",{"type":41,"tag":50,"props":1801,"children":1802},{},[1803,1804,1810,1812,1818],{"type":47,"value":200},{"type":41,"tag":90,"props":1805,"children":1807},{"className":1806},[],[1808],{"type":47,"value":1809},"triggerDataCollect",{"type":47,"value":1811}," mutation (or equivalent — introspect with ",{"type":41,"tag":90,"props":1813,"children":1815},{"className":1814},[],[1816],{"type":47,"value":1817},"get_schema_summary",{"type":47,"value":1819}," if needed):",{"type":41,"tag":216,"props":1821,"children":1823},{"className":218,"code":1822,"language":220,"meta":221,"style":221},"mutation TriggerDataCollect {\n  triggerDataCollect {\n    success\n    message\n  }\n}\n",[1824],{"type":41,"tag":90,"props":1825,"children":1826},{"__ignoreMap":221},[1827,1835,1843,1850,1857,1864],{"type":41,"tag":227,"props":1828,"children":1829},{"class":229,"line":230},[1830],{"type":41,"tag":227,"props":1831,"children":1832},{},[1833],{"type":47,"value":1834},"mutation TriggerDataCollect {\n",{"type":41,"tag":227,"props":1836,"children":1837},{"class":229,"line":239},[1838],{"type":41,"tag":227,"props":1839,"children":1840},{},[1841],{"type":47,"value":1842},"  triggerDataCollect {\n",{"type":41,"tag":227,"props":1844,"children":1845},{"class":229,"line":248},[1846],{"type":41,"tag":227,"props":1847,"children":1848},{},[1849],{"type":47,"value":1574},{"type":41,"tag":227,"props":1851,"children":1852},{"class":229,"line":257},[1853],{"type":41,"tag":227,"props":1854,"children":1855},{},[1856],{"type":47,"value":1582},{"type":41,"tag":227,"props":1858,"children":1859},{"class":229,"line":266},[1860],{"type":41,"tag":227,"props":1861,"children":1862},{},[1863],{"type":47,"value":450},{"type":41,"tag":227,"props":1865,"children":1866},{"class":229,"line":275},[1867],{"type":41,"tag":227,"props":1868,"children":1869},{},[1870],{"type":47,"value":459},{"type":41,"tag":50,"props":1872,"children":1873},{},[1874],{"type":47,"value":1875},"After it completes, inform the user:",{"type":41,"tag":127,"props":1877,"children":1878},{},[1879],{"type":41,"tag":50,"props":1880,"children":1881},{},[1882],{"type":47,"value":1883},"\"Data collect triggered — TRES will now sync the latest on-chain balances. The reconciliation gaps should update shortly.\"",{"type":41,"tag":56,"props":1885,"children":1886},{},[],{"type":41,"tag":60,"props":1888,"children":1890},{"id":1889},"grouping-and-sorting-logic",[1891],{"type":47,"value":1892},"Grouping and sorting logic",{"type":41,"tag":50,"props":1894,"children":1895},{},[1896],{"type":41,"tag":70,"props":1897,"children":1898},{},[1899],{"type":47,"value":1900},"Default grouping: by asset symbol",{"type":41,"tag":99,"props":1902,"children":1903},{},[1904,1916,1921,1926],{"type":41,"tag":103,"props":1905,"children":1906},{},[1907,1909,1914],{"type":47,"value":1908},"Group all rows sharing the same ",{"type":41,"tag":90,"props":1910,"children":1912},{"className":1911},[],[1913],{"type":47,"value":173},{"type":47,"value":1915}," into one group",{"type":41,"tag":103,"props":1917,"children":1918},{},[1919],{"type":47,"value":1920},"Net fiat gap shown per group header",{"type":41,"tag":103,"props":1922,"children":1923},{},[1924],{"type":47,"value":1925},"Sort groups by absolute net fiat gap descending",{"type":41,"tag":103,"props":1927,"children":1928},{},[1929],{"type":47,"value":1930},"Sort rows within each group by absolute fiat gap descending",{"type":41,"tag":50,"props":1932,"children":1933},{},[1934,1939],{"type":41,"tag":70,"props":1935,"children":1936},{},[1937],{"type":47,"value":1938},"Alternative: group by wallet",{"type":47,"value":1940}," (if user requests it)",{"type":41,"tag":99,"props":1942,"children":1943},{},[1944,1954],{"type":41,"tag":103,"props":1945,"children":1946},{},[1947,1949],{"type":47,"value":1948},"Group by ",{"type":41,"tag":90,"props":1950,"children":1952},{"className":1951},[],[1953],{"type":47,"value":1419},{"type":41,"tag":103,"props":1955,"children":1956},{},[1957],{"type":47,"value":1958},"Same sorting logic",{"type":41,"tag":50,"props":1960,"children":1961},{},[1962,1964,1969],{"type":47,"value":1963},"Always order by ",{"type":41,"tag":70,"props":1965,"children":1966},{},[1967],{"type":47,"value":1968},"fiat gap",{"type":47,"value":1970},", not token gap.",{"type":41,"tag":56,"props":1972,"children":1973},{},[],{"type":41,"tag":60,"props":1975,"children":1977},{"id":1976},"number-formatting-conventions",[1978],{"type":47,"value":1979},"Number formatting conventions",{"type":41,"tag":216,"props":1981,"children":1985},{"className":1982,"code":1983,"language":1984,"meta":221,"style":221},"language-js shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u002F\u002F Fiat values\n≥ $1M  → \"$X.XXXM\"\n≥ $1K  → \"$X.XXK\"\n\u003C $1K  → \"$X.XX\"\n\n\u002F\u002F Token quantities\n≥ 1B   → \"X.XXXB\"\n≥ 1M   → \"X.XXXM\"\n≥ 1K   → \"X.XXXK\"\n\u003C 1K   → up to 6 significant figures, trim trailing zeros\n\n\u002F\u002F Signs\nPositive gaps: \"+\" prefix\nNegative gaps: \"−\" (minus sign, not hyphen)\nNo sign:       absolute values (on-chain bal, calculated bal)\n","js",[1986],{"type":41,"tag":90,"props":1987,"children":1988},{"__ignoreMap":221},[1989,1998,2024,2045,2077,2086,2094,2115,2136,2157,2206,2213,2221,2252,2292],{"type":41,"tag":227,"props":1990,"children":1991},{"class":229,"line":230},[1992],{"type":41,"tag":227,"props":1993,"children":1995},{"style":1994},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[1996],{"type":47,"value":1997},"\u002F\u002F Fiat values\n",{"type":41,"tag":227,"props":1999,"children":2000},{"class":229,"line":239},[2001,2007,2013,2019],{"type":41,"tag":227,"props":2002,"children":2004},{"style":2003},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[2005],{"type":47,"value":2006},"≥ $1M  → ",{"type":41,"tag":227,"props":2008,"children":2010},{"style":2009},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[2011],{"type":47,"value":2012},"\"",{"type":41,"tag":227,"props":2014,"children":2016},{"style":2015},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[2017],{"type":47,"value":2018},"$X.XXXM",{"type":41,"tag":227,"props":2020,"children":2021},{"style":2009},[2022],{"type":47,"value":2023},"\"\n",{"type":41,"tag":227,"props":2025,"children":2026},{"class":229,"line":248},[2027,2032,2036,2041],{"type":41,"tag":227,"props":2028,"children":2029},{"style":2003},[2030],{"type":47,"value":2031},"≥ $1K  → ",{"type":41,"tag":227,"props":2033,"children":2034},{"style":2009},[2035],{"type":47,"value":2012},{"type":41,"tag":227,"props":2037,"children":2038},{"style":2015},[2039],{"type":47,"value":2040},"$X.XXK",{"type":41,"tag":227,"props":2042,"children":2043},{"style":2009},[2044],{"type":47,"value":2023},{"type":41,"tag":227,"props":2046,"children":2047},{"class":229,"line":257},[2048,2053,2059,2064,2068,2073],{"type":41,"tag":227,"props":2049,"children":2050},{"style":2009},[2051],{"type":47,"value":2052},"\u003C ",{"type":41,"tag":227,"props":2054,"children":2056},{"style":2055},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[2057],{"type":47,"value":2058},"$1K",{"type":41,"tag":227,"props":2060,"children":2061},{"style":2009},[2062],{"type":47,"value":2063},"  → ",{"type":41,"tag":227,"props":2065,"children":2066},{"style":2009},[2067],{"type":47,"value":2012},{"type":41,"tag":227,"props":2069,"children":2070},{"style":2015},[2071],{"type":47,"value":2072},"$X.XX",{"type":41,"tag":227,"props":2074,"children":2075},{"style":2009},[2076],{"type":47,"value":2023},{"type":41,"tag":227,"props":2078,"children":2079},{"class":229,"line":266},[2080],{"type":41,"tag":227,"props":2081,"children":2083},{"emptyLinePlaceholder":2082},true,[2084],{"type":47,"value":2085},"\n",{"type":41,"tag":227,"props":2087,"children":2088},{"class":229,"line":275},[2089],{"type":41,"tag":227,"props":2090,"children":2091},{"style":1994},[2092],{"type":47,"value":2093},"\u002F\u002F Token quantities\n",{"type":41,"tag":227,"props":2095,"children":2096},{"class":229,"line":284},[2097,2102,2106,2111],{"type":41,"tag":227,"props":2098,"children":2099},{"style":2009},[2100],{"type":47,"value":2101},"≥ 1B   → ",{"type":41,"tag":227,"props":2103,"children":2104},{"style":2009},[2105],{"type":47,"value":2012},{"type":41,"tag":227,"props":2107,"children":2108},{"style":2015},[2109],{"type":47,"value":2110},"X.XXXB",{"type":41,"tag":227,"props":2112,"children":2113},{"style":2009},[2114],{"type":47,"value":2023},{"type":41,"tag":227,"props":2116,"children":2117},{"class":229,"line":293},[2118,2123,2127,2132],{"type":41,"tag":227,"props":2119,"children":2120},{"style":2009},[2121],{"type":47,"value":2122},"≥ 1M   → ",{"type":41,"tag":227,"props":2124,"children":2125},{"style":2009},[2126],{"type":47,"value":2012},{"type":41,"tag":227,"props":2128,"children":2129},{"style":2015},[2130],{"type":47,"value":2131},"X.XXXM",{"type":41,"tag":227,"props":2133,"children":2134},{"style":2009},[2135],{"type":47,"value":2023},{"type":41,"tag":227,"props":2137,"children":2138},{"class":229,"line":302},[2139,2144,2148,2153],{"type":41,"tag":227,"props":2140,"children":2141},{"style":2009},[2142],{"type":47,"value":2143},"≥ 1K   → ",{"type":41,"tag":227,"props":2145,"children":2146},{"style":2009},[2147],{"type":47,"value":2012},{"type":41,"tag":227,"props":2149,"children":2150},{"style":2015},[2151],{"type":47,"value":2152},"X.XXXK",{"type":41,"tag":227,"props":2154,"children":2155},{"style":2009},[2156],{"type":47,"value":2023},{"type":41,"tag":227,"props":2158,"children":2159},{"class":229,"line":311},[2160,2165,2171,2176,2181,2186,2191,2196,2201],{"type":41,"tag":227,"props":2161,"children":2162},{"style":2009},[2163],{"type":47,"value":2164},"\u003C 1K   → ",{"type":41,"tag":227,"props":2166,"children":2168},{"style":2167},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[2169],{"type":47,"value":2170},"up",{"type":41,"tag":227,"props":2172,"children":2173},{"style":2167},[2174],{"type":47,"value":2175}," to",{"type":41,"tag":227,"props":2177,"children":2178},{"style":2009},[2179],{"type":47,"value":2180}," 6 ",{"type":41,"tag":227,"props":2182,"children":2183},{"style":2167},[2184],{"type":47,"value":2185},"significant",{"type":41,"tag":227,"props":2187,"children":2188},{"style":2009},[2189],{"type":47,"value":2190}," figures, ",{"type":41,"tag":227,"props":2192,"children":2193},{"style":2167},[2194],{"type":47,"value":2195},"trim",{"type":41,"tag":227,"props":2197,"children":2198},{"style":2167},[2199],{"type":47,"value":2200}," trailing",{"type":41,"tag":227,"props":2202,"children":2203},{"style":2167},[2204],{"type":47,"value":2205}," zeros\n",{"type":41,"tag":227,"props":2207,"children":2208},{"class":229,"line":320},[2209],{"type":41,"tag":227,"props":2210,"children":2211},{"emptyLinePlaceholder":2082},[2212],{"type":47,"value":2085},{"type":41,"tag":227,"props":2214,"children":2215},{"class":229,"line":329},[2216],{"type":41,"tag":227,"props":2217,"children":2218},{"style":1994},[2219],{"type":47,"value":2220},"\u002F\u002F Signs\n",{"type":41,"tag":227,"props":2222,"children":2223},{"class":229,"line":338},[2224,2229,2234,2238,2243,2247],{"type":41,"tag":227,"props":2225,"children":2226},{"style":2167},[2227],{"type":47,"value":2228},"Positive",{"type":41,"tag":227,"props":2230,"children":2231},{"style":2009},[2232],{"type":47,"value":2233}," gaps: ",{"type":41,"tag":227,"props":2235,"children":2236},{"style":2009},[2237],{"type":47,"value":2012},{"type":41,"tag":227,"props":2239,"children":2240},{"style":2015},[2241],{"type":47,"value":2242},"+",{"type":41,"tag":227,"props":2244,"children":2245},{"style":2009},[2246],{"type":47,"value":2012},{"type":41,"tag":227,"props":2248,"children":2249},{"style":2167},[2250],{"type":47,"value":2251}," prefix\n",{"type":41,"tag":227,"props":2253,"children":2254},{"class":229,"line":347},[2255,2260,2264,2268,2273,2277,2282,2287],{"type":41,"tag":227,"props":2256,"children":2257},{"style":2167},[2258],{"type":47,"value":2259},"Negative",{"type":41,"tag":227,"props":2261,"children":2262},{"style":2009},[2263],{"type":47,"value":2233},{"type":41,"tag":227,"props":2265,"children":2266},{"style":2009},[2267],{"type":47,"value":2012},{"type":41,"tag":227,"props":2269,"children":2270},{"style":2015},[2271],{"type":47,"value":2272},"−",{"type":41,"tag":227,"props":2274,"children":2275},{"style":2009},[2276],{"type":47,"value":2012},{"type":41,"tag":227,"props":2278,"children":2279},{"style":2009},[2280],{"type":47,"value":2281}," (minus sign, ",{"type":41,"tag":227,"props":2283,"children":2284},{"style":2167},[2285],{"type":47,"value":2286},"not",{"type":41,"tag":227,"props":2288,"children":2289},{"style":2009},[2290],{"type":47,"value":2291}," hyphen)\n",{"type":41,"tag":227,"props":2293,"children":2294},{"class":229,"line":356},[2295,2300,2305,2310,2315,2320,2325],{"type":41,"tag":227,"props":2296,"children":2297},{"style":2167},[2298],{"type":47,"value":2299},"No",{"type":41,"tag":227,"props":2301,"children":2302},{"style":2009},[2303],{"type":47,"value":2304}," sign:       ",{"type":41,"tag":227,"props":2306,"children":2307},{"style":2167},[2308],{"type":47,"value":2309},"absolute",{"type":41,"tag":227,"props":2311,"children":2312},{"style":2167},[2313],{"type":47,"value":2314}," values",{"type":41,"tag":227,"props":2316,"children":2317},{"style":2009},[2318],{"type":47,"value":2319}," (on-chain bal, ",{"type":41,"tag":227,"props":2321,"children":2322},{"style":2167},[2323],{"type":47,"value":2324},"calculated",{"type":41,"tag":227,"props":2326,"children":2327},{"style":2009},[2328],{"type":47,"value":2329}," bal)\n",{"type":41,"tag":56,"props":2331,"children":2332},{},[],{"type":41,"tag":60,"props":2334,"children":2336},{"id":2335},"common-edge-cases",[2337],{"type":47,"value":2338},"Common edge cases",{"type":41,"tag":1194,"props":2340,"children":2341},{},[2342,2358],{"type":41,"tag":1198,"props":2343,"children":2344},{},[2345],{"type":41,"tag":1202,"props":2346,"children":2347},{},[2348,2353],{"type":41,"tag":1206,"props":2349,"children":2350},{},[2351],{"type":47,"value":2352},"Situation",{"type":41,"tag":1206,"props":2354,"children":2355},{},[2356],{"type":47,"value":2357},"Handling",{"type":41,"tag":1217,"props":2359,"children":2360},{},[2361,2378,2397,2414,2427,2453],{"type":41,"tag":1202,"props":2362,"children":2363},{},[2364,2373],{"type":41,"tag":1224,"props":2365,"children":2366},{},[2367],{"type":41,"tag":90,"props":2368,"children":2370},{"className":2369},[],[2371],{"type":47,"value":2372},"unitPrice = 0",{"type":41,"tag":1224,"props":2374,"children":2375},{},[2376],{"type":47,"value":2377},"Show \"—\" for fiat gap; token gap still displays",{"type":41,"tag":1202,"props":2379,"children":2380},{},[2381,2392],{"type":41,"tag":1224,"props":2382,"children":2383},{},[2384,2390],{"type":41,"tag":90,"props":2385,"children":2387},{"className":2386},[],[2388],{"type":47,"value":2389},"historicalBalance",{"type":47,"value":2391}," is negative",{"type":41,"tag":1224,"props":2393,"children":2394},{},[2395],{"type":47,"value":2396},"Display as-is; flag visually if extreme",{"type":41,"tag":1202,"props":2398,"children":2399},{},[2400,2409],{"type":41,"tag":1224,"props":2401,"children":2402},{},[2403],{"type":41,"tag":90,"props":2404,"children":2406},{"className":2405},[],[2407],{"type":47,"value":2408},"pendingTransactionsCount > 0",{"type":41,"tag":1224,"props":2410,"children":2411},{},[2412],{"type":47,"value":2413},"Show amber warning badge — pending txs may reduce the gap once confirmed",{"type":41,"tag":1202,"props":2415,"children":2416},{},[2417,2422],{"type":41,"tag":1224,"props":2418,"children":2419},{},[2420],{"type":47,"value":2421},"Very large token gaps with tiny fiat value",{"type":41,"tag":1224,"props":2423,"children":2424},{},[2425],{"type":47,"value":2426},"Still show; sort by fiat means they appear near bottom",{"type":41,"tag":1202,"props":2428,"children":2429},{},[2430,2440],{"type":41,"tag":1224,"props":2431,"children":2432},{},[2433,2438],{"type":41,"tag":90,"props":2434,"children":2436},{"className":2435},[],[2437],{"type":47,"value":484},{"type":47,"value":2439}," field timeouts on large datasets",{"type":41,"tag":1224,"props":2441,"children":2442},{},[2443,2445,2451],{"type":47,"value":2444},"Use ",{"type":41,"tag":90,"props":2446,"children":2448},{"className":2447},[],[2449],{"type":47,"value":2450},"assetBalance.reconciliation",{"type":47,"value":2452}," field instead (same value, more reliable)",{"type":41,"tag":1202,"props":2454,"children":2455},{},[2456,2461],{"type":41,"tag":1224,"props":2457,"children":2458},{},[2459],{"type":47,"value":2460},"Asset filter yields zero rows",{"type":41,"tag":1224,"props":2462,"children":2463},{},[2464,2466,2471,2473,2478],{"type":47,"value":2465},"Inform the user: \"No gaps found for ",{"type":41,"tag":227,"props":2467,"children":2468},{},[2469],{"type":47,"value":2470},"assets",{"type":47,"value":2472}," on ",{"type":41,"tag":227,"props":2474,"children":2475},{},[2476],{"type":47,"value":2477},"date",{"type":47,"value":2012},{"type":41,"tag":56,"props":2480,"children":2481},{},[],{"type":41,"tag":60,"props":2483,"children":2485},{"id":2484},"key-schema-facts-verified",[2486],{"type":47,"value":2487},"Key schema facts (verified)",{"type":41,"tag":99,"props":2489,"children":2490},{},[2491,2515,2552,2575,2612,2660],{"type":41,"tag":103,"props":2492,"children":2493},{},[2494,2499,2501,2506,2508,2513],{"type":41,"tag":90,"props":2495,"children":2497},{"className":2496},[],[2498],{"type":47,"value":22},{"type":47,"value":2500}," query — has ",{"type":41,"tag":90,"props":2502,"children":2504},{"className":2503},[],[2505],{"type":47,"value":95},{"type":47,"value":2507}," parameter; returns ",{"type":41,"tag":90,"props":2509,"children":2511},{"className":2510},[],[2512],{"type":47,"value":484},{"type":47,"value":2514}," and basic balance fields",{"type":41,"tag":103,"props":2516,"children":2517},{},[2518,2523,2525,2530,2532,2537,2539,2545,2547],{"type":41,"tag":90,"props":2519,"children":2521},{"className":2520},[],[2522],{"type":47,"value":541},{"type":47,"value":2524}," query — returns ",{"type":41,"tag":90,"props":2526,"children":2528},{"className":2527},[],[2529],{"type":47,"value":2389},{"type":47,"value":2531},", ",{"type":41,"tag":90,"props":2533,"children":2535},{"className":2534},[],[2536],{"type":47,"value":22},{"type":47,"value":2538}," (= gap), and ",{"type":41,"tag":90,"props":2540,"children":2542},{"className":2541},[],[2543],{"type":47,"value":2544},"fiatValue { value, unitPrice }",{"type":47,"value":2546},"; ",{"type":41,"tag":70,"props":2548,"children":2549},{},[2550],{"type":47,"value":2551},"prefer for enriched data",{"type":41,"tag":103,"props":2553,"children":2554},{},[2555,2561,2563,2568,2570],{"type":41,"tag":90,"props":2556,"children":2558},{"className":2557},[],[2559],{"type":47,"value":2560},"assetBalance(id_In: [String])",{"type":47,"value":2562}," — note ",{"type":41,"tag":90,"props":2564,"children":2566},{"className":2565},[],[2567],{"type":47,"value":782},{"type":47,"value":2569}," not ",{"type":41,"tag":90,"props":2571,"children":2573},{"className":2572},[],[2574],{"type":47,"value":790},{"type":41,"tag":103,"props":2576,"children":2577},{},[2578,2583,2585,2590,2592,2598,2599,2604,2605,2610],{"type":41,"tag":90,"props":2579,"children":2581},{"className":2580},[],[2582],{"type":47,"value":978},{"type":47,"value":2584}," — ",{"type":41,"tag":90,"props":2586,"children":2588},{"className":2587},[],[2589],{"type":47,"value":1295},{"type":47,"value":2591}," is ",{"type":41,"tag":90,"props":2593,"children":2595},{"className":2594},[],[2596],{"type":47,"value":2597},"ID!",{"type":47,"value":2531},{"type":41,"tag":90,"props":2600,"children":2602},{"className":2601},[],[2603],{"type":47,"value":1316},{"type":47,"value":2591},{"type":41,"tag":90,"props":2606,"children":2608},{"className":2607},[],[2609],{"type":47,"value":2597},{"type":47,"value":2611}," (pass the asset key string)",{"type":41,"tag":103,"props":2613,"children":2614},{},[2615,2620,2621,2626,2627,2632,2633,2638,2639,2645,2646,2651,2652,2658],{"type":41,"tag":90,"props":2616,"children":2618},{"className":2617},[],[2619],{"type":47,"value":1433},{"type":47,"value":2584},{"type":41,"tag":90,"props":2622,"children":2624},{"className":2623},[],[2625],{"type":47,"value":1686},{"type":47,"value":2591},{"type":41,"tag":90,"props":2628,"children":2630},{"className":2629},[],[2631],{"type":47,"value":1703},{"type":47,"value":2546},{"type":41,"tag":90,"props":2634,"children":2636},{"className":2635},[],[2637],{"type":47,"value":1316},{"type":47,"value":2591},{"type":41,"tag":90,"props":2640,"children":2642},{"className":2641},[],[2643],{"type":47,"value":2644},"String!",{"type":47,"value":2546},{"type":41,"tag":90,"props":2647,"children":2649},{"className":2648},[],[2650],{"type":47,"value":1715},{"type":47,"value":2591},{"type":41,"tag":90,"props":2653,"children":2655},{"className":2654},[],[2656],{"type":47,"value":2657},"Interval!",{"type":47,"value":2659}," enum",{"type":41,"tag":103,"props":2661,"children":2662},{},[2663,2665,2671,2672,2678,2679,2685,2686,2692,2693,2699,2700,2706,2707,2713,2714,2720],{"type":47,"value":2664},"Platform enum values: ",{"type":41,"tag":90,"props":2666,"children":2668},{"className":2667},[],[2669],{"type":47,"value":2670},"ETHEREUM",{"type":47,"value":2531},{"type":41,"tag":90,"props":2673,"children":2675},{"className":2674},[],[2676],{"type":47,"value":2677},"BASE",{"type":47,"value":2531},{"type":41,"tag":90,"props":2680,"children":2682},{"className":2681},[],[2683],{"type":47,"value":2684},"ARBITRUM",{"type":47,"value":2531},{"type":41,"tag":90,"props":2687,"children":2689},{"className":2688},[],[2690],{"type":47,"value":2691},"OPTIMISM",{"type":47,"value":2531},{"type":41,"tag":90,"props":2694,"children":2696},{"className":2695},[],[2697],{"type":47,"value":2698},"POLYGON",{"type":47,"value":2531},{"type":41,"tag":90,"props":2701,"children":2703},{"className":2702},[],[2704],{"type":47,"value":2705},"AVAX",{"type":47,"value":2531},{"type":41,"tag":90,"props":2708,"children":2710},{"className":2709},[],[2711],{"type":47,"value":2712},"AVALANCHE_P_CHAIN",{"type":47,"value":2531},{"type":41,"tag":90,"props":2715,"children":2717},{"className":2716},[],[2718],{"type":47,"value":2719},"MANTRA",{"type":47,"value":2721},", etc.",{"type":41,"tag":2723,"props":2724,"children":2725},"style",{},[2726],{"type":47,"value":2727},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":2729,"total":2831},[2730,2749,2768,2782,2794,2806,2818],{"slug":2731,"name":2731,"fn":2732,"description":2733,"org":2734,"tags":2735,"stars":23,"repoUrl":24,"updatedAt":2748},"quickdesign","generate AI media assets","Use the `quickdesign` CLI to generate AI media — UGC promo videos, image edits, product creatives, video upscales — through Seedance, Kling, Sora2, Nano Banana, and GPT Image. Invoke this skill whenever the user asks for a talking-avatar video, multi-segment ad \u002F promo \u002F explainer, image edit (object swap, angle change, state change), product photoshoot, or video upscale via QuickDesign.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2736,2739,2742,2745],{"name":2737,"slug":2738,"type":16},"Creative","creative",{"name":2740,"slug":2741,"type":16},"Image Generation","image-generation",{"name":2743,"slug":2744,"type":16},"Marketing","marketing",{"name":2746,"slug":2747,"type":16},"Video","video","2026-07-01T08:09:32.316182",{"slug":2750,"name":2750,"fn":2751,"description":2752,"org":2753,"tags":2754,"stars":23,"repoUrl":24,"updatedAt":2767},"testdino-audit","audit Playwright test code","Use only when the user explicitly asks for a TestDino audit of Playwright automated test code. Routes through the audit tools the TestDino MCP server exposes (get_audit_report + submit_audit_report, or the legacy test_audit). For generic code review or non-Playwright targets, do a normal review instead.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2755,2758,2761,2764],{"name":2756,"slug":2757,"type":16},"Audit","audit",{"name":2759,"slug":2760,"type":16},"Code Analysis","code-analysis",{"name":2762,"slug":2763,"type":16},"Playwright","playwright",{"name":2765,"slug":2766,"type":16},"Testing","testing","2026-07-02T07:37:17.341081",{"slug":2769,"name":2769,"fn":2770,"description":2771,"org":2772,"tags":2773,"stars":23,"repoUrl":24,"updatedAt":2781},"testdino-health","manage TestDino connection status","Use when the user wants to check TestDino connection status, validate their PAT, discover available organizations and projects, or find the right projectId. Always call this first when the project context is ambiguous before any other TestDino tool.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2774,2777,2780],{"name":2775,"slug":2776,"type":16},"Monitoring","monitoring",{"name":2778,"slug":2779,"type":16},"QA","qa",{"name":2765,"slug":2766,"type":16},"2026-07-02T07:37:18.566504",{"slug":2783,"name":2783,"fn":2784,"description":2785,"org":2786,"tags":2787,"stars":23,"repoUrl":24,"updatedAt":2793},"testdino-manual-runs","manage manual QA execution runs in TestDino","Use when the user wants to manage a manual execution run or update case-level results inside a run — listing runs, creating runs for a release, inspecting a run, assigning cases, or marking case results (passed\u002Ffailed\u002Fblocked\u002Fskipped\u002Fretest\u002Funtested). Accepts counter-style IDs like RUN-12 and TC-156.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2788,2791,2792],{"name":2789,"slug":2790,"type":16},"Operations","operations",{"name":2778,"slug":2779,"type":16},{"name":2765,"slug":2766,"type":16},"2026-07-02T07:37:23.446065",{"slug":2795,"name":2795,"fn":2796,"description":2797,"org":2798,"tags":2799,"stars":23,"repoUrl":24,"updatedAt":2805},"testdino-manual-tests","manage manual QA test cases in TestDino","Use when the user wants to create, update, or browse manual QA test cases and suites in TestDino — not execution runs. Covers list_manual_test_suites, list_manual_test_cases, get_manual_test_case, create_manual_test_case, update_manual_test_case, create_manual_test_suite.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2800,2803,2804],{"name":2801,"slug":2802,"type":16},"Documentation","documentation",{"name":2778,"slug":2779,"type":16},{"name":2765,"slug":2766,"type":16},"2026-07-02T07:37:22.247052",{"slug":2807,"name":2807,"fn":2808,"description":2809,"org":2810,"tags":2811,"stars":23,"repoUrl":24,"updatedAt":2817},"testdino-releases","manage TestDino releases and milestones","Use when the user wants to browse, inspect, create, or update releases\u002Fmilestones in a TestDino project. Covers list_releases, get_release, create_release, and update_release. Accepts counter-style IDs like MS-12.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2812,2815,2816],{"name":2813,"slug":2814,"type":16},"Project Management","project-management",{"name":2778,"slug":2779,"type":16},{"name":2765,"slug":2766,"type":16},"2026-07-02T07:37:19.793846",{"slug":2819,"name":2819,"fn":2820,"description":2821,"org":2822,"tags":2823,"stars":23,"repoUrl":24,"updatedAt":2830},"testdino-runs","inspect automated test runs","Use when the user wants to inspect automated test runs, list failed or flaky tests, debug a failing testcase with historical context, or filter runs by branch, commit, author, environment, browser, status, or tags. Includes list_testruns, get_run_details, list_testcase, get_testcase_details, and debug_testcase.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2824,2827,2828,2829],{"name":2825,"slug":2826,"type":16},"Debugging","debugging",{"name":2762,"slug":2763,"type":16},{"name":2778,"slug":2779,"type":16},{"name":2765,"slug":2766,"type":16},"2026-07-02T07:37:16.07175",30,{"items":2833,"total":3016},[2834,2853,2867,2879,2898,2909,2930,2950,2964,2979,2987,3000],{"slug":2835,"name":2835,"fn":2836,"description":2837,"org":2838,"tags":2839,"stars":2850,"repoUrl":2851,"updatedAt":2852},"algorithmic-art","create algorithmic art with p5.js","Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2840,2841,2844,2847],{"name":2737,"slug":2738,"type":16},{"name":2842,"slug":2843,"type":16},"Design","design",{"name":2845,"slug":2846,"type":16},"Generative Art","generative-art",{"name":2848,"slug":2849,"type":16},"JavaScript","javascript",161831,"https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fskills","2026-04-06T17:56:15.455818",{"slug":2854,"name":2854,"fn":2855,"description":2856,"org":2857,"tags":2858,"stars":2850,"repoUrl":2851,"updatedAt":2866},"brand-guidelines","apply Anthropic brand colors and typography","Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2859,2862,2863],{"name":2860,"slug":2861,"type":16},"Branding","branding",{"name":2842,"slug":2843,"type":16},{"name":2864,"slug":2865,"type":16},"Typography","typography","2026-04-06T17:56:05.042852",{"slug":2868,"name":2868,"fn":2869,"description":2870,"org":2871,"tags":2872,"stars":2850,"repoUrl":2851,"updatedAt":2878},"canvas-design","create posters and visual art as PNG or PDF","Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2873,2874,2875],{"name":2737,"slug":2738,"type":16},{"name":2842,"slug":2843,"type":16},{"name":2876,"slug":2877,"type":16},"PDF","pdf","2026-04-06T17:56:03.794732",{"slug":2880,"name":2880,"fn":2881,"description":2882,"org":2883,"tags":2884,"stars":2850,"repoUrl":2851,"updatedAt":2897},"claude-api","build apps with the Claude API","Reference for the Claude API \u002F Anthropic SDK — model ids, pricing, params, streaming, tool use, MCP, agents, caching, token counting, model migration.\nTRIGGER — read BEFORE opening the target file; don't skip because it \"looks like a one-liner\" — whenever: the prompt names Claude\u002FAnthropic in any form (Claude, Anthropic, Fable, Opus, Sonnet, Haiku, `anthropic`, `@anthropic-ai`, `claude-*`, `us.anthropic.*`, `[1m]`); the user asks about an LLM (pricing\u002Fmodel choice\u002Flimits\u002Fcaching) — never answer from memory; OR the task is LLM-shaped with provider unstated (agent\u002FMCP\u002Ftool-definition\u002Fmulti-agent\u002FRAG\u002FLLM-judge\u002Fcomputer-use; generate\u002Fsummarize\u002Fextract\u002Fclassify\u002Frewrite\u002Fconverse over NL; debugging refusals\u002Fcutoffs\u002Fstreaming\u002Ftool-calls\u002Ftokens).\nSKIP only when another provider is being worked on (overrides all triggers): OpenAI\u002FGPT\u002FGemini\u002FLlama\u002FMistral\u002FCohere\u002FOllama named in the query; OR `grep -rE 'openai|langchain_openai|google.generativeai|genai|mistralai|cohere|ollama'` over the project hits (run this grep FIRST if no provider named — don't Read the file).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2885,2888,2889,2892,2894],{"name":2886,"slug":2887,"type":16},"Agents","agents",{"name":9,"slug":8,"type":16},{"name":2890,"slug":2891,"type":16},"Anthropic SDK","anthropic-sdk",{"name":2893,"slug":2880,"type":16},"Claude API",{"name":2895,"slug":2896,"type":16},"LLM","llm","2026-07-28T05:36:08.213335",{"slug":2899,"name":2899,"fn":2900,"description":2901,"org":2902,"tags":2903,"stars":2850,"repoUrl":2851,"updatedAt":2908},"doc-coauthoring","co-author documentation and technical specs","Guide users through a structured workflow for co-authoring documentation. Use when user wants to write documentation, proposals, technical specs, decision docs, or similar structured content. This workflow helps users efficiently transfer context, refine content through iteration, and verify the doc works for readers. Trigger when user mentions writing docs, creating proposals, drafting specs, or similar documentation tasks.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2904,2905],{"name":2801,"slug":2802,"type":16},{"name":2906,"slug":2907,"type":16},"Technical Writing","technical-writing","2026-04-06T17:56:14.18897",{"slug":2910,"name":2910,"fn":2911,"description":2912,"org":2913,"tags":2914,"stars":2850,"repoUrl":2851,"updatedAt":2929},"docx","create and edit Word documents","Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files) or Word templates (.dotx files). Triggers include: any mention of 'Word doc', 'word document', '.docx', '.dotx', or requests to produce professional documents with formatting like tables of contents, headings, page numbers, or letterheads. Also use when extracting or reorganizing content from .docx or .dotx files, inserting or replacing images in documents, performing find-and-replace in Word files, working with tracked changes or comments, or converting content into a polished Word document. If the user asks for a 'report', 'memo', 'letter', 'template', or similar deliverable as a Word or .docx file, use this skill. Do NOT use for PDFs, spreadsheets, Google Docs, or general coding tasks unrelated to document generation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2915,2918,2920,2923,2926],{"name":2916,"slug":2917,"type":16},"Documents","documents",{"name":2919,"slug":2910,"type":16},"DOCX",{"name":2921,"slug":2922,"type":16},"Office","office",{"name":2924,"slug":2925,"type":16},"Templates","templates",{"name":2927,"slug":2928,"type":16},"Word","word","2026-07-18T05:16:23.136271",{"slug":2931,"name":2931,"fn":2932,"description":2933,"org":2934,"tags":2935,"stars":2850,"repoUrl":2851,"updatedAt":2949},"frontend-design","design production-grade frontend interfaces","Guidance for distinctive, intentional visual design when building new UI or reshaping an existing one. Helps with aesthetic direction, typography, and making choices that don't read as templated defaults.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2936,2937,2940,2943,2946],{"name":2842,"slug":2843,"type":16},{"name":2938,"slug":2939,"type":16},"Frontend","frontend",{"name":2941,"slug":2942,"type":16},"React","react",{"name":2944,"slug":2945,"type":16},"Tailwind CSS","tailwind-css",{"name":2947,"slug":2948,"type":16},"UI Components","ui-components","2026-04-06T17:56:16.723469",{"slug":2951,"name":2951,"fn":2952,"description":2953,"org":2954,"tags":2955,"stars":2850,"repoUrl":2851,"updatedAt":2963},"internal-comms","write internal company communications","A set of resources to help me write all kinds of internal communications, using the formats that my company likes to use. Claude should use this skill whenever asked to write some sort of internal communications (status reports, leadership updates, 3P updates, company newsletters, FAQs, incident reports, project updates, etc.).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2956,2959,2960],{"name":2957,"slug":2958,"type":16},"Communications","communications",{"name":2924,"slug":2925,"type":16},{"name":2961,"slug":2962,"type":16},"Writing","writing","2026-04-06T17:56:20.695522",{"slug":2965,"name":2965,"fn":2966,"description":2967,"org":2968,"tags":2969,"stars":2850,"repoUrl":2851,"updatedAt":2978},"mcp-builder","build MCP servers","Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node\u002FTypeScript (MCP SDK).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2970,2971,2974,2975],{"name":2886,"slug":2887,"type":16},{"name":2972,"slug":2973,"type":16},"API Development","api-development",{"name":2895,"slug":2896,"type":16},{"name":2976,"slug":2977,"type":16},"MCP","mcp","2026-04-06T17:56:10.357665",{"slug":2877,"name":2877,"fn":2980,"description":2981,"org":2982,"tags":2983,"stars":2850,"repoUrl":2851,"updatedAt":2986},"read edit and manipulate PDF files","Use this skill whenever the user wants to do anything with PDF files. This includes reading or extracting text\u002Ftables from PDFs, combining or merging multiple PDFs into one, splitting PDFs apart, rotating pages, adding watermarks, creating new PDFs, filling PDF forms, encrypting\u002Fdecrypting PDFs, extracting images, and OCR on scanned PDFs to make them searchable. If the user mentions a .pdf file or asks to produce one, use this skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2984,2985],{"name":2916,"slug":2917,"type":16},{"name":2876,"slug":2877,"type":16},"2026-04-06T17:56:02.483316",{"slug":2988,"name":2988,"fn":2989,"description":2990,"org":2991,"tags":2992,"stars":2850,"repoUrl":2851,"updatedAt":2999},"pptx","create and edit PowerPoint presentations","Use this skill any time a .pptx or .potx file is involved in any way — as input, output, or both. This includes: creating slide decks, pitch decks, or presentations; reading, parsing, or extracting text from any .pptx or .potx file (even if the extracted content will be used elsewhere, like in an email or summary); editing, modifying, or updating existing presentations; combining or splitting slide files; working with templates (.potx), layouts, speaker notes, or comments. Trigger whenever the user mentions \"deck,\" \"slides,\" \"presentation,\" or references a .pptx or .potx filename, regardless of what they plan to do with the content afterward. If a .pptx or .potx file needs to be opened, created, or touched, use this skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2993,2996],{"name":2994,"slug":2995,"type":16},"PowerPoint","powerpoint",{"name":2997,"slug":2998,"type":16},"Presentations","presentations","2026-07-18T05:16:24.1471",{"slug":3001,"name":3001,"fn":3002,"description":3003,"org":3004,"tags":3005,"stars":2850,"repoUrl":2851,"updatedAt":3015},"skill-creator","create and optimize agent skills","Create new skills, modify and improve existing skills, and measure skill performance. Use when users want to create a skill from scratch, edit, or optimize an existing skill, run evals to test a skill, benchmark skill performance with variance analysis, or optimize a skill's description for better triggering accuracy.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3006,3007,3008,3011,3014],{"name":2886,"slug":2887,"type":16},{"name":2801,"slug":2802,"type":16},{"name":3009,"slug":3010,"type":16},"Evals","evals",{"name":3012,"slug":3013,"type":16},"Performance","performance",{"name":2906,"slug":2907,"type":16},"2026-04-19T06:45:40.804",490]