[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-anthropic-tres-settings-management":3,"mdc-t5n0h0-key":37,"related-repo-anthropic-tres-settings-management":2526,"related-org-anthropic-tres-settings-management":2628},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":26,"repoUrl":27,"updatedAt":28,"license":29,"forks":30,"topics":31,"repo":32,"sourceUrl":35,"mdContent":36},"tres-settings-management","manage TRES organization and platform settings","Manage Organization Settings and Platform Settings via the TRES MCP GraphQL API. Use when users ask about org settings, platform settings, configuration, feature flags, enable\u002Fdisable platforms, balance diff, commit strategy, cost basis, ERP, pricing, sync boundaries, or any setting read\u002Fwrite operation. Trigger phrases include \"get settings\", \"show settings\", \"update settings\", \"change settings\", \"enable platform\", \"disable platform\", \"balance diff\", \"commit strategy\", \"cost basis strategy\", \"set min sync date\", \"configure\", \"turn on\", \"turn off\".",{"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,23],{"name":14,"slug":15,"type":16},"Operations","operations","tag",{"name":18,"slug":19,"type":16},"Configuration","configuration",{"name":21,"slug":22,"type":16},"GraphQL","graphql",{"name":24,"slug":25,"type":16},"Finance","finance",294,"https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fclaude-plugins-community","2026-07-02T07:38:02.760008",null,69,[],{"repoUrl":27,"stars":26,"forks":30,"topics":33,"description":34},[],"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-settings-management","---\nname: tres-settings-management\ndescription: Manage Organization Settings and Platform Settings via the TRES MCP GraphQL API. Use when users ask about org settings, platform settings, configuration, feature flags, enable\u002Fdisable platforms, balance diff, commit strategy, cost basis, ERP, pricing, sync boundaries, or any setting read\u002Fwrite operation. Trigger phrases include \"get settings\", \"show settings\", \"update settings\", \"change settings\", \"enable platform\", \"disable platform\", \"balance diff\", \"commit strategy\", \"cost basis strategy\", \"set min sync date\", \"configure\", \"turn on\", \"turn off\".\n---\n\n# TRES MCP - Organization & Platform Settings\n\n## How This Skill Works\n\nThis skill lets users view and modify configuration for their TRES Finance organization and individual blockchain\u002Fexchange platforms. There are two levels:\n\n- **Organization Settings** — Apply to the entire org: how cost basis is calculated, which features are enabled, ERP behavior, pricing sources, commit scheduling, etc.\n- **Platform Settings** — Apply per-platform (e.g., Ethereum, Arbitrum) and optionally per-wallet: commit strategy, sync date boundaries, balance diff, asset filtering, etc.\n\n---\n\n## Ground Rules\n\n### 1. Always Start by Identifying the Org\n\nBefore doing anything, confirm which organization the user is connected to:\n\n```graphql\nquery { admin { orgName } }\n```\n\nTell the user: \"You're connected to **{orgName}**.\"\n\n### 2. Read Before Write\n\nBefore any mutation, ALWAYS fetch the current value of the setting(s) being changed. Show a clear before\u002Fafter comparison.\n\n### 3. Mutations Require Explicit Approval\n\nBefore executing ANY mutation, you MUST:\n1. Show a clear summary table with **Setting**, **Current Value**, and **New Value**\n2. Explicitly ask: \"Shall I apply these changes to **{orgName}**?\"\n3. Only proceed after the user confirms\n4. After execution, show the confirmed result from the mutation response\n\n### 4. Warn About High-Risk Changes\n\nFlag these settings as potentially dangerous and add a warning:\n- `costBasisStrategy` — Changing mid-period can cause recalculations across the entire org\n- `disableAutoCommit` — Stops all automatic data processing\n- `skipCostBasis` — Disables cost basis entirely\n- `commitStrategy: SKIP_ALL` — Fully disables a platform's data pipeline\n- `enableMultiEntity` — Structural change, hard to reverse\n- `allowShort` — Enables short positions in cost basis\n\n### 5. Use Schema Introspection for Field Discovery\n\nDo NOT rely on hardcoded field lists. Use the MCP `introspect` tool to discover available fields and their types dynamically:\n\n- `introspect(\"OrganizationSettingsObjectType\")` — all readable org settings\n- `introspect(\"setOrganizationSettings\")` — all writable org settings with descriptions\n- `introspect(\"PlatformSettingsObjectType\")` — all readable platform settings\n- `introspect(\"setPlatformSettings\")` — all writable platform settings with descriptions\n\nWhen a user asks \"what can I configure?\" or you need to verify a field name or enum values, introspect first.\n\n---\n\n## Setting Categories (use when users ask vaguely)\n\nIf the user says \"show me the settings\" without specifics, offer these categories with plain-language explanations:\n\n| Category | What It Controls |\n|---|---|\n| **Cost Basis** | How gains\u002Flosses are calculated (FIFO, LIFO, etc.), per-wallet vs org-wide, impairment |\n| **Commit Pipeline** | Automatic data processing schedule, priority, stuck detection, sync hours |\n| **Internal Transfers** | How transfers between the org's own wallets are detected and matched |\n| **Pricing** | Where asset prices come from, stablecoin pegging, swap alignment |\n| **ERP Integration** | How data syncs to accounting systems (NetSuite, Xero, QuickBooks) |\n| **Dashboard & Features** | Which UI features are enabled (pivot tables, vesting, payments, multi-entity) |\n| **Staking** | Staking rewards tracking and position management |\n| **Reconciliation** | Cross-org and subsystem reconciliation behavior |\n| **Reports** | Scheduled report timing, format, and content |\n| **Platform Collection** | Which blockchains\u002Fexchanges are enabled, their sync boundaries and filters |\n\n---\n\n## Reading Organization Settings\n\n### Query Structure\n\n```graphql\nquery {\n  admin {\n    orgName\n    organizationSettings {\n      # include only the fields relevant to the user's question\n    }\n  }\n}\n```\n\n- Organization is resolved from the auth token — no org ID needed\n- Never request all fields at once — pick the category relevant to the question\n- Use `introspect(\"OrganizationSettingsObjectType\")` to discover available fields if needed\n\n### Nested Fields (must expand sub-fields when querying)\n\nThese fields return objects\u002Flists, not scalars. Always include their sub-fields:\n\n| Field | Sub-fields | What It Is |\n|---|---|---|\n| `peggedStableCoinsToFiat` | `assetName`, `currency` | Stablecoins treated as equivalent to fiat |\n| `pricingApiSourcePerAsset` | `assetName`, `pricingApiSource` | Custom pricing source per asset |\n| `netsuiteCurrencySymbolToInternalId` | `currency`, `internalId` | NetSuite currency mapping |\n| `simpleMatchingStrategies` | `beforeRange`, `afterRange` | Reconciliation time windows |\n| `proofOfFunds` | `organizationName` | Proof of funds client config |\n\n### Additional Admin Fields\n\nThe `admin` query also provides:\n- `orgName` — the organization's display name\n- `disabledPlatforms` — quick list of platforms with collection fully disabled\n- `auth0Connections` — available SSO login methods\n\n---\n\n## Writing Organization Settings\n\n### Mutation Structure\n\nUses patch semantics — only include the fields you want to change. Everything else stays as-is.\n\n```graphql\nmutation {\n  setOrganizationSettings(\n    costBasisStrategy: FIFO\n  ) {\n    organizationSettings {\n      costBasisStrategy\n    }\n  }\n}\n```\n\nUse `introspect(\"setOrganizationSettings\")` to discover all mutable fields, their types, and descriptions.\n\n### Workflow for Changing Org Settings\n\n1. **Read** the current values of the setting(s) being changed\n2. **Show** the user a before\u002Fafter comparison table\n3. **Warn** if any high-risk settings are involved\n4. **Ask** for approval\n5. **Execute** the mutation\n6. **Confirm** by showing the returned values\n\n---\n\n## Reading Platform Settings\n\n### Query Structure (top-level query)\n\nReturns only platforms\u002Faccounts with explicit overrides. Platforms using all defaults won't appear.\n\n```graphql\nquery {\n  platformSettings(platform: ETHEREUM) {\n    results {\n      settingsId\n      platform\n      internalAccountId\n      platformSettings {\n        commitStrategy\n        calculateBalanceDiff\n        minLastSyncedAt\n        maxToDate\n        # add fields as needed — use introspect(\"PlatformSettingsObjectType\") for full list\n      }\n    }\n  }\n}\n```\n\n### Filtering Options\n\nAll arguments are optional — combine as needed:\n\n| Argument | Type | Use Case |\n|---|---|---|\n| `platform` | `Platform` | Show settings for a specific chain\u002Fexchange |\n| `internalAccountId` | `Int` | Show settings for a specific wallet |\n| `settingsId` | `String` | Exact match on storage key |\n| `settingsId_Icontains` | `String` | Partial match (e.g., \"ethereum\" matches \"ethereum_714128\") |\n\n- **No args** → all stored platform settings\n- **`platform` only** → platform-wide + all per-wallet overrides for that platform\n- **`platform` + `internalAccountId`** → only the per-wallet override\n- **`internalAccountId` only** → all platforms for that wallet\n\n### Quick Check: Which Platforms Are Disabled?\n\n```graphql\nquery { admin { disabledPlatforms } }\n```\n\n---\n\n## Writing Platform Settings\n\n### Mutation Structure\n\nPatch semantics — only included fields are merged. Existing values preserved.\n\n```graphql\nmutation {\n  setPlatformSettings(\n    platform: ARBITRUM\n    internalAccountId: 714128    # omit for platform-wide\n    commitStrategy: FULL\n    minLastSyncedAt: \"2025-01-01T00:00:00+00:00\"\n  ) {\n    settingsId\n    platformSettings {\n      commitStrategy\n      minLastSyncedAt\n    }\n  }\n}\n```\n\nUse `introspect(\"setPlatformSettings\")` to discover all available arguments.\n\n### Key Arguments\n\n- `platform` (required) — target blockchain or exchange\n- `internalAccountId` (optional) — scope to a specific wallet. Omit for platform-wide\n- DateTime values must be ISO 8601 with timezone: `\"2025-01-01T00:00:00+00:00\"`\n\n### Balance Rollup (Balance Diff)\n\nTo enable balance-diff-based activity tracking for specific assets:\n\n```graphql\nmutation {\n  setPlatformSettings(\n    platform: ARBITRUM\n    internalAccountId: 714128\n    balanceRollupSettings: {\n      assetIdentifiers: [\"native\"]\n      interval: DAILY\n    }\n  ) {\n    settingsId\n    platformSettings {\n      balanceRollupSettings { assetIdentifiers interval }\n    }\n  }\n}\n```\n\n`assetIdentifiers` can be `\"native\"` for the chain's native asset, or contract addresses for tokens.\n\n---\n\n## Enabling \u002F Disabling Platforms\n\nUse `setPlatformCollectionStatus` (not `setPlatformSettings`) for simple enable\u002Fdisable.\n\n```graphql\nmutation {\n  setPlatformCollectionStatus(\n    platformCollectionStatuses: [\n      { platform: ARBITRUM, enabled: true }\n      { platform: POLYGON, enabled: false }\n    ]\n  ) {\n    success\n  }\n}\n```\n\n- `enabled: true` → platform will be collected in commits (FULL)\n- `enabled: false` → platform is fully skipped (SKIP_ALL)\n\nSupports bulk operations — multiple platforms in one call.\n\n---\n\n## Resolving Wallet Addresses to Internal Account IDs\n\nWhen the user provides a wallet address, look up the internal account ID:\n\n```graphql\nquery {\n  internalAccount(identifier: \"0x1887fa9edadeab7562b01cc3f4fa246ace2c3cdd\") {\n    results {\n      id\n      name\n      identifier\n      parentPlatform\n    }\n  }\n}\n```\n\nUse the returned `id` as `internalAccountId` in platform settings mutations.\n\nNote: `parentPlatform` represents the top-level chain family (e.g., `ethereum` covers Ethereum, Arbitrum, Polygon, etc.). A single wallet address on `ethereum` parentPlatform can have platform-specific settings for each L2.\n\n---\n\n## Common Workflows\n\n### \"Change the cost basis method to LIFO\"\n\n1. Query current: `admin { organizationSettings { costBasisStrategy } }`\n2. Show: \"Current: FIFO → New: LIFO\"\n3. Warn: \"Changing the cost basis method will trigger recalculation. This affects all historical gain\u002Floss calculations.\"\n4. Ask for approval\n5. Execute: `setOrganizationSettings(costBasisStrategy: LIFO)`\n\n### \"Enable Arbitrum\"\n\n1. Query disabled: `admin { disabledPlatforms }` — confirm ARBITRUM is in the list\n2. Show: \"ARBITRUM: Disabled → Enabled\"\n3. Ask for approval\n4. Execute: `setPlatformCollectionStatus(platformCollectionStatuses: [{platform: ARBITRUM, enabled: true}])`\n\n### \"Set sync start date for wallet X on Polygon\"\n\n1. Resolve wallet: `internalAccount(identifier: \"0x...\")` → get `id`\n2. Read current: `platformSettings(platform: POLYGON, internalAccountId: {id})` → get `minLastSyncedAt`\n3. Show: \"Wallet {name} on POLYGON: minLastSyncedAt: 1970-01-01 → 2025-01-01\"\n4. Ask for approval\n5. Execute: `setPlatformSettings(platform: POLYGON, internalAccountId: {id}, minLastSyncedAt: \"2025-01-01T00:00:00+00:00\")`\n\n### \"Add balance diff for native asset on a specific wallet\"\n\n1. Resolve wallet: `internalAccount(identifier: \"0x...\")` → get `id`\n2. Read current: `platformSettings(platform: ETHEREUM, internalAccountId: {id})`\n3. Show: \"Adding balance rollup for native asset (DAILY interval) on wallet {name} \u002F ETHEREUM\"\n4. Ask for approval\n5. Execute: `setPlatformSettings(platform: ETHEREUM, internalAccountId: {id}, balanceRollupSettings: {assetIdentifiers: [\"native\"], interval: DAILY})`\n\n### \"Show me which platforms are disabled\"\n\n1. Execute: `admin { disabledPlatforms }`\n2. Present as a clean list grouped by chain family if many results\n\n### \"What pricing source is configured?\"\n\n1. Execute: `admin { organizationSettings { pricingApiSource peggedStableCoinsToFiat { assetName currency } pricingApiSourcePerAsset { assetName pricingApiSource } } }`\n2. Present: default source + any per-asset overrides + pegged stablecoins\n\n---\n\n## Error Handling\n\n| Error | Meaning | Resolution |\n|---|---|---|\n| 403 \u002F Permission denied | User lacks `admin:*` permission | Contact org admin to grant access |\n| Empty `platformSettings` results | No custom overrides — platform uses defaults | This is normal; explain that defaults apply |\n| \"does not exist for organization\" | Internal account ID not found in this org | Verify the wallet address and re-resolve |\n| Invalid enum value | Wrong value for a setting | Use `introspect` on the enum type to show valid options |\n| DateTime parse error | Wrong format | Must be ISO 8601 with timezone: `\"2025-01-01T00:00:00+00:00\"` |\n",{"data":38,"body":39},{"name":4,"description":6},{"type":40,"children":41},"root",[42,51,58,64,90,94,100,107,112,133,143,149,154,160,165,213,219,224,293,299,312,359,364,367,373,378,566,569,575,581,659,684,690,695,878,884,897,933,936,942,948,953,1029,1040,1046,1109,1112,1118,1124,1129,1267,1273,1278,1408,1470,1476,1490,1493,1499,1504,1509,1623,1634,1640,1674,1680,1685,1802,1821,1824,1830,1850,1933,1958,1963,1966,1972,1977,2059,2079,2107,2110,2116,2122,2162,2168,2203,2209,2267,2273,2320,2326,2343,2349,2367,2370,2376,2520],{"type":43,"tag":44,"props":45,"children":47},"element","h1",{"id":46},"tres-mcp-organization-platform-settings",[48],{"type":49,"value":50},"text","TRES MCP - Organization & Platform Settings",{"type":43,"tag":52,"props":53,"children":55},"h2",{"id":54},"how-this-skill-works",[56],{"type":49,"value":57},"How This Skill Works",{"type":43,"tag":59,"props":60,"children":61},"p",{},[62],{"type":49,"value":63},"This skill lets users view and modify configuration for their TRES Finance organization and individual blockchain\u002Fexchange platforms. There are two levels:",{"type":43,"tag":65,"props":66,"children":67},"ul",{},[68,80],{"type":43,"tag":69,"props":70,"children":71},"li",{},[72,78],{"type":43,"tag":73,"props":74,"children":75},"strong",{},[76],{"type":49,"value":77},"Organization Settings",{"type":49,"value":79}," — Apply to the entire org: how cost basis is calculated, which features are enabled, ERP behavior, pricing sources, commit scheduling, etc.",{"type":43,"tag":69,"props":81,"children":82},{},[83,88],{"type":43,"tag":73,"props":84,"children":85},{},[86],{"type":49,"value":87},"Platform Settings",{"type":49,"value":89}," — Apply per-platform (e.g., Ethereum, Arbitrum) and optionally per-wallet: commit strategy, sync date boundaries, balance diff, asset filtering, etc.",{"type":43,"tag":91,"props":92,"children":93},"hr",{},[],{"type":43,"tag":52,"props":95,"children":97},{"id":96},"ground-rules",[98],{"type":49,"value":99},"Ground Rules",{"type":43,"tag":101,"props":102,"children":104},"h3",{"id":103},"_1-always-start-by-identifying-the-org",[105],{"type":49,"value":106},"1. Always Start by Identifying the Org",{"type":43,"tag":59,"props":108,"children":109},{},[110],{"type":49,"value":111},"Before doing anything, confirm which organization the user is connected to:",{"type":43,"tag":113,"props":114,"children":118},"pre",{"className":115,"code":116,"language":22,"meta":117,"style":117},"language-graphql shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","query { admin { orgName } }\n","",[119],{"type":43,"tag":120,"props":121,"children":122},"code",{"__ignoreMap":117},[123],{"type":43,"tag":124,"props":125,"children":128},"span",{"class":126,"line":127},"line",1,[129],{"type":43,"tag":124,"props":130,"children":131},{},[132],{"type":49,"value":116},{"type":43,"tag":59,"props":134,"children":135},{},[136,138,141],{"type":49,"value":137},"Tell the user: \"You're connected to ",{"type":43,"tag":73,"props":139,"children":140},{"org-name":117},[],{"type":49,"value":142},".\"",{"type":43,"tag":101,"props":144,"children":146},{"id":145},"_2-read-before-write",[147],{"type":49,"value":148},"2. Read Before Write",{"type":43,"tag":59,"props":150,"children":151},{},[152],{"type":49,"value":153},"Before any mutation, ALWAYS fetch the current value of the setting(s) being changed. Show a clear before\u002Fafter comparison.",{"type":43,"tag":101,"props":155,"children":157},{"id":156},"_3-mutations-require-explicit-approval",[158],{"type":49,"value":159},"3. Mutations Require Explicit Approval",{"type":43,"tag":59,"props":161,"children":162},{},[163],{"type":49,"value":164},"Before executing ANY mutation, you MUST:",{"type":43,"tag":166,"props":167,"children":168},"ol",{},[169,193,203,208],{"type":43,"tag":69,"props":170,"children":171},{},[172,174,179,181,186,188],{"type":49,"value":173},"Show a clear summary table with ",{"type":43,"tag":73,"props":175,"children":176},{},[177],{"type":49,"value":178},"Setting",{"type":49,"value":180},", ",{"type":43,"tag":73,"props":182,"children":183},{},[184],{"type":49,"value":185},"Current Value",{"type":49,"value":187},", and ",{"type":43,"tag":73,"props":189,"children":190},{},[191],{"type":49,"value":192},"New Value",{"type":43,"tag":69,"props":194,"children":195},{},[196,198,201],{"type":49,"value":197},"Explicitly ask: \"Shall I apply these changes to ",{"type":43,"tag":73,"props":199,"children":200},{"org-name":117},[],{"type":49,"value":202},"?\"",{"type":43,"tag":69,"props":204,"children":205},{},[206],{"type":49,"value":207},"Only proceed after the user confirms",{"type":43,"tag":69,"props":209,"children":210},{},[211],{"type":49,"value":212},"After execution, show the confirmed result from the mutation response",{"type":43,"tag":101,"props":214,"children":216},{"id":215},"_4-warn-about-high-risk-changes",[217],{"type":49,"value":218},"4. Warn About High-Risk Changes",{"type":43,"tag":59,"props":220,"children":221},{},[222],{"type":49,"value":223},"Flag these settings as potentially dangerous and add a warning:",{"type":43,"tag":65,"props":225,"children":226},{},[227,238,249,260,271,282],{"type":43,"tag":69,"props":228,"children":229},{},[230,236],{"type":43,"tag":120,"props":231,"children":233},{"className":232},[],[234],{"type":49,"value":235},"costBasisStrategy",{"type":49,"value":237}," — Changing mid-period can cause recalculations across the entire org",{"type":43,"tag":69,"props":239,"children":240},{},[241,247],{"type":43,"tag":120,"props":242,"children":244},{"className":243},[],[245],{"type":49,"value":246},"disableAutoCommit",{"type":49,"value":248}," — Stops all automatic data processing",{"type":43,"tag":69,"props":250,"children":251},{},[252,258],{"type":43,"tag":120,"props":253,"children":255},{"className":254},[],[256],{"type":49,"value":257},"skipCostBasis",{"type":49,"value":259}," — Disables cost basis entirely",{"type":43,"tag":69,"props":261,"children":262},{},[263,269],{"type":43,"tag":120,"props":264,"children":266},{"className":265},[],[267],{"type":49,"value":268},"commitStrategy: SKIP_ALL",{"type":49,"value":270}," — Fully disables a platform's data pipeline",{"type":43,"tag":69,"props":272,"children":273},{},[274,280],{"type":43,"tag":120,"props":275,"children":277},{"className":276},[],[278],{"type":49,"value":279},"enableMultiEntity",{"type":49,"value":281}," — Structural change, hard to reverse",{"type":43,"tag":69,"props":283,"children":284},{},[285,291],{"type":43,"tag":120,"props":286,"children":288},{"className":287},[],[289],{"type":49,"value":290},"allowShort",{"type":49,"value":292}," — Enables short positions in cost basis",{"type":43,"tag":101,"props":294,"children":296},{"id":295},"_5-use-schema-introspection-for-field-discovery",[297],{"type":49,"value":298},"5. Use Schema Introspection for Field Discovery",{"type":43,"tag":59,"props":300,"children":301},{},[302,304,310],{"type":49,"value":303},"Do NOT rely on hardcoded field lists. Use the MCP ",{"type":43,"tag":120,"props":305,"children":307},{"className":306},[],[308],{"type":49,"value":309},"introspect",{"type":49,"value":311}," tool to discover available fields and their types dynamically:",{"type":43,"tag":65,"props":313,"children":314},{},[315,326,337,348],{"type":43,"tag":69,"props":316,"children":317},{},[318,324],{"type":43,"tag":120,"props":319,"children":321},{"className":320},[],[322],{"type":49,"value":323},"introspect(\"OrganizationSettingsObjectType\")",{"type":49,"value":325}," — all readable org settings",{"type":43,"tag":69,"props":327,"children":328},{},[329,335],{"type":43,"tag":120,"props":330,"children":332},{"className":331},[],[333],{"type":49,"value":334},"introspect(\"setOrganizationSettings\")",{"type":49,"value":336}," — all writable org settings with descriptions",{"type":43,"tag":69,"props":338,"children":339},{},[340,346],{"type":43,"tag":120,"props":341,"children":343},{"className":342},[],[344],{"type":49,"value":345},"introspect(\"PlatformSettingsObjectType\")",{"type":49,"value":347}," — all readable platform settings",{"type":43,"tag":69,"props":349,"children":350},{},[351,357],{"type":43,"tag":120,"props":352,"children":354},{"className":353},[],[355],{"type":49,"value":356},"introspect(\"setPlatformSettings\")",{"type":49,"value":358}," — all writable platform settings with descriptions",{"type":43,"tag":59,"props":360,"children":361},{},[362],{"type":49,"value":363},"When a user asks \"what can I configure?\" or you need to verify a field name or enum values, introspect first.",{"type":43,"tag":91,"props":365,"children":366},{},[],{"type":43,"tag":52,"props":368,"children":370},{"id":369},"setting-categories-use-when-users-ask-vaguely",[371],{"type":49,"value":372},"Setting Categories (use when users ask vaguely)",{"type":43,"tag":59,"props":374,"children":375},{},[376],{"type":49,"value":377},"If the user says \"show me the settings\" without specifics, offer these categories with plain-language explanations:",{"type":43,"tag":379,"props":380,"children":381},"table",{},[382,401],{"type":43,"tag":383,"props":384,"children":385},"thead",{},[386],{"type":43,"tag":387,"props":388,"children":389},"tr",{},[390,396],{"type":43,"tag":391,"props":392,"children":393},"th",{},[394],{"type":49,"value":395},"Category",{"type":43,"tag":391,"props":397,"children":398},{},[399],{"type":49,"value":400},"What It Controls",{"type":43,"tag":402,"props":403,"children":404},"tbody",{},[405,422,438,454,470,486,502,518,534,550],{"type":43,"tag":387,"props":406,"children":407},{},[408,417],{"type":43,"tag":409,"props":410,"children":411},"td",{},[412],{"type":43,"tag":73,"props":413,"children":414},{},[415],{"type":49,"value":416},"Cost Basis",{"type":43,"tag":409,"props":418,"children":419},{},[420],{"type":49,"value":421},"How gains\u002Flosses are calculated (FIFO, LIFO, etc.), per-wallet vs org-wide, impairment",{"type":43,"tag":387,"props":423,"children":424},{},[425,433],{"type":43,"tag":409,"props":426,"children":427},{},[428],{"type":43,"tag":73,"props":429,"children":430},{},[431],{"type":49,"value":432},"Commit Pipeline",{"type":43,"tag":409,"props":434,"children":435},{},[436],{"type":49,"value":437},"Automatic data processing schedule, priority, stuck detection, sync hours",{"type":43,"tag":387,"props":439,"children":440},{},[441,449],{"type":43,"tag":409,"props":442,"children":443},{},[444],{"type":43,"tag":73,"props":445,"children":446},{},[447],{"type":49,"value":448},"Internal Transfers",{"type":43,"tag":409,"props":450,"children":451},{},[452],{"type":49,"value":453},"How transfers between the org's own wallets are detected and matched",{"type":43,"tag":387,"props":455,"children":456},{},[457,465],{"type":43,"tag":409,"props":458,"children":459},{},[460],{"type":43,"tag":73,"props":461,"children":462},{},[463],{"type":49,"value":464},"Pricing",{"type":43,"tag":409,"props":466,"children":467},{},[468],{"type":49,"value":469},"Where asset prices come from, stablecoin pegging, swap alignment",{"type":43,"tag":387,"props":471,"children":472},{},[473,481],{"type":43,"tag":409,"props":474,"children":475},{},[476],{"type":43,"tag":73,"props":477,"children":478},{},[479],{"type":49,"value":480},"ERP Integration",{"type":43,"tag":409,"props":482,"children":483},{},[484],{"type":49,"value":485},"How data syncs to accounting systems (NetSuite, Xero, QuickBooks)",{"type":43,"tag":387,"props":487,"children":488},{},[489,497],{"type":43,"tag":409,"props":490,"children":491},{},[492],{"type":43,"tag":73,"props":493,"children":494},{},[495],{"type":49,"value":496},"Dashboard & Features",{"type":43,"tag":409,"props":498,"children":499},{},[500],{"type":49,"value":501},"Which UI features are enabled (pivot tables, vesting, payments, multi-entity)",{"type":43,"tag":387,"props":503,"children":504},{},[505,513],{"type":43,"tag":409,"props":506,"children":507},{},[508],{"type":43,"tag":73,"props":509,"children":510},{},[511],{"type":49,"value":512},"Staking",{"type":43,"tag":409,"props":514,"children":515},{},[516],{"type":49,"value":517},"Staking rewards tracking and position management",{"type":43,"tag":387,"props":519,"children":520},{},[521,529],{"type":43,"tag":409,"props":522,"children":523},{},[524],{"type":43,"tag":73,"props":525,"children":526},{},[527],{"type":49,"value":528},"Reconciliation",{"type":43,"tag":409,"props":530,"children":531},{},[532],{"type":49,"value":533},"Cross-org and subsystem reconciliation behavior",{"type":43,"tag":387,"props":535,"children":536},{},[537,545],{"type":43,"tag":409,"props":538,"children":539},{},[540],{"type":43,"tag":73,"props":541,"children":542},{},[543],{"type":49,"value":544},"Reports",{"type":43,"tag":409,"props":546,"children":547},{},[548],{"type":49,"value":549},"Scheduled report timing, format, and content",{"type":43,"tag":387,"props":551,"children":552},{},[553,561],{"type":43,"tag":409,"props":554,"children":555},{},[556],{"type":43,"tag":73,"props":557,"children":558},{},[559],{"type":49,"value":560},"Platform Collection",{"type":43,"tag":409,"props":562,"children":563},{},[564],{"type":49,"value":565},"Which blockchains\u002Fexchanges are enabled, their sync boundaries and filters",{"type":43,"tag":91,"props":567,"children":568},{},[],{"type":43,"tag":52,"props":570,"children":572},{"id":571},"reading-organization-settings",[573],{"type":49,"value":574},"Reading Organization Settings",{"type":43,"tag":101,"props":576,"children":578},{"id":577},"query-structure",[579],{"type":49,"value":580},"Query Structure",{"type":43,"tag":113,"props":582,"children":584},{"className":115,"code":583,"language":22,"meta":117,"style":117},"query {\n  admin {\n    orgName\n    organizationSettings {\n      # include only the fields relevant to the user's question\n    }\n  }\n}\n",[585],{"type":43,"tag":120,"props":586,"children":587},{"__ignoreMap":117},[588,596,605,614,623,632,641,650],{"type":43,"tag":124,"props":589,"children":590},{"class":126,"line":127},[591],{"type":43,"tag":124,"props":592,"children":593},{},[594],{"type":49,"value":595},"query {\n",{"type":43,"tag":124,"props":597,"children":599},{"class":126,"line":598},2,[600],{"type":43,"tag":124,"props":601,"children":602},{},[603],{"type":49,"value":604},"  admin {\n",{"type":43,"tag":124,"props":606,"children":608},{"class":126,"line":607},3,[609],{"type":43,"tag":124,"props":610,"children":611},{},[612],{"type":49,"value":613},"    orgName\n",{"type":43,"tag":124,"props":615,"children":617},{"class":126,"line":616},4,[618],{"type":43,"tag":124,"props":619,"children":620},{},[621],{"type":49,"value":622},"    organizationSettings {\n",{"type":43,"tag":124,"props":624,"children":626},{"class":126,"line":625},5,[627],{"type":43,"tag":124,"props":628,"children":629},{},[630],{"type":49,"value":631},"      # include only the fields relevant to the user's question\n",{"type":43,"tag":124,"props":633,"children":635},{"class":126,"line":634},6,[636],{"type":43,"tag":124,"props":637,"children":638},{},[639],{"type":49,"value":640},"    }\n",{"type":43,"tag":124,"props":642,"children":644},{"class":126,"line":643},7,[645],{"type":43,"tag":124,"props":646,"children":647},{},[648],{"type":49,"value":649},"  }\n",{"type":43,"tag":124,"props":651,"children":653},{"class":126,"line":652},8,[654],{"type":43,"tag":124,"props":655,"children":656},{},[657],{"type":49,"value":658},"}\n",{"type":43,"tag":65,"props":660,"children":661},{},[662,667,672],{"type":43,"tag":69,"props":663,"children":664},{},[665],{"type":49,"value":666},"Organization is resolved from the auth token — no org ID needed",{"type":43,"tag":69,"props":668,"children":669},{},[670],{"type":49,"value":671},"Never request all fields at once — pick the category relevant to the question",{"type":43,"tag":69,"props":673,"children":674},{},[675,677,682],{"type":49,"value":676},"Use ",{"type":43,"tag":120,"props":678,"children":680},{"className":679},[],[681],{"type":49,"value":323},{"type":49,"value":683}," to discover available fields if needed",{"type":43,"tag":101,"props":685,"children":687},{"id":686},"nested-fields-must-expand-sub-fields-when-querying",[688],{"type":49,"value":689},"Nested Fields (must expand sub-fields when querying)",{"type":43,"tag":59,"props":691,"children":692},{},[693],{"type":49,"value":694},"These fields return objects\u002Flists, not scalars. Always include their sub-fields:",{"type":43,"tag":379,"props":696,"children":697},{},[698,719],{"type":43,"tag":383,"props":699,"children":700},{},[701],{"type":43,"tag":387,"props":702,"children":703},{},[704,709,714],{"type":43,"tag":391,"props":705,"children":706},{},[707],{"type":49,"value":708},"Field",{"type":43,"tag":391,"props":710,"children":711},{},[712],{"type":49,"value":713},"Sub-fields",{"type":43,"tag":391,"props":715,"children":716},{},[717],{"type":49,"value":718},"What It Is",{"type":43,"tag":402,"props":720,"children":721},{},[722,755,787,819,852],{"type":43,"tag":387,"props":723,"children":724},{},[725,734,750],{"type":43,"tag":409,"props":726,"children":727},{},[728],{"type":43,"tag":120,"props":729,"children":731},{"className":730},[],[732],{"type":49,"value":733},"peggedStableCoinsToFiat",{"type":43,"tag":409,"props":735,"children":736},{},[737,743,744],{"type":43,"tag":120,"props":738,"children":740},{"className":739},[],[741],{"type":49,"value":742},"assetName",{"type":49,"value":180},{"type":43,"tag":120,"props":745,"children":747},{"className":746},[],[748],{"type":49,"value":749},"currency",{"type":43,"tag":409,"props":751,"children":752},{},[753],{"type":49,"value":754},"Stablecoins treated as equivalent to fiat",{"type":43,"tag":387,"props":756,"children":757},{},[758,767,782],{"type":43,"tag":409,"props":759,"children":760},{},[761],{"type":43,"tag":120,"props":762,"children":764},{"className":763},[],[765],{"type":49,"value":766},"pricingApiSourcePerAsset",{"type":43,"tag":409,"props":768,"children":769},{},[770,775,776],{"type":43,"tag":120,"props":771,"children":773},{"className":772},[],[774],{"type":49,"value":742},{"type":49,"value":180},{"type":43,"tag":120,"props":777,"children":779},{"className":778},[],[780],{"type":49,"value":781},"pricingApiSource",{"type":43,"tag":409,"props":783,"children":784},{},[785],{"type":49,"value":786},"Custom pricing source per asset",{"type":43,"tag":387,"props":788,"children":789},{},[790,799,814],{"type":43,"tag":409,"props":791,"children":792},{},[793],{"type":43,"tag":120,"props":794,"children":796},{"className":795},[],[797],{"type":49,"value":798},"netsuiteCurrencySymbolToInternalId",{"type":43,"tag":409,"props":800,"children":801},{},[802,807,808],{"type":43,"tag":120,"props":803,"children":805},{"className":804},[],[806],{"type":49,"value":749},{"type":49,"value":180},{"type":43,"tag":120,"props":809,"children":811},{"className":810},[],[812],{"type":49,"value":813},"internalId",{"type":43,"tag":409,"props":815,"children":816},{},[817],{"type":49,"value":818},"NetSuite currency mapping",{"type":43,"tag":387,"props":820,"children":821},{},[822,831,847],{"type":43,"tag":409,"props":823,"children":824},{},[825],{"type":43,"tag":120,"props":826,"children":828},{"className":827},[],[829],{"type":49,"value":830},"simpleMatchingStrategies",{"type":43,"tag":409,"props":832,"children":833},{},[834,840,841],{"type":43,"tag":120,"props":835,"children":837},{"className":836},[],[838],{"type":49,"value":839},"beforeRange",{"type":49,"value":180},{"type":43,"tag":120,"props":842,"children":844},{"className":843},[],[845],{"type":49,"value":846},"afterRange",{"type":43,"tag":409,"props":848,"children":849},{},[850],{"type":49,"value":851},"Reconciliation time windows",{"type":43,"tag":387,"props":853,"children":854},{},[855,864,873],{"type":43,"tag":409,"props":856,"children":857},{},[858],{"type":43,"tag":120,"props":859,"children":861},{"className":860},[],[862],{"type":49,"value":863},"proofOfFunds",{"type":43,"tag":409,"props":865,"children":866},{},[867],{"type":43,"tag":120,"props":868,"children":870},{"className":869},[],[871],{"type":49,"value":872},"organizationName",{"type":43,"tag":409,"props":874,"children":875},{},[876],{"type":49,"value":877},"Proof of funds client config",{"type":43,"tag":101,"props":879,"children":881},{"id":880},"additional-admin-fields",[882],{"type":49,"value":883},"Additional Admin Fields",{"type":43,"tag":59,"props":885,"children":886},{},[887,889,895],{"type":49,"value":888},"The ",{"type":43,"tag":120,"props":890,"children":892},{"className":891},[],[893],{"type":49,"value":894},"admin",{"type":49,"value":896}," query also provides:",{"type":43,"tag":65,"props":898,"children":899},{},[900,911,922],{"type":43,"tag":69,"props":901,"children":902},{},[903,909],{"type":43,"tag":120,"props":904,"children":906},{"className":905},[],[907],{"type":49,"value":908},"orgName",{"type":49,"value":910}," — the organization's display name",{"type":43,"tag":69,"props":912,"children":913},{},[914,920],{"type":43,"tag":120,"props":915,"children":917},{"className":916},[],[918],{"type":49,"value":919},"disabledPlatforms",{"type":49,"value":921}," — quick list of platforms with collection fully disabled",{"type":43,"tag":69,"props":923,"children":924},{},[925,931],{"type":43,"tag":120,"props":926,"children":928},{"className":927},[],[929],{"type":49,"value":930},"auth0Connections",{"type":49,"value":932}," — available SSO login methods",{"type":43,"tag":91,"props":934,"children":935},{},[],{"type":43,"tag":52,"props":937,"children":939},{"id":938},"writing-organization-settings",[940],{"type":49,"value":941},"Writing Organization Settings",{"type":43,"tag":101,"props":943,"children":945},{"id":944},"mutation-structure",[946],{"type":49,"value":947},"Mutation Structure",{"type":43,"tag":59,"props":949,"children":950},{},[951],{"type":49,"value":952},"Uses patch semantics — only include the fields you want to change. Everything else stays as-is.",{"type":43,"tag":113,"props":954,"children":956},{"className":115,"code":955,"language":22,"meta":117,"style":117},"mutation {\n  setOrganizationSettings(\n    costBasisStrategy: FIFO\n  ) {\n    organizationSettings {\n      costBasisStrategy\n    }\n  }\n}\n",[957],{"type":43,"tag":120,"props":958,"children":959},{"__ignoreMap":117},[960,968,976,984,992,999,1007,1014,1021],{"type":43,"tag":124,"props":961,"children":962},{"class":126,"line":127},[963],{"type":43,"tag":124,"props":964,"children":965},{},[966],{"type":49,"value":967},"mutation {\n",{"type":43,"tag":124,"props":969,"children":970},{"class":126,"line":598},[971],{"type":43,"tag":124,"props":972,"children":973},{},[974],{"type":49,"value":975},"  setOrganizationSettings(\n",{"type":43,"tag":124,"props":977,"children":978},{"class":126,"line":607},[979],{"type":43,"tag":124,"props":980,"children":981},{},[982],{"type":49,"value":983},"    costBasisStrategy: FIFO\n",{"type":43,"tag":124,"props":985,"children":986},{"class":126,"line":616},[987],{"type":43,"tag":124,"props":988,"children":989},{},[990],{"type":49,"value":991},"  ) {\n",{"type":43,"tag":124,"props":993,"children":994},{"class":126,"line":625},[995],{"type":43,"tag":124,"props":996,"children":997},{},[998],{"type":49,"value":622},{"type":43,"tag":124,"props":1000,"children":1001},{"class":126,"line":634},[1002],{"type":43,"tag":124,"props":1003,"children":1004},{},[1005],{"type":49,"value":1006},"      costBasisStrategy\n",{"type":43,"tag":124,"props":1008,"children":1009},{"class":126,"line":643},[1010],{"type":43,"tag":124,"props":1011,"children":1012},{},[1013],{"type":49,"value":640},{"type":43,"tag":124,"props":1015,"children":1016},{"class":126,"line":652},[1017],{"type":43,"tag":124,"props":1018,"children":1019},{},[1020],{"type":49,"value":649},{"type":43,"tag":124,"props":1022,"children":1024},{"class":126,"line":1023},9,[1025],{"type":43,"tag":124,"props":1026,"children":1027},{},[1028],{"type":49,"value":658},{"type":43,"tag":59,"props":1030,"children":1031},{},[1032,1033,1038],{"type":49,"value":676},{"type":43,"tag":120,"props":1034,"children":1036},{"className":1035},[],[1037],{"type":49,"value":334},{"type":49,"value":1039}," to discover all mutable fields, their types, and descriptions.",{"type":43,"tag":101,"props":1041,"children":1043},{"id":1042},"workflow-for-changing-org-settings",[1044],{"type":49,"value":1045},"Workflow for Changing Org Settings",{"type":43,"tag":166,"props":1047,"children":1048},{},[1049,1059,1069,1079,1089,1099],{"type":43,"tag":69,"props":1050,"children":1051},{},[1052,1057],{"type":43,"tag":73,"props":1053,"children":1054},{},[1055],{"type":49,"value":1056},"Read",{"type":49,"value":1058}," the current values of the setting(s) being changed",{"type":43,"tag":69,"props":1060,"children":1061},{},[1062,1067],{"type":43,"tag":73,"props":1063,"children":1064},{},[1065],{"type":49,"value":1066},"Show",{"type":49,"value":1068}," the user a before\u002Fafter comparison table",{"type":43,"tag":69,"props":1070,"children":1071},{},[1072,1077],{"type":43,"tag":73,"props":1073,"children":1074},{},[1075],{"type":49,"value":1076},"Warn",{"type":49,"value":1078}," if any high-risk settings are involved",{"type":43,"tag":69,"props":1080,"children":1081},{},[1082,1087],{"type":43,"tag":73,"props":1083,"children":1084},{},[1085],{"type":49,"value":1086},"Ask",{"type":49,"value":1088}," for approval",{"type":43,"tag":69,"props":1090,"children":1091},{},[1092,1097],{"type":43,"tag":73,"props":1093,"children":1094},{},[1095],{"type":49,"value":1096},"Execute",{"type":49,"value":1098}," the mutation",{"type":43,"tag":69,"props":1100,"children":1101},{},[1102,1107],{"type":43,"tag":73,"props":1103,"children":1104},{},[1105],{"type":49,"value":1106},"Confirm",{"type":49,"value":1108}," by showing the returned values",{"type":43,"tag":91,"props":1110,"children":1111},{},[],{"type":43,"tag":52,"props":1113,"children":1115},{"id":1114},"reading-platform-settings",[1116],{"type":49,"value":1117},"Reading Platform Settings",{"type":43,"tag":101,"props":1119,"children":1121},{"id":1120},"query-structure-top-level-query",[1122],{"type":49,"value":1123},"Query Structure (top-level query)",{"type":43,"tag":59,"props":1125,"children":1126},{},[1127],{"type":49,"value":1128},"Returns only platforms\u002Faccounts with explicit overrides. Platforms using all defaults won't appear.",{"type":43,"tag":113,"props":1130,"children":1132},{"className":115,"code":1131,"language":22,"meta":117,"style":117},"query {\n  platformSettings(platform: ETHEREUM) {\n    results {\n      settingsId\n      platform\n      internalAccountId\n      platformSettings {\n        commitStrategy\n        calculateBalanceDiff\n        minLastSyncedAt\n        maxToDate\n        # add fields as needed — use introspect(\"PlatformSettingsObjectType\") for full list\n      }\n    }\n  }\n}\n",[1133],{"type":43,"tag":120,"props":1134,"children":1135},{"__ignoreMap":117},[1136,1143,1151,1159,1167,1175,1183,1191,1199,1207,1216,1225,1234,1243,1251,1259],{"type":43,"tag":124,"props":1137,"children":1138},{"class":126,"line":127},[1139],{"type":43,"tag":124,"props":1140,"children":1141},{},[1142],{"type":49,"value":595},{"type":43,"tag":124,"props":1144,"children":1145},{"class":126,"line":598},[1146],{"type":43,"tag":124,"props":1147,"children":1148},{},[1149],{"type":49,"value":1150},"  platformSettings(platform: ETHEREUM) {\n",{"type":43,"tag":124,"props":1152,"children":1153},{"class":126,"line":607},[1154],{"type":43,"tag":124,"props":1155,"children":1156},{},[1157],{"type":49,"value":1158},"    results {\n",{"type":43,"tag":124,"props":1160,"children":1161},{"class":126,"line":616},[1162],{"type":43,"tag":124,"props":1163,"children":1164},{},[1165],{"type":49,"value":1166},"      settingsId\n",{"type":43,"tag":124,"props":1168,"children":1169},{"class":126,"line":625},[1170],{"type":43,"tag":124,"props":1171,"children":1172},{},[1173],{"type":49,"value":1174},"      platform\n",{"type":43,"tag":124,"props":1176,"children":1177},{"class":126,"line":634},[1178],{"type":43,"tag":124,"props":1179,"children":1180},{},[1181],{"type":49,"value":1182},"      internalAccountId\n",{"type":43,"tag":124,"props":1184,"children":1185},{"class":126,"line":643},[1186],{"type":43,"tag":124,"props":1187,"children":1188},{},[1189],{"type":49,"value":1190},"      platformSettings {\n",{"type":43,"tag":124,"props":1192,"children":1193},{"class":126,"line":652},[1194],{"type":43,"tag":124,"props":1195,"children":1196},{},[1197],{"type":49,"value":1198},"        commitStrategy\n",{"type":43,"tag":124,"props":1200,"children":1201},{"class":126,"line":1023},[1202],{"type":43,"tag":124,"props":1203,"children":1204},{},[1205],{"type":49,"value":1206},"        calculateBalanceDiff\n",{"type":43,"tag":124,"props":1208,"children":1210},{"class":126,"line":1209},10,[1211],{"type":43,"tag":124,"props":1212,"children":1213},{},[1214],{"type":49,"value":1215},"        minLastSyncedAt\n",{"type":43,"tag":124,"props":1217,"children":1219},{"class":126,"line":1218},11,[1220],{"type":43,"tag":124,"props":1221,"children":1222},{},[1223],{"type":49,"value":1224},"        maxToDate\n",{"type":43,"tag":124,"props":1226,"children":1228},{"class":126,"line":1227},12,[1229],{"type":43,"tag":124,"props":1230,"children":1231},{},[1232],{"type":49,"value":1233},"        # add fields as needed — use introspect(\"PlatformSettingsObjectType\") for full list\n",{"type":43,"tag":124,"props":1235,"children":1237},{"class":126,"line":1236},13,[1238],{"type":43,"tag":124,"props":1239,"children":1240},{},[1241],{"type":49,"value":1242},"      }\n",{"type":43,"tag":124,"props":1244,"children":1246},{"class":126,"line":1245},14,[1247],{"type":43,"tag":124,"props":1248,"children":1249},{},[1250],{"type":49,"value":640},{"type":43,"tag":124,"props":1252,"children":1254},{"class":126,"line":1253},15,[1255],{"type":43,"tag":124,"props":1256,"children":1257},{},[1258],{"type":49,"value":649},{"type":43,"tag":124,"props":1260,"children":1262},{"class":126,"line":1261},16,[1263],{"type":43,"tag":124,"props":1264,"children":1265},{},[1266],{"type":49,"value":658},{"type":43,"tag":101,"props":1268,"children":1270},{"id":1269},"filtering-options",[1271],{"type":49,"value":1272},"Filtering Options",{"type":43,"tag":59,"props":1274,"children":1275},{},[1276],{"type":49,"value":1277},"All arguments are optional — combine as needed:",{"type":43,"tag":379,"props":1279,"children":1280},{},[1281,1302],{"type":43,"tag":383,"props":1282,"children":1283},{},[1284],{"type":43,"tag":387,"props":1285,"children":1286},{},[1287,1292,1297],{"type":43,"tag":391,"props":1288,"children":1289},{},[1290],{"type":49,"value":1291},"Argument",{"type":43,"tag":391,"props":1293,"children":1294},{},[1295],{"type":49,"value":1296},"Type",{"type":43,"tag":391,"props":1298,"children":1299},{},[1300],{"type":49,"value":1301},"Use Case",{"type":43,"tag":402,"props":1303,"children":1304},{},[1305,1331,1357,1383],{"type":43,"tag":387,"props":1306,"children":1307},{},[1308,1317,1326],{"type":43,"tag":409,"props":1309,"children":1310},{},[1311],{"type":43,"tag":120,"props":1312,"children":1314},{"className":1313},[],[1315],{"type":49,"value":1316},"platform",{"type":43,"tag":409,"props":1318,"children":1319},{},[1320],{"type":43,"tag":120,"props":1321,"children":1323},{"className":1322},[],[1324],{"type":49,"value":1325},"Platform",{"type":43,"tag":409,"props":1327,"children":1328},{},[1329],{"type":49,"value":1330},"Show settings for a specific chain\u002Fexchange",{"type":43,"tag":387,"props":1332,"children":1333},{},[1334,1343,1352],{"type":43,"tag":409,"props":1335,"children":1336},{},[1337],{"type":43,"tag":120,"props":1338,"children":1340},{"className":1339},[],[1341],{"type":49,"value":1342},"internalAccountId",{"type":43,"tag":409,"props":1344,"children":1345},{},[1346],{"type":43,"tag":120,"props":1347,"children":1349},{"className":1348},[],[1350],{"type":49,"value":1351},"Int",{"type":43,"tag":409,"props":1353,"children":1354},{},[1355],{"type":49,"value":1356},"Show settings for a specific wallet",{"type":43,"tag":387,"props":1358,"children":1359},{},[1360,1369,1378],{"type":43,"tag":409,"props":1361,"children":1362},{},[1363],{"type":43,"tag":120,"props":1364,"children":1366},{"className":1365},[],[1367],{"type":49,"value":1368},"settingsId",{"type":43,"tag":409,"props":1370,"children":1371},{},[1372],{"type":43,"tag":120,"props":1373,"children":1375},{"className":1374},[],[1376],{"type":49,"value":1377},"String",{"type":43,"tag":409,"props":1379,"children":1380},{},[1381],{"type":49,"value":1382},"Exact match on storage key",{"type":43,"tag":387,"props":1384,"children":1385},{},[1386,1395,1403],{"type":43,"tag":409,"props":1387,"children":1388},{},[1389],{"type":43,"tag":120,"props":1390,"children":1392},{"className":1391},[],[1393],{"type":49,"value":1394},"settingsId_Icontains",{"type":43,"tag":409,"props":1396,"children":1397},{},[1398],{"type":43,"tag":120,"props":1399,"children":1401},{"className":1400},[],[1402],{"type":49,"value":1377},{"type":43,"tag":409,"props":1404,"children":1405},{},[1406],{"type":49,"value":1407},"Partial match (e.g., \"ethereum\" matches \"ethereum_714128\")",{"type":43,"tag":65,"props":1409,"children":1410},{},[1411,1421,1436,1456],{"type":43,"tag":69,"props":1412,"children":1413},{},[1414,1419],{"type":43,"tag":73,"props":1415,"children":1416},{},[1417],{"type":49,"value":1418},"No args",{"type":49,"value":1420}," → all stored platform settings",{"type":43,"tag":69,"props":1422,"children":1423},{},[1424,1434],{"type":43,"tag":73,"props":1425,"children":1426},{},[1427,1432],{"type":43,"tag":120,"props":1428,"children":1430},{"className":1429},[],[1431],{"type":49,"value":1316},{"type":49,"value":1433}," only",{"type":49,"value":1435}," → platform-wide + all per-wallet overrides for that platform",{"type":43,"tag":69,"props":1437,"children":1438},{},[1439,1454],{"type":43,"tag":73,"props":1440,"children":1441},{},[1442,1447,1449],{"type":43,"tag":120,"props":1443,"children":1445},{"className":1444},[],[1446],{"type":49,"value":1316},{"type":49,"value":1448}," + ",{"type":43,"tag":120,"props":1450,"children":1452},{"className":1451},[],[1453],{"type":49,"value":1342},{"type":49,"value":1455}," → only the per-wallet override",{"type":43,"tag":69,"props":1457,"children":1458},{},[1459,1468],{"type":43,"tag":73,"props":1460,"children":1461},{},[1462,1467],{"type":43,"tag":120,"props":1463,"children":1465},{"className":1464},[],[1466],{"type":49,"value":1342},{"type":49,"value":1433},{"type":49,"value":1469}," → all platforms for that wallet",{"type":43,"tag":101,"props":1471,"children":1473},{"id":1472},"quick-check-which-platforms-are-disabled",[1474],{"type":49,"value":1475},"Quick Check: Which Platforms Are Disabled?",{"type":43,"tag":113,"props":1477,"children":1479},{"className":115,"code":1478,"language":22,"meta":117,"style":117},"query { admin { disabledPlatforms } }\n",[1480],{"type":43,"tag":120,"props":1481,"children":1482},{"__ignoreMap":117},[1483],{"type":43,"tag":124,"props":1484,"children":1485},{"class":126,"line":127},[1486],{"type":43,"tag":124,"props":1487,"children":1488},{},[1489],{"type":49,"value":1478},{"type":43,"tag":91,"props":1491,"children":1492},{},[],{"type":43,"tag":52,"props":1494,"children":1496},{"id":1495},"writing-platform-settings",[1497],{"type":49,"value":1498},"Writing Platform Settings",{"type":43,"tag":101,"props":1500,"children":1502},{"id":1501},"mutation-structure-1",[1503],{"type":49,"value":947},{"type":43,"tag":59,"props":1505,"children":1506},{},[1507],{"type":49,"value":1508},"Patch semantics — only included fields are merged. Existing values preserved.",{"type":43,"tag":113,"props":1510,"children":1512},{"className":115,"code":1511,"language":22,"meta":117,"style":117},"mutation {\n  setPlatformSettings(\n    platform: ARBITRUM\n    internalAccountId: 714128    # omit for platform-wide\n    commitStrategy: FULL\n    minLastSyncedAt: \"2025-01-01T00:00:00+00:00\"\n  ) {\n    settingsId\n    platformSettings {\n      commitStrategy\n      minLastSyncedAt\n    }\n  }\n}\n",[1513],{"type":43,"tag":120,"props":1514,"children":1515},{"__ignoreMap":117},[1516,1523,1531,1539,1547,1555,1563,1570,1578,1586,1594,1602,1609,1616],{"type":43,"tag":124,"props":1517,"children":1518},{"class":126,"line":127},[1519],{"type":43,"tag":124,"props":1520,"children":1521},{},[1522],{"type":49,"value":967},{"type":43,"tag":124,"props":1524,"children":1525},{"class":126,"line":598},[1526],{"type":43,"tag":124,"props":1527,"children":1528},{},[1529],{"type":49,"value":1530},"  setPlatformSettings(\n",{"type":43,"tag":124,"props":1532,"children":1533},{"class":126,"line":607},[1534],{"type":43,"tag":124,"props":1535,"children":1536},{},[1537],{"type":49,"value":1538},"    platform: ARBITRUM\n",{"type":43,"tag":124,"props":1540,"children":1541},{"class":126,"line":616},[1542],{"type":43,"tag":124,"props":1543,"children":1544},{},[1545],{"type":49,"value":1546},"    internalAccountId: 714128    # omit for platform-wide\n",{"type":43,"tag":124,"props":1548,"children":1549},{"class":126,"line":625},[1550],{"type":43,"tag":124,"props":1551,"children":1552},{},[1553],{"type":49,"value":1554},"    commitStrategy: FULL\n",{"type":43,"tag":124,"props":1556,"children":1557},{"class":126,"line":634},[1558],{"type":43,"tag":124,"props":1559,"children":1560},{},[1561],{"type":49,"value":1562},"    minLastSyncedAt: \"2025-01-01T00:00:00+00:00\"\n",{"type":43,"tag":124,"props":1564,"children":1565},{"class":126,"line":643},[1566],{"type":43,"tag":124,"props":1567,"children":1568},{},[1569],{"type":49,"value":991},{"type":43,"tag":124,"props":1571,"children":1572},{"class":126,"line":652},[1573],{"type":43,"tag":124,"props":1574,"children":1575},{},[1576],{"type":49,"value":1577},"    settingsId\n",{"type":43,"tag":124,"props":1579,"children":1580},{"class":126,"line":1023},[1581],{"type":43,"tag":124,"props":1582,"children":1583},{},[1584],{"type":49,"value":1585},"    platformSettings {\n",{"type":43,"tag":124,"props":1587,"children":1588},{"class":126,"line":1209},[1589],{"type":43,"tag":124,"props":1590,"children":1591},{},[1592],{"type":49,"value":1593},"      commitStrategy\n",{"type":43,"tag":124,"props":1595,"children":1596},{"class":126,"line":1218},[1597],{"type":43,"tag":124,"props":1598,"children":1599},{},[1600],{"type":49,"value":1601},"      minLastSyncedAt\n",{"type":43,"tag":124,"props":1603,"children":1604},{"class":126,"line":1227},[1605],{"type":43,"tag":124,"props":1606,"children":1607},{},[1608],{"type":49,"value":640},{"type":43,"tag":124,"props":1610,"children":1611},{"class":126,"line":1236},[1612],{"type":43,"tag":124,"props":1613,"children":1614},{},[1615],{"type":49,"value":649},{"type":43,"tag":124,"props":1617,"children":1618},{"class":126,"line":1245},[1619],{"type":43,"tag":124,"props":1620,"children":1621},{},[1622],{"type":49,"value":658},{"type":43,"tag":59,"props":1624,"children":1625},{},[1626,1627,1632],{"type":49,"value":676},{"type":43,"tag":120,"props":1628,"children":1630},{"className":1629},[],[1631],{"type":49,"value":356},{"type":49,"value":1633}," to discover all available arguments.",{"type":43,"tag":101,"props":1635,"children":1637},{"id":1636},"key-arguments",[1638],{"type":49,"value":1639},"Key Arguments",{"type":43,"tag":65,"props":1641,"children":1642},{},[1643,1653,1663],{"type":43,"tag":69,"props":1644,"children":1645},{},[1646,1651],{"type":43,"tag":120,"props":1647,"children":1649},{"className":1648},[],[1650],{"type":49,"value":1316},{"type":49,"value":1652}," (required) — target blockchain or exchange",{"type":43,"tag":69,"props":1654,"children":1655},{},[1656,1661],{"type":43,"tag":120,"props":1657,"children":1659},{"className":1658},[],[1660],{"type":49,"value":1342},{"type":49,"value":1662}," (optional) — scope to a specific wallet. Omit for platform-wide",{"type":43,"tag":69,"props":1664,"children":1665},{},[1666,1668],{"type":49,"value":1667},"DateTime values must be ISO 8601 with timezone: ",{"type":43,"tag":120,"props":1669,"children":1671},{"className":1670},[],[1672],{"type":49,"value":1673},"\"2025-01-01T00:00:00+00:00\"",{"type":43,"tag":101,"props":1675,"children":1677},{"id":1676},"balance-rollup-balance-diff",[1678],{"type":49,"value":1679},"Balance Rollup (Balance Diff)",{"type":43,"tag":59,"props":1681,"children":1682},{},[1683],{"type":49,"value":1684},"To enable balance-diff-based activity tracking for specific assets:",{"type":43,"tag":113,"props":1686,"children":1688},{"className":115,"code":1687,"language":22,"meta":117,"style":117},"mutation {\n  setPlatformSettings(\n    platform: ARBITRUM\n    internalAccountId: 714128\n    balanceRollupSettings: {\n      assetIdentifiers: [\"native\"]\n      interval: DAILY\n    }\n  ) {\n    settingsId\n    platformSettings {\n      balanceRollupSettings { assetIdentifiers interval }\n    }\n  }\n}\n",[1689],{"type":43,"tag":120,"props":1690,"children":1691},{"__ignoreMap":117},[1692,1699,1706,1713,1721,1729,1737,1745,1752,1759,1766,1773,1781,1788,1795],{"type":43,"tag":124,"props":1693,"children":1694},{"class":126,"line":127},[1695],{"type":43,"tag":124,"props":1696,"children":1697},{},[1698],{"type":49,"value":967},{"type":43,"tag":124,"props":1700,"children":1701},{"class":126,"line":598},[1702],{"type":43,"tag":124,"props":1703,"children":1704},{},[1705],{"type":49,"value":1530},{"type":43,"tag":124,"props":1707,"children":1708},{"class":126,"line":607},[1709],{"type":43,"tag":124,"props":1710,"children":1711},{},[1712],{"type":49,"value":1538},{"type":43,"tag":124,"props":1714,"children":1715},{"class":126,"line":616},[1716],{"type":43,"tag":124,"props":1717,"children":1718},{},[1719],{"type":49,"value":1720},"    internalAccountId: 714128\n",{"type":43,"tag":124,"props":1722,"children":1723},{"class":126,"line":625},[1724],{"type":43,"tag":124,"props":1725,"children":1726},{},[1727],{"type":49,"value":1728},"    balanceRollupSettings: {\n",{"type":43,"tag":124,"props":1730,"children":1731},{"class":126,"line":634},[1732],{"type":43,"tag":124,"props":1733,"children":1734},{},[1735],{"type":49,"value":1736},"      assetIdentifiers: [\"native\"]\n",{"type":43,"tag":124,"props":1738,"children":1739},{"class":126,"line":643},[1740],{"type":43,"tag":124,"props":1741,"children":1742},{},[1743],{"type":49,"value":1744},"      interval: DAILY\n",{"type":43,"tag":124,"props":1746,"children":1747},{"class":126,"line":652},[1748],{"type":43,"tag":124,"props":1749,"children":1750},{},[1751],{"type":49,"value":640},{"type":43,"tag":124,"props":1753,"children":1754},{"class":126,"line":1023},[1755],{"type":43,"tag":124,"props":1756,"children":1757},{},[1758],{"type":49,"value":991},{"type":43,"tag":124,"props":1760,"children":1761},{"class":126,"line":1209},[1762],{"type":43,"tag":124,"props":1763,"children":1764},{},[1765],{"type":49,"value":1577},{"type":43,"tag":124,"props":1767,"children":1768},{"class":126,"line":1218},[1769],{"type":43,"tag":124,"props":1770,"children":1771},{},[1772],{"type":49,"value":1585},{"type":43,"tag":124,"props":1774,"children":1775},{"class":126,"line":1227},[1776],{"type":43,"tag":124,"props":1777,"children":1778},{},[1779],{"type":49,"value":1780},"      balanceRollupSettings { assetIdentifiers interval }\n",{"type":43,"tag":124,"props":1782,"children":1783},{"class":126,"line":1236},[1784],{"type":43,"tag":124,"props":1785,"children":1786},{},[1787],{"type":49,"value":640},{"type":43,"tag":124,"props":1789,"children":1790},{"class":126,"line":1245},[1791],{"type":43,"tag":124,"props":1792,"children":1793},{},[1794],{"type":49,"value":649},{"type":43,"tag":124,"props":1796,"children":1797},{"class":126,"line":1253},[1798],{"type":43,"tag":124,"props":1799,"children":1800},{},[1801],{"type":49,"value":658},{"type":43,"tag":59,"props":1803,"children":1804},{},[1805,1811,1813,1819],{"type":43,"tag":120,"props":1806,"children":1808},{"className":1807},[],[1809],{"type":49,"value":1810},"assetIdentifiers",{"type":49,"value":1812}," can be ",{"type":43,"tag":120,"props":1814,"children":1816},{"className":1815},[],[1817],{"type":49,"value":1818},"\"native\"",{"type":49,"value":1820}," for the chain's native asset, or contract addresses for tokens.",{"type":43,"tag":91,"props":1822,"children":1823},{},[],{"type":43,"tag":52,"props":1825,"children":1827},{"id":1826},"enabling-disabling-platforms",[1828],{"type":49,"value":1829},"Enabling \u002F Disabling Platforms",{"type":43,"tag":59,"props":1831,"children":1832},{},[1833,1834,1840,1842,1848],{"type":49,"value":676},{"type":43,"tag":120,"props":1835,"children":1837},{"className":1836},[],[1838],{"type":49,"value":1839},"setPlatformCollectionStatus",{"type":49,"value":1841}," (not ",{"type":43,"tag":120,"props":1843,"children":1845},{"className":1844},[],[1846],{"type":49,"value":1847},"setPlatformSettings",{"type":49,"value":1849},") for simple enable\u002Fdisable.",{"type":43,"tag":113,"props":1851,"children":1853},{"className":115,"code":1852,"language":22,"meta":117,"style":117},"mutation {\n  setPlatformCollectionStatus(\n    platformCollectionStatuses: [\n      { platform: ARBITRUM, enabled: true }\n      { platform: POLYGON, enabled: false }\n    ]\n  ) {\n    success\n  }\n}\n",[1854],{"type":43,"tag":120,"props":1855,"children":1856},{"__ignoreMap":117},[1857,1864,1872,1880,1888,1896,1904,1911,1919,1926],{"type":43,"tag":124,"props":1858,"children":1859},{"class":126,"line":127},[1860],{"type":43,"tag":124,"props":1861,"children":1862},{},[1863],{"type":49,"value":967},{"type":43,"tag":124,"props":1865,"children":1866},{"class":126,"line":598},[1867],{"type":43,"tag":124,"props":1868,"children":1869},{},[1870],{"type":49,"value":1871},"  setPlatformCollectionStatus(\n",{"type":43,"tag":124,"props":1873,"children":1874},{"class":126,"line":607},[1875],{"type":43,"tag":124,"props":1876,"children":1877},{},[1878],{"type":49,"value":1879},"    platformCollectionStatuses: [\n",{"type":43,"tag":124,"props":1881,"children":1882},{"class":126,"line":616},[1883],{"type":43,"tag":124,"props":1884,"children":1885},{},[1886],{"type":49,"value":1887},"      { platform: ARBITRUM, enabled: true }\n",{"type":43,"tag":124,"props":1889,"children":1890},{"class":126,"line":625},[1891],{"type":43,"tag":124,"props":1892,"children":1893},{},[1894],{"type":49,"value":1895},"      { platform: POLYGON, enabled: false }\n",{"type":43,"tag":124,"props":1897,"children":1898},{"class":126,"line":634},[1899],{"type":43,"tag":124,"props":1900,"children":1901},{},[1902],{"type":49,"value":1903},"    ]\n",{"type":43,"tag":124,"props":1905,"children":1906},{"class":126,"line":643},[1907],{"type":43,"tag":124,"props":1908,"children":1909},{},[1910],{"type":49,"value":991},{"type":43,"tag":124,"props":1912,"children":1913},{"class":126,"line":652},[1914],{"type":43,"tag":124,"props":1915,"children":1916},{},[1917],{"type":49,"value":1918},"    success\n",{"type":43,"tag":124,"props":1920,"children":1921},{"class":126,"line":1023},[1922],{"type":43,"tag":124,"props":1923,"children":1924},{},[1925],{"type":49,"value":649},{"type":43,"tag":124,"props":1927,"children":1928},{"class":126,"line":1209},[1929],{"type":43,"tag":124,"props":1930,"children":1931},{},[1932],{"type":49,"value":658},{"type":43,"tag":65,"props":1934,"children":1935},{},[1936,1947],{"type":43,"tag":69,"props":1937,"children":1938},{},[1939,1945],{"type":43,"tag":120,"props":1940,"children":1942},{"className":1941},[],[1943],{"type":49,"value":1944},"enabled: true",{"type":49,"value":1946}," → platform will be collected in commits (FULL)",{"type":43,"tag":69,"props":1948,"children":1949},{},[1950,1956],{"type":43,"tag":120,"props":1951,"children":1953},{"className":1952},[],[1954],{"type":49,"value":1955},"enabled: false",{"type":49,"value":1957}," → platform is fully skipped (SKIP_ALL)",{"type":43,"tag":59,"props":1959,"children":1960},{},[1961],{"type":49,"value":1962},"Supports bulk operations — multiple platforms in one call.",{"type":43,"tag":91,"props":1964,"children":1965},{},[],{"type":43,"tag":52,"props":1967,"children":1969},{"id":1968},"resolving-wallet-addresses-to-internal-account-ids",[1970],{"type":49,"value":1971},"Resolving Wallet Addresses to Internal Account IDs",{"type":43,"tag":59,"props":1973,"children":1974},{},[1975],{"type":49,"value":1976},"When the user provides a wallet address, look up the internal account ID:",{"type":43,"tag":113,"props":1978,"children":1980},{"className":115,"code":1979,"language":22,"meta":117,"style":117},"query {\n  internalAccount(identifier: \"0x1887fa9edadeab7562b01cc3f4fa246ace2c3cdd\") {\n    results {\n      id\n      name\n      identifier\n      parentPlatform\n    }\n  }\n}\n",[1981],{"type":43,"tag":120,"props":1982,"children":1983},{"__ignoreMap":117},[1984,1991,1999,2006,2014,2022,2030,2038,2045,2052],{"type":43,"tag":124,"props":1985,"children":1986},{"class":126,"line":127},[1987],{"type":43,"tag":124,"props":1988,"children":1989},{},[1990],{"type":49,"value":595},{"type":43,"tag":124,"props":1992,"children":1993},{"class":126,"line":598},[1994],{"type":43,"tag":124,"props":1995,"children":1996},{},[1997],{"type":49,"value":1998},"  internalAccount(identifier: \"0x1887fa9edadeab7562b01cc3f4fa246ace2c3cdd\") {\n",{"type":43,"tag":124,"props":2000,"children":2001},{"class":126,"line":607},[2002],{"type":43,"tag":124,"props":2003,"children":2004},{},[2005],{"type":49,"value":1158},{"type":43,"tag":124,"props":2007,"children":2008},{"class":126,"line":616},[2009],{"type":43,"tag":124,"props":2010,"children":2011},{},[2012],{"type":49,"value":2013},"      id\n",{"type":43,"tag":124,"props":2015,"children":2016},{"class":126,"line":625},[2017],{"type":43,"tag":124,"props":2018,"children":2019},{},[2020],{"type":49,"value":2021},"      name\n",{"type":43,"tag":124,"props":2023,"children":2024},{"class":126,"line":634},[2025],{"type":43,"tag":124,"props":2026,"children":2027},{},[2028],{"type":49,"value":2029},"      identifier\n",{"type":43,"tag":124,"props":2031,"children":2032},{"class":126,"line":643},[2033],{"type":43,"tag":124,"props":2034,"children":2035},{},[2036],{"type":49,"value":2037},"      parentPlatform\n",{"type":43,"tag":124,"props":2039,"children":2040},{"class":126,"line":652},[2041],{"type":43,"tag":124,"props":2042,"children":2043},{},[2044],{"type":49,"value":640},{"type":43,"tag":124,"props":2046,"children":2047},{"class":126,"line":1023},[2048],{"type":43,"tag":124,"props":2049,"children":2050},{},[2051],{"type":49,"value":649},{"type":43,"tag":124,"props":2053,"children":2054},{"class":126,"line":1209},[2055],{"type":43,"tag":124,"props":2056,"children":2057},{},[2058],{"type":49,"value":658},{"type":43,"tag":59,"props":2060,"children":2061},{},[2062,2064,2070,2072,2077],{"type":49,"value":2063},"Use the returned ",{"type":43,"tag":120,"props":2065,"children":2067},{"className":2066},[],[2068],{"type":49,"value":2069},"id",{"type":49,"value":2071}," as ",{"type":43,"tag":120,"props":2073,"children":2075},{"className":2074},[],[2076],{"type":49,"value":1342},{"type":49,"value":2078}," in platform settings mutations.",{"type":43,"tag":59,"props":2080,"children":2081},{},[2082,2084,2090,2092,2098,2100,2105],{"type":49,"value":2083},"Note: ",{"type":43,"tag":120,"props":2085,"children":2087},{"className":2086},[],[2088],{"type":49,"value":2089},"parentPlatform",{"type":49,"value":2091}," represents the top-level chain family (e.g., ",{"type":43,"tag":120,"props":2093,"children":2095},{"className":2094},[],[2096],{"type":49,"value":2097},"ethereum",{"type":49,"value":2099}," covers Ethereum, Arbitrum, Polygon, etc.). A single wallet address on ",{"type":43,"tag":120,"props":2101,"children":2103},{"className":2102},[],[2104],{"type":49,"value":2097},{"type":49,"value":2106}," parentPlatform can have platform-specific settings for each L2.",{"type":43,"tag":91,"props":2108,"children":2109},{},[],{"type":43,"tag":52,"props":2111,"children":2113},{"id":2112},"common-workflows",[2114],{"type":49,"value":2115},"Common Workflows",{"type":43,"tag":101,"props":2117,"children":2119},{"id":2118},"change-the-cost-basis-method-to-lifo",[2120],{"type":49,"value":2121},"\"Change the cost basis method to LIFO\"",{"type":43,"tag":166,"props":2123,"children":2124},{},[2125,2136,2141,2146,2151],{"type":43,"tag":69,"props":2126,"children":2127},{},[2128,2130],{"type":49,"value":2129},"Query current: ",{"type":43,"tag":120,"props":2131,"children":2133},{"className":2132},[],[2134],{"type":49,"value":2135},"admin { organizationSettings { costBasisStrategy } }",{"type":43,"tag":69,"props":2137,"children":2138},{},[2139],{"type":49,"value":2140},"Show: \"Current: FIFO → New: LIFO\"",{"type":43,"tag":69,"props":2142,"children":2143},{},[2144],{"type":49,"value":2145},"Warn: \"Changing the cost basis method will trigger recalculation. This affects all historical gain\u002Floss calculations.\"",{"type":43,"tag":69,"props":2147,"children":2148},{},[2149],{"type":49,"value":2150},"Ask for approval",{"type":43,"tag":69,"props":2152,"children":2153},{},[2154,2156],{"type":49,"value":2155},"Execute: ",{"type":43,"tag":120,"props":2157,"children":2159},{"className":2158},[],[2160],{"type":49,"value":2161},"setOrganizationSettings(costBasisStrategy: LIFO)",{"type":43,"tag":101,"props":2163,"children":2165},{"id":2164},"enable-arbitrum",[2166],{"type":49,"value":2167},"\"Enable Arbitrum\"",{"type":43,"tag":166,"props":2169,"children":2170},{},[2171,2184,2189,2193],{"type":43,"tag":69,"props":2172,"children":2173},{},[2174,2176,2182],{"type":49,"value":2175},"Query disabled: ",{"type":43,"tag":120,"props":2177,"children":2179},{"className":2178},[],[2180],{"type":49,"value":2181},"admin { disabledPlatforms }",{"type":49,"value":2183}," — confirm ARBITRUM is in the list",{"type":43,"tag":69,"props":2185,"children":2186},{},[2187],{"type":49,"value":2188},"Show: \"ARBITRUM: Disabled → Enabled\"",{"type":43,"tag":69,"props":2190,"children":2191},{},[2192],{"type":49,"value":2150},{"type":43,"tag":69,"props":2194,"children":2195},{},[2196,2197],{"type":49,"value":2155},{"type":43,"tag":120,"props":2198,"children":2200},{"className":2199},[],[2201],{"type":49,"value":2202},"setPlatformCollectionStatus(platformCollectionStatuses: [{platform: ARBITRUM, enabled: true}])",{"type":43,"tag":101,"props":2204,"children":2206},{"id":2205},"set-sync-start-date-for-wallet-x-on-polygon",[2207],{"type":49,"value":2208},"\"Set sync start date for wallet X on Polygon\"",{"type":43,"tag":166,"props":2210,"children":2211},{},[2212,2230,2248,2253,2257],{"type":43,"tag":69,"props":2213,"children":2214},{},[2215,2217,2223,2225],{"type":49,"value":2216},"Resolve wallet: ",{"type":43,"tag":120,"props":2218,"children":2220},{"className":2219},[],[2221],{"type":49,"value":2222},"internalAccount(identifier: \"0x...\")",{"type":49,"value":2224}," → get ",{"type":43,"tag":120,"props":2226,"children":2228},{"className":2227},[],[2229],{"type":49,"value":2069},{"type":43,"tag":69,"props":2231,"children":2232},{},[2233,2235,2241,2242],{"type":49,"value":2234},"Read current: ",{"type":43,"tag":120,"props":2236,"children":2238},{"className":2237},[],[2239],{"type":49,"value":2240},"platformSettings(platform: POLYGON, internalAccountId: {id})",{"type":49,"value":2224},{"type":43,"tag":120,"props":2243,"children":2245},{"className":2244},[],[2246],{"type":49,"value":2247},"minLastSyncedAt",{"type":43,"tag":69,"props":2249,"children":2250},{},[2251],{"type":49,"value":2252},"Show: \"Wallet {name} on POLYGON: minLastSyncedAt: 1970-01-01 → 2025-01-01\"",{"type":43,"tag":69,"props":2254,"children":2255},{},[2256],{"type":49,"value":2150},{"type":43,"tag":69,"props":2258,"children":2259},{},[2260,2261],{"type":49,"value":2155},{"type":43,"tag":120,"props":2262,"children":2264},{"className":2263},[],[2265],{"type":49,"value":2266},"setPlatformSettings(platform: POLYGON, internalAccountId: {id}, minLastSyncedAt: \"2025-01-01T00:00:00+00:00\")",{"type":43,"tag":101,"props":2268,"children":2270},{"id":2269},"add-balance-diff-for-native-asset-on-a-specific-wallet",[2271],{"type":49,"value":2272},"\"Add balance diff for native asset on a specific wallet\"",{"type":43,"tag":166,"props":2274,"children":2275},{},[2276,2291,2301,2306,2310],{"type":43,"tag":69,"props":2277,"children":2278},{},[2279,2280,2285,2286],{"type":49,"value":2216},{"type":43,"tag":120,"props":2281,"children":2283},{"className":2282},[],[2284],{"type":49,"value":2222},{"type":49,"value":2224},{"type":43,"tag":120,"props":2287,"children":2289},{"className":2288},[],[2290],{"type":49,"value":2069},{"type":43,"tag":69,"props":2292,"children":2293},{},[2294,2295],{"type":49,"value":2234},{"type":43,"tag":120,"props":2296,"children":2298},{"className":2297},[],[2299],{"type":49,"value":2300},"platformSettings(platform: ETHEREUM, internalAccountId: {id})",{"type":43,"tag":69,"props":2302,"children":2303},{},[2304],{"type":49,"value":2305},"Show: \"Adding balance rollup for native asset (DAILY interval) on wallet {name} \u002F ETHEREUM\"",{"type":43,"tag":69,"props":2307,"children":2308},{},[2309],{"type":49,"value":2150},{"type":43,"tag":69,"props":2311,"children":2312},{},[2313,2314],{"type":49,"value":2155},{"type":43,"tag":120,"props":2315,"children":2317},{"className":2316},[],[2318],{"type":49,"value":2319},"setPlatformSettings(platform: ETHEREUM, internalAccountId: {id}, balanceRollupSettings: {assetIdentifiers: [\"native\"], interval: DAILY})",{"type":43,"tag":101,"props":2321,"children":2323},{"id":2322},"show-me-which-platforms-are-disabled",[2324],{"type":49,"value":2325},"\"Show me which platforms are disabled\"",{"type":43,"tag":166,"props":2327,"children":2328},{},[2329,2338],{"type":43,"tag":69,"props":2330,"children":2331},{},[2332,2333],{"type":49,"value":2155},{"type":43,"tag":120,"props":2334,"children":2336},{"className":2335},[],[2337],{"type":49,"value":2181},{"type":43,"tag":69,"props":2339,"children":2340},{},[2341],{"type":49,"value":2342},"Present as a clean list grouped by chain family if many results",{"type":43,"tag":101,"props":2344,"children":2346},{"id":2345},"what-pricing-source-is-configured",[2347],{"type":49,"value":2348},"\"What pricing source is configured?\"",{"type":43,"tag":166,"props":2350,"children":2351},{},[2352,2362],{"type":43,"tag":69,"props":2353,"children":2354},{},[2355,2356],{"type":49,"value":2155},{"type":43,"tag":120,"props":2357,"children":2359},{"className":2358},[],[2360],{"type":49,"value":2361},"admin { organizationSettings { pricingApiSource peggedStableCoinsToFiat { assetName currency } pricingApiSourcePerAsset { assetName pricingApiSource } } }",{"type":43,"tag":69,"props":2363,"children":2364},{},[2365],{"type":49,"value":2366},"Present: default source + any per-asset overrides + pegged stablecoins",{"type":43,"tag":91,"props":2368,"children":2369},{},[],{"type":43,"tag":52,"props":2371,"children":2373},{"id":2372},"error-handling",[2374],{"type":49,"value":2375},"Error Handling",{"type":43,"tag":379,"props":2377,"children":2378},{},[2379,2400],{"type":43,"tag":383,"props":2380,"children":2381},{},[2382],{"type":43,"tag":387,"props":2383,"children":2384},{},[2385,2390,2395],{"type":43,"tag":391,"props":2386,"children":2387},{},[2388],{"type":49,"value":2389},"Error",{"type":43,"tag":391,"props":2391,"children":2392},{},[2393],{"type":49,"value":2394},"Meaning",{"type":43,"tag":391,"props":2396,"children":2397},{},[2398],{"type":49,"value":2399},"Resolution",{"type":43,"tag":402,"props":2401,"children":2402},{},[2403,2429,2455,2473,2497],{"type":43,"tag":387,"props":2404,"children":2405},{},[2406,2411,2424],{"type":43,"tag":409,"props":2407,"children":2408},{},[2409],{"type":49,"value":2410},"403 \u002F Permission denied",{"type":43,"tag":409,"props":2412,"children":2413},{},[2414,2416,2422],{"type":49,"value":2415},"User lacks ",{"type":43,"tag":120,"props":2417,"children":2419},{"className":2418},[],[2420],{"type":49,"value":2421},"admin:*",{"type":49,"value":2423}," permission",{"type":43,"tag":409,"props":2425,"children":2426},{},[2427],{"type":49,"value":2428},"Contact org admin to grant access",{"type":43,"tag":387,"props":2430,"children":2431},{},[2432,2445,2450],{"type":43,"tag":409,"props":2433,"children":2434},{},[2435,2437,2443],{"type":49,"value":2436},"Empty ",{"type":43,"tag":120,"props":2438,"children":2440},{"className":2439},[],[2441],{"type":49,"value":2442},"platformSettings",{"type":49,"value":2444}," results",{"type":43,"tag":409,"props":2446,"children":2447},{},[2448],{"type":49,"value":2449},"No custom overrides — platform uses defaults",{"type":43,"tag":409,"props":2451,"children":2452},{},[2453],{"type":49,"value":2454},"This is normal; explain that defaults apply",{"type":43,"tag":387,"props":2456,"children":2457},{},[2458,2463,2468],{"type":43,"tag":409,"props":2459,"children":2460},{},[2461],{"type":49,"value":2462},"\"does not exist for organization\"",{"type":43,"tag":409,"props":2464,"children":2465},{},[2466],{"type":49,"value":2467},"Internal account ID not found in this org",{"type":43,"tag":409,"props":2469,"children":2470},{},[2471],{"type":49,"value":2472},"Verify the wallet address and re-resolve",{"type":43,"tag":387,"props":2474,"children":2475},{},[2476,2481,2486],{"type":43,"tag":409,"props":2477,"children":2478},{},[2479],{"type":49,"value":2480},"Invalid enum value",{"type":43,"tag":409,"props":2482,"children":2483},{},[2484],{"type":49,"value":2485},"Wrong value for a setting",{"type":43,"tag":409,"props":2487,"children":2488},{},[2489,2490,2495],{"type":49,"value":676},{"type":43,"tag":120,"props":2491,"children":2493},{"className":2492},[],[2494],{"type":49,"value":309},{"type":49,"value":2496}," on the enum type to show valid options",{"type":43,"tag":387,"props":2498,"children":2499},{},[2500,2505,2510],{"type":43,"tag":409,"props":2501,"children":2502},{},[2503],{"type":49,"value":2504},"DateTime parse error",{"type":43,"tag":409,"props":2506,"children":2507},{},[2508],{"type":49,"value":2509},"Wrong format",{"type":43,"tag":409,"props":2511,"children":2512},{},[2513,2515],{"type":49,"value":2514},"Must be ISO 8601 with timezone: ",{"type":43,"tag":120,"props":2516,"children":2518},{"className":2517},[],[2519],{"type":49,"value":1673},{"type":43,"tag":2521,"props":2522,"children":2523},"style",{},[2524],{"type":49,"value":2525},"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":2527,"total":2627},[2528,2547,2566,2580,2590,2602,2614],{"slug":2529,"name":2529,"fn":2530,"description":2531,"org":2532,"tags":2533,"stars":26,"repoUrl":27,"updatedAt":2546},"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},[2534,2537,2540,2543],{"name":2535,"slug":2536,"type":16},"Creative","creative",{"name":2538,"slug":2539,"type":16},"Image Generation","image-generation",{"name":2541,"slug":2542,"type":16},"Marketing","marketing",{"name":2544,"slug":2545,"type":16},"Video","video","2026-07-01T08:09:32.316182",{"slug":2548,"name":2548,"fn":2549,"description":2550,"org":2551,"tags":2552,"stars":26,"repoUrl":27,"updatedAt":2565},"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},[2553,2556,2559,2562],{"name":2554,"slug":2555,"type":16},"Audit","audit",{"name":2557,"slug":2558,"type":16},"Code Analysis","code-analysis",{"name":2560,"slug":2561,"type":16},"Playwright","playwright",{"name":2563,"slug":2564,"type":16},"Testing","testing","2026-07-02T07:37:17.341081",{"slug":2567,"name":2567,"fn":2568,"description":2569,"org":2570,"tags":2571,"stars":26,"repoUrl":27,"updatedAt":2579},"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},[2572,2575,2578],{"name":2573,"slug":2574,"type":16},"Monitoring","monitoring",{"name":2576,"slug":2577,"type":16},"QA","qa",{"name":2563,"slug":2564,"type":16},"2026-07-02T07:37:18.566504",{"slug":2581,"name":2581,"fn":2582,"description":2583,"org":2584,"tags":2585,"stars":26,"repoUrl":27,"updatedAt":2589},"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},[2586,2587,2588],{"name":14,"slug":15,"type":16},{"name":2576,"slug":2577,"type":16},{"name":2563,"slug":2564,"type":16},"2026-07-02T07:37:23.446065",{"slug":2591,"name":2591,"fn":2592,"description":2593,"org":2594,"tags":2595,"stars":26,"repoUrl":27,"updatedAt":2601},"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},[2596,2599,2600],{"name":2597,"slug":2598,"type":16},"Documentation","documentation",{"name":2576,"slug":2577,"type":16},{"name":2563,"slug":2564,"type":16},"2026-07-02T07:37:22.247052",{"slug":2603,"name":2603,"fn":2604,"description":2605,"org":2606,"tags":2607,"stars":26,"repoUrl":27,"updatedAt":2613},"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},[2608,2611,2612],{"name":2609,"slug":2610,"type":16},"Project Management","project-management",{"name":2576,"slug":2577,"type":16},{"name":2563,"slug":2564,"type":16},"2026-07-02T07:37:19.793846",{"slug":2615,"name":2615,"fn":2616,"description":2617,"org":2618,"tags":2619,"stars":26,"repoUrl":27,"updatedAt":2626},"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},[2620,2623,2624,2625],{"name":2621,"slug":2622,"type":16},"Debugging","debugging",{"name":2560,"slug":2561,"type":16},{"name":2576,"slug":2577,"type":16},{"name":2563,"slug":2564,"type":16},"2026-07-02T07:37:16.07175",30,{"items":2629,"total":2812},[2630,2649,2663,2675,2694,2705,2726,2746,2760,2775,2783,2796],{"slug":2631,"name":2631,"fn":2632,"description":2633,"org":2634,"tags":2635,"stars":2646,"repoUrl":2647,"updatedAt":2648},"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},[2636,2637,2640,2643],{"name":2535,"slug":2536,"type":16},{"name":2638,"slug":2639,"type":16},"Design","design",{"name":2641,"slug":2642,"type":16},"Generative Art","generative-art",{"name":2644,"slug":2645,"type":16},"JavaScript","javascript",161831,"https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fskills","2026-04-06T17:56:15.455818",{"slug":2650,"name":2650,"fn":2651,"description":2652,"org":2653,"tags":2654,"stars":2646,"repoUrl":2647,"updatedAt":2662},"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},[2655,2658,2659],{"name":2656,"slug":2657,"type":16},"Branding","branding",{"name":2638,"slug":2639,"type":16},{"name":2660,"slug":2661,"type":16},"Typography","typography","2026-04-06T17:56:05.042852",{"slug":2664,"name":2664,"fn":2665,"description":2666,"org":2667,"tags":2668,"stars":2646,"repoUrl":2647,"updatedAt":2674},"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},[2669,2670,2671],{"name":2535,"slug":2536,"type":16},{"name":2638,"slug":2639,"type":16},{"name":2672,"slug":2673,"type":16},"PDF","pdf","2026-04-06T17:56:03.794732",{"slug":2676,"name":2676,"fn":2677,"description":2678,"org":2679,"tags":2680,"stars":2646,"repoUrl":2647,"updatedAt":2693},"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},[2681,2684,2685,2688,2690],{"name":2682,"slug":2683,"type":16},"Agents","agents",{"name":9,"slug":8,"type":16},{"name":2686,"slug":2687,"type":16},"Anthropic SDK","anthropic-sdk",{"name":2689,"slug":2676,"type":16},"Claude API",{"name":2691,"slug":2692,"type":16},"LLM","llm","2026-07-28T05:36:08.213335",{"slug":2695,"name":2695,"fn":2696,"description":2697,"org":2698,"tags":2699,"stars":2646,"repoUrl":2647,"updatedAt":2704},"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},[2700,2701],{"name":2597,"slug":2598,"type":16},{"name":2702,"slug":2703,"type":16},"Technical Writing","technical-writing","2026-04-06T17:56:14.18897",{"slug":2706,"name":2706,"fn":2707,"description":2708,"org":2709,"tags":2710,"stars":2646,"repoUrl":2647,"updatedAt":2725},"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},[2711,2714,2716,2719,2722],{"name":2712,"slug":2713,"type":16},"Documents","documents",{"name":2715,"slug":2706,"type":16},"DOCX",{"name":2717,"slug":2718,"type":16},"Office","office",{"name":2720,"slug":2721,"type":16},"Templates","templates",{"name":2723,"slug":2724,"type":16},"Word","word","2026-07-18T05:16:23.136271",{"slug":2727,"name":2727,"fn":2728,"description":2729,"org":2730,"tags":2731,"stars":2646,"repoUrl":2647,"updatedAt":2745},"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},[2732,2733,2736,2739,2742],{"name":2638,"slug":2639,"type":16},{"name":2734,"slug":2735,"type":16},"Frontend","frontend",{"name":2737,"slug":2738,"type":16},"React","react",{"name":2740,"slug":2741,"type":16},"Tailwind CSS","tailwind-css",{"name":2743,"slug":2744,"type":16},"UI Components","ui-components","2026-04-06T17:56:16.723469",{"slug":2747,"name":2747,"fn":2748,"description":2749,"org":2750,"tags":2751,"stars":2646,"repoUrl":2647,"updatedAt":2759},"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},[2752,2755,2756],{"name":2753,"slug":2754,"type":16},"Communications","communications",{"name":2720,"slug":2721,"type":16},{"name":2757,"slug":2758,"type":16},"Writing","writing","2026-04-06T17:56:20.695522",{"slug":2761,"name":2761,"fn":2762,"description":2763,"org":2764,"tags":2765,"stars":2646,"repoUrl":2647,"updatedAt":2774},"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},[2766,2767,2770,2771],{"name":2682,"slug":2683,"type":16},{"name":2768,"slug":2769,"type":16},"API Development","api-development",{"name":2691,"slug":2692,"type":16},{"name":2772,"slug":2773,"type":16},"MCP","mcp","2026-04-06T17:56:10.357665",{"slug":2673,"name":2673,"fn":2776,"description":2777,"org":2778,"tags":2779,"stars":2646,"repoUrl":2647,"updatedAt":2782},"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},[2780,2781],{"name":2712,"slug":2713,"type":16},{"name":2672,"slug":2673,"type":16},"2026-04-06T17:56:02.483316",{"slug":2784,"name":2784,"fn":2785,"description":2786,"org":2787,"tags":2788,"stars":2646,"repoUrl":2647,"updatedAt":2795},"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},[2789,2792],{"name":2790,"slug":2791,"type":16},"PowerPoint","powerpoint",{"name":2793,"slug":2794,"type":16},"Presentations","presentations","2026-07-18T05:16:24.1471",{"slug":2797,"name":2797,"fn":2798,"description":2799,"org":2800,"tags":2801,"stars":2646,"repoUrl":2647,"updatedAt":2811},"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},[2802,2803,2804,2807,2810],{"name":2682,"slug":2683,"type":16},{"name":2597,"slug":2598,"type":16},{"name":2805,"slug":2806,"type":16},"Evals","evals",{"name":2808,"slug":2809,"type":16},"Performance","performance",{"name":2702,"slug":2703,"type":16},"2026-04-19T06:45:40.804",490]