Conversation
Adds the foundational project scaffolding: Tuist manifests (Project.swift, Tuist.swift) with helpers for iOS frameworks and native Mac apps, mise-pinned Tuist 4.40.0, an ide dev script, GitHub Actions CI workflow, and AGENTS.md documenting the repo shape. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
| dependencies: [.target(name: name)] | ||
| ), | ||
| ] | ||
| } |
There was a problem hiding this comment.
Framework helper destinations incompatible with macApp targets
Medium Severity
The framework() helper uses mobileDestinations ([.iPhone, .iPad, .macCatalyst]) while macApp() uses macDestinations ([.mac]). Since .macCatalyst and .mac are distinct Tuist destinations with incompatible platform binaries, a native Mac app created with macApp() cannot depend on a framework created with framework(). The two primary helpers documented in AGENTS.md as the way to add targets cannot actually compose together.
Additional Locations (1)
Co-authored-by: Kyle Van Essen <kyleve@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.


Adds the foundational project scaffolding: Tuist manifests (Project.swift, Tuist.swift) with helpers for iOS frameworks and native Mac apps, mise-pinned Tuist 4.40.0, an ide dev script, GitHub Actions CI workflow, and AGENTS.md documenting the repo shape.
Note
Low Risk
Low risk scaffolding work: adds build/CI configuration and documentation but no app/runtime code or data/security logic.
Overview
Introduces initial Tuist-based project scaffolding: adds
Project.swift/Tuist.swiftmanifests (with helpers for iOS frameworks and macOS apps) plus anidescript to runtuist install/tuist generateviamise.Adds GitHub Actions CI to run
tuist testonmacos-26, pins Tuist to4.40.0in.mise.toml, and updates repo docs/ignores (README.md,AGENTS.md, simplified.gitignore) to reflect the new workflow.Written by Cursor Bugbot for commit fc916b6. This will update automatically on new commits. Configure here.