{
  "schemaVersion": "1.0",
  "item": {
    "slug": "xcode",
    "name": "Xcode",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/ivangdavila/xcode",
    "canonicalUrl": "https://clawhub.ai/ivangdavila/xcode",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/xcode",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=xcode",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/xcode"
    },
    "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/xcode",
    "agentPageUrl": "https://openagent3.xyz/skills/xcode/agent",
    "manifestUrl": "https://openagent3.xyz/skills/xcode/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/xcode/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": "Signing Issues",
        "body": "\"Automatic\" signing still needs team selected — set in Signing & Capabilities\nProvisioning profile mismatch — bundle ID must match exactly, including case\n\"No signing certificate\" — open Keychain, check certificate is valid and not expired\nDevice not registered — add UDID in developer portal, regenerate profile\nCI/CD needs manual signing — automatic doesn't work in headless builds"
      },
      {
        "title": "Derived Data Corruption",
        "body": "Random build failures after Xcode update — delete ~/Library/Developer/Xcode/DerivedData\n\"Module not found\" but it exists — clean Derived Data, restart Xcode\nStale cache symptoms — builds work, then fail, then work again\nxcodebuild clean not enough — sometimes must delete DerivedData manually"
      },
      {
        "title": "Build Settings Hierarchy",
        "body": "Project → Target → xcconfig → command line — later overrides earlier\n$(inherited) to append not replace — forgetting it removes parent settings\nSWIFT_ACTIVE_COMPILATION_CONDITIONS for Swift flags — not OTHER_SWIFT_FLAGS\nGCC_PREPROCESSOR_DEFINITIONS for Obj-C — add to existing, don't replace"
      },
      {
        "title": "Archive vs Build",
        "body": "Archive uses Release config by default — build uses Debug\n\"Works in simulator, fails in archive\" — check Release build settings\nArchive requires valid signing — build doesn't for simulator\nSKIP_INSTALL = YES for frameworks — or archive includes them incorrectly"
      },
      {
        "title": "Capabilities and Entitlements",
        "body": "Capability in Xcode must match entitlements file — out of sync causes crashes\nPush notifications need both — App ID capability AND provisioning profile\nAssociated domains needs apple-app-site-association file — hosted on your server\nKeychain sharing needs explicit group — default is just your app"
      },
      {
        "title": "Dependencies",
        "body": "SPM and CocoaPods can conflict — watch for duplicate symbols\nPod update vs install — install uses Podfile.lock, update ignores it\n\"Framework not found\" — check Framework Search Paths, embed vs link\nSPM package resolution fails — delete Package.resolved, reset package caches"
      },
      {
        "title": "Common Fixes",
        "body": "Build fails with no clear error — check Report Navigator for details\nSimulator stuck — xcrun simctl shutdown all, then xcrun simctl erase all\nIndexing stuck — delete Index folder in DerivedData\nAutocomplete broken — restart Xcode, if persists delete DerivedData"
      },
      {
        "title": "CLI Builds",
        "body": "xcodebuild -showBuildSettings to debug — see resolved values\n-allowProvisioningUpdates for CI with auto-signing — needs keychain access\n-destination must be exact — platform=iOS Simulator,name=iPhone 15\nxcrun altool deprecated — use xcrun notarytool for notarization"
      }
    ],
    "body": "Signing Issues\n\"Automatic\" signing still needs team selected — set in Signing & Capabilities\nProvisioning profile mismatch — bundle ID must match exactly, including case\n\"No signing certificate\" — open Keychain, check certificate is valid and not expired\nDevice not registered — add UDID in developer portal, regenerate profile\nCI/CD needs manual signing — automatic doesn't work in headless builds\nDerived Data Corruption\nRandom build failures after Xcode update — delete ~/Library/Developer/Xcode/DerivedData\n\"Module not found\" but it exists — clean Derived Data, restart Xcode\nStale cache symptoms — builds work, then fail, then work again\nxcodebuild clean not enough — sometimes must delete DerivedData manually\nBuild Settings Hierarchy\nProject → Target → xcconfig → command line — later overrides earlier\n$(inherited) to append not replace — forgetting it removes parent settings\nSWIFT_ACTIVE_COMPILATION_CONDITIONS for Swift flags — not OTHER_SWIFT_FLAGS\nGCC_PREPROCESSOR_DEFINITIONS for Obj-C — add to existing, don't replace\nArchive vs Build\nArchive uses Release config by default — build uses Debug\n\"Works in simulator, fails in archive\" — check Release build settings\nArchive requires valid signing — build doesn't for simulator\nSKIP_INSTALL = YES for frameworks — or archive includes them incorrectly\nCapabilities and Entitlements\nCapability in Xcode must match entitlements file — out of sync causes crashes\nPush notifications need both — App ID capability AND provisioning profile\nAssociated domains needs apple-app-site-association file — hosted on your server\nKeychain sharing needs explicit group — default is just your app\nDependencies\nSPM and CocoaPods can conflict — watch for duplicate symbols\nPod update vs install — install uses Podfile.lock, update ignores it\n\"Framework not found\" — check Framework Search Paths, embed vs link\nSPM package resolution fails — delete Package.resolved, reset package caches\nCommon Fixes\nBuild fails with no clear error — check Report Navigator for details\nSimulator stuck — xcrun simctl shutdown all, then xcrun simctl erase all\nIndexing stuck — delete Index folder in DerivedData\nAutocomplete broken — restart Xcode, if persists delete DerivedData\nCLI Builds\nxcodebuild -showBuildSettings to debug — see resolved values\n-allowProvisioningUpdates for CI with auto-signing — needs keychain access\n-destination must be exact — platform=iOS Simulator,name=iPhone 15\nxcrun altool deprecated — use xcrun notarytool for notarization"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ivangdavila/xcode",
    "publisherUrl": "https://clawhub.ai/ivangdavila/xcode",
    "owner": "ivangdavila",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/xcode",
    "downloadUrl": "https://openagent3.xyz/downloads/xcode",
    "agentUrl": "https://openagent3.xyz/skills/xcode/agent",
    "manifestUrl": "https://openagent3.xyz/skills/xcode/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/xcode/agent.md"
  }
}