skills$openclaw/swiftui-empty-app-init
ignaciocervino7.7k

by ignaciocervino

swiftui-empty-app-init – OpenClaw Skill

swiftui-empty-app-init is an OpenClaw Skills integration for coding workflows. Initialize a minimal SwiftUI iOS app in the current directory by generating a single `.xcodeproj` with XcodeGen (no workspaces, packages, or tests unless explicitly requested).

7.7k stars1.6k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nameswiftui-empty-app-init
descriptionInitialize a minimal SwiftUI iOS app in the current directory by generating a single `.xcodeproj` with XcodeGen (no workspaces, packages, or tests unless explicitly requested). OpenClaw Skills integration.
ownerignaciocervino
repositoryignaciocervino/swiftui-empty-app-init
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @ignaciocervino/swiftui-empty-app-init
last updatedFeb 7, 2026

Maintainer

ignaciocervino

ignaciocervino

Maintains swiftui-empty-app-init in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
304 B
SKILL.md
2.3 KB
SKILL.md

name: swiftui-empty-app-init description: Initialize a minimal SwiftUI iOS app in the current directory by generating a single .xcodeproj with XcodeGen (no workspaces, packages, or tests unless explicitly requested).

SwiftUI Empty App Init

Overview

Initialize 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.

Prerequisites

  • Xcode installed and selected via xcode-select
  • XcodeGen available on PATH

If any prerequisite is missing:

  • Stop execution
  • Tell the user exactly what is missing
  • Do not attempt alternative scaffolding or auto-installation

Inputs

  • Project name (required)
  • Minimum iOS deployment target
  • Optional bundle identifier (or use default)

Defaults (use without extra confirmation)

  • Bundle identifier default: com.example.<ProjectName>
  • Proceed immediately once required inputs are provided (do not ask extra confirmations)

Core Requirements

The resulting project must:

  • Be generated via XcodeGen (do not hand-author project.pbxproj)
  • Use a single .xcodeproj (no .xcworkspace)
  • Contain exactly one app target
  • Use the SwiftUI @main App lifecycle
  • Contain a minimal ContentView placeholder
  • Contain a minimal Info.plist (avoid unnecessary scene or delegate keys)
  • Contain no Swift packages
  • Contain no test targets unless explicitly requested

Generation

  • Create a minimal project.yml using the provided inputs
  • Generate YourApp.xcodeproj using XcodeGen
  • Ensure the output matches all Core Requirements

Expected Structure

  • project.yml
  • YourApp.xcodeproj
  • YourApp/ (app target source files)
  • Optional config files only

No additional folders, packages, workspaces, scripts, or assets should be present.

Minimal Verification (fast)

  • Confirm YourApp.xcodeproj is generated successfully by XcodeGen.
  • Confirm the default scheme exists (e.g., via a lightweight scheme listing).
  • Do not boot simulators, build, install, or launch unless explicitly requested.

Notes

  • Keep the project minimal and unopinionated
  • Do not add icons/scripts, packages, workspaces, or architecture scaffolding
  • This skill is for app initialization only, not feature scaffolding
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

The resulting project must: - Be generated via **XcodeGen** (do not hand-author `project.pbxproj`) - Use a single `.xcodeproj` (no `.xcworkspace`) - Contain exactly one **app target** - Use the SwiftUI `@main App` lifecycle - Contain a minimal `ContentView` placeholder - Contain a minimal `Info.plist` (avoid unnecessary scene or delegate keys) - Contain **no Swift packages** - Contain **no test targets** unless explicitly requested

FAQ

How do I install swiftui-empty-app-init?

Run openclaw add @ignaciocervino/swiftui-empty-app-init in your terminal. This installs swiftui-empty-app-init into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/ignaciocervino/swiftui-empty-app-init. Review commits and README documentation before installing.