{
  "schemaVersion": "1.0",
  "item": {
    "slug": "swiftui-empty-app-init",
    "name": "SwiftUI Empty App Init",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/ignaciocervino/swiftui-empty-app-init",
    "canonicalUrl": "https://clawhub.ai/ignaciocervino/swiftui-empty-app-init",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/swiftui-empty-app-init",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=swiftui-empty-app-init",
    "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-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-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/swiftui-empty-app-init"
    },
    "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/swiftui-empty-app-init",
    "agentPageUrl": "https://openagent3.xyz/skills/swiftui-empty-app-init/agent",
    "manifestUrl": "https://openagent3.xyz/skills/swiftui-empty-app-init/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/swiftui-empty-app-init/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": "Overview",
        "body": "Initialize a clean, single-target SwiftUI iOS app in the current directory.\nThe project is generated using XcodeGen to produce a single .xcodeproj, leaving developers ready to start adding features immediately."
      },
      {
        "title": "Prerequisites",
        "body": "Xcode installed and selected via xcode-select\nXcodeGen available on PATH\n\nIf any prerequisite is missing:\n\nStop execution\nTell the user exactly what is missing\nDo not attempt alternative scaffolding or auto-installation"
      },
      {
        "title": "Inputs",
        "body": "Project name (required)\nMinimum iOS deployment target\nOptional bundle identifier (or use default)"
      },
      {
        "title": "Defaults (use without extra confirmation)",
        "body": "Bundle identifier default: com.example.<ProjectName>\nProceed immediately once required inputs are provided (do not ask extra confirmations)"
      },
      {
        "title": "Core Requirements",
        "body": "The resulting project must:\n\nBe generated via XcodeGen (do not hand-author project.pbxproj)\nUse a single .xcodeproj (no .xcworkspace)\nContain exactly one app target\nUse the SwiftUI @main App lifecycle\nContain a minimal ContentView placeholder\nContain a minimal Info.plist (avoid unnecessary scene or delegate keys)\nContain no Swift packages\nContain no test targets unless explicitly requested"
      },
      {
        "title": "Generation",
        "body": "Create a minimal project.yml using the provided inputs\nGenerate YourApp.xcodeproj using XcodeGen\nEnsure the output matches all Core Requirements"
      },
      {
        "title": "Expected Structure",
        "body": "project.yml\nYourApp.xcodeproj\nYourApp/ (app target source files)\nOptional config files only\n\nNo additional folders, packages, workspaces, scripts, or assets should be present."
      },
      {
        "title": "Minimal Verification (fast)",
        "body": "Confirm YourApp.xcodeproj is generated successfully by XcodeGen.\nConfirm the default scheme exists (e.g., via a lightweight scheme listing).\nDo not boot simulators, build, install, or launch unless explicitly requested."
      },
      {
        "title": "Notes",
        "body": "Keep the project minimal and unopinionated\nDo not add icons/scripts, packages, workspaces, or architecture scaffolding\nThis skill is for app initialization only, not feature scaffolding"
      }
    ],
    "body": "SwiftUI Empty App Init\nOverview\n\nInitialize a clean, single-target SwiftUI iOS app in the current directory. The project is generated using XcodeGen to produce a single .xcodeproj, leaving developers ready to start adding features immediately.\n\nPrerequisites\nXcode installed and selected via xcode-select\nXcodeGen available on PATH\n\nIf any prerequisite is missing:\n\nStop execution\nTell the user exactly what is missing\nDo not attempt alternative scaffolding or auto-installation\nInputs\nProject name (required)\nMinimum iOS deployment target\nOptional bundle identifier (or use default)\nDefaults (use without extra confirmation)\nBundle identifier default: com.example.<ProjectName>\nProceed immediately once required inputs are provided (do not ask extra confirmations)\nCore Requirements\n\nThe resulting project must:\n\nBe generated via XcodeGen (do not hand-author project.pbxproj)\nUse a single .xcodeproj (no .xcworkspace)\nContain exactly one app target\nUse the SwiftUI @main App lifecycle\nContain a minimal ContentView placeholder\nContain a minimal Info.plist (avoid unnecessary scene or delegate keys)\nContain no Swift packages\nContain no test targets unless explicitly requested\nGeneration\nCreate a minimal project.yml using the provided inputs\nGenerate YourApp.xcodeproj using XcodeGen\nEnsure the output matches all Core Requirements\nExpected Structure\nproject.yml\nYourApp.xcodeproj\nYourApp/ (app target source files)\nOptional config files only\n\nNo additional folders, packages, workspaces, scripts, or assets should be present.\n\nMinimal Verification (fast)\nConfirm YourApp.xcodeproj is generated successfully by XcodeGen.\nConfirm the default scheme exists (e.g., via a lightweight scheme listing).\nDo not boot simulators, build, install, or launch unless explicitly requested.\nNotes\nKeep the project minimal and unopinionated\nDo not add icons/scripts, packages, workspaces, or architecture scaffolding\nThis skill is for app initialization only, not feature scaffolding"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ignaciocervino/swiftui-empty-app-init",
    "publisherUrl": "https://clawhub.ai/ignaciocervino/swiftui-empty-app-init",
    "owner": "ignaciocervino",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/swiftui-empty-app-init",
    "downloadUrl": "https://openagent3.xyz/downloads/swiftui-empty-app-init",
    "agentUrl": "https://openagent3.xyz/skills/swiftui-empty-app-init/agent",
    "manifestUrl": "https://openagent3.xyz/skills/swiftui-empty-app-init/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/swiftui-empty-app-init/agent.md"
  }
}