tuist

Generate projects without opening Xcode:

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "tuist" with this command: npx skills add tuist/claude-marketplace/tuist-claude-marketplace-tuist

Tuist

Project Generation

Generate projects without opening Xcode:

tuist generate --no-open

Target Declaration

Use buildableFolders when declaring targets to avoid regenerating projects on file changes:

let target = Target( name: "MyApp", destinations: [.iPhone], product: .app, bundleId: "com.example.app", buildableFolders: ["Sources/", "Resources/"] )

Building with xcodebuild

Pass these build settings to enable caching and improve build performance:

xcodebuild build
-scheme MyScheme
COMPILATION_CACHE_ENABLE_CACHING=YES
CLANG_ENABLE_COMPILE_CACHE=YES
SWIFT_ENABLE_EXPLICIT_MODULES=YES
SWIFT_USE_INTEGRATED_DRIVER=YES

Disable Signing for CI/Agent Builds

When building through an agent or CI, disable code signing:

xcodebuild build
-scheme MyScheme
CODE_SIGN_IDENTITY=""

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

codeup

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

optimizely-development

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

clean-code

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

jira-cli

No summary provided by upstream source.

Repository SourceNeeds Review