{
  "schemaVersion": "1.0",
  "item": {
    "slug": "figma-sync",
    "name": "Figma Sync",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/kristinadarroch/figma-sync",
    "canonicalUrl": "https://clawhub.ai/kristinadarroch/figma-sync",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/figma-sync",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=figma-sync",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/api-guide.md",
      "references/design-spec-schema.json",
      "scripts/figma_common.py",
      "scripts/figma_diff.py",
      "scripts/figma_preview.py"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "slug": "figma-sync",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-03T05:30:39.705Z",
      "expiresAt": "2026-05-10T05:30:39.705Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=figma-sync",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=figma-sync",
        "contentDisposition": "attachment; filename=\"figma-sync-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "figma-sync"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/figma-sync"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/figma-sync",
    "agentPageUrl": "https://openagent3.xyz/skills/figma-sync/agent",
    "manifestUrl": "https://openagent3.xyz/skills/figma-sync/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/figma-sync/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "figma-sync",
        "body": "Bidirectional Figma ↔ Code synchronization skill."
      },
      {
        "title": "Setup",
        "body": "export FIGMA_TOKEN=\"your-personal-access-token\"\n\nGet a token at https://www.figma.com/developers/api#access-tokens"
      },
      {
        "title": "Pull (Read + Generate Code)",
        "body": "python3 scripts/figma_pull.py --file-key <KEY> --platform rn-expo --output-dir ./out\npython3 scripts/figma_pull.py --file-key <KEY> --node-ids 1:2,3:4 --platform web-react --output-dir ./out\n\nOutputs: designModel.json, tokens.json, codePlan.json, and generated component files."
      },
      {
        "title": "Push (Write Back)",
        "body": "python3 scripts/figma_push.py --file-key <KEY> --patch-spec patch.json\npython3 scripts/figma_push.py --file-key <KEY> --patch-spec patch.json --execute  # actually apply\n\nDry-run by default. Pass --execute to apply changes."
      },
      {
        "title": "Diff",
        "body": "python3 scripts/figma_diff.py --file-key <KEY> --local-model designModel.json\n\nOutputs changes and a patchSpec to sync."
      },
      {
        "title": "Preview",
        "body": "python3 scripts/figma_preview.py --file-key <KEY> --operations ops.json\n\nShows what would change without touching anything."
      },
      {
        "title": "Platforms",
        "body": "rn-expo: React Native + Expo + TypeScript (primary)\nweb-react: React + Tailwind CSS (secondary)"
      },
      {
        "title": "Rate Limits",
        "body": "Uses exponential backoff, ETag caching, and respects Figma's rate limits (~30 req/min).\nCache stored in .figma-cache/ directory."
      },
      {
        "title": "References",
        "body": "DesignSpec Schema\nAPI Guide"
      }
    ],
    "body": "figma-sync\n\nBidirectional Figma ↔ Code synchronization skill.\n\nSetup\nexport FIGMA_TOKEN=\"your-personal-access-token\"\n\n\nGet a token at https://www.figma.com/developers/api#access-tokens\n\nCommands\nPull (Read + Generate Code)\npython3 scripts/figma_pull.py --file-key <KEY> --platform rn-expo --output-dir ./out\npython3 scripts/figma_pull.py --file-key <KEY> --node-ids 1:2,3:4 --platform web-react --output-dir ./out\n\n\nOutputs: designModel.json, tokens.json, codePlan.json, and generated component files.\n\nPush (Write Back)\npython3 scripts/figma_push.py --file-key <KEY> --patch-spec patch.json\npython3 scripts/figma_push.py --file-key <KEY> --patch-spec patch.json --execute  # actually apply\n\n\nDry-run by default. Pass --execute to apply changes.\n\nDiff\npython3 scripts/figma_diff.py --file-key <KEY> --local-model designModel.json\n\n\nOutputs changes and a patchSpec to sync.\n\nPreview\npython3 scripts/figma_preview.py --file-key <KEY> --operations ops.json\n\n\nShows what would change without touching anything.\n\nPlatforms\nrn-expo: React Native + Expo + TypeScript (primary)\nweb-react: React + Tailwind CSS (secondary)\nRate Limits\n\nUses exponential backoff, ETag caching, and respects Figma's rate limits (~30 req/min). Cache stored in .figma-cache/ directory.\n\nReferences\nDesignSpec Schema\nAPI Guide"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/kristinadarroch/figma-sync",
    "publisherUrl": "https://clawhub.ai/kristinadarroch/figma-sync",
    "owner": "kristinadarroch",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/figma-sync",
    "downloadUrl": "https://openagent3.xyz/downloads/figma-sync",
    "agentUrl": "https://openagent3.xyz/skills/figma-sync/agent",
    "manifestUrl": "https://openagent3.xyz/skills/figma-sync/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/figma-sync/agent.md"
  }
}