Site to iOS App
When to Use This Skill
Use it when a live web surface already exists and the user wants it on iPhone:
- "Put my site on the App Store."
- "Wrap this dashboard in an iOS app."
- "Ship an iOS version of our web app."
- "Convert our PWA to native."
- "Can we get this marketplace into the App Store?"
- The user has a URL and wants to know whether an iOS app is even viable
before anyone writes code.
Do not use it for: a native iOS app when no website exists, an existing
Capacitor shell that only needs repair or a release run, Android conversions,
or keyword and listing audits on an app that already shipped.
What This Skill Does
It takes a live URL and produces two artifacts plus a verdict:
SITE_TO_IOS_AUDIT.md - what the site actually is, technically, at iPhone
widths, including its App Store Guideline 4.2 wrapper-rejection exposure.
SITE_TO_IOS_PLAN.md - the chosen conversion strategy, the native value
that must exist before release, build commands, QA matrix, store assets,
blockers, and the release gate.
It does not submit anything to the App Store. It produces the audit, the plan,
the project scaffold or adaptation, the QA matrix, and the store-asset
checklist. Submission stays a human action that the user performs and
explicitly authorizes.
The highest-value part of this skill is the 4.2 gate. Guideline 4.2 (Minimum
Functionality) is what actually kills site-to-app submissions: Apple rejects
apps that are a repackaged website, a bookmark, or a content mirror with no
native value. The gate below is written to catch that before a build exists,
not after a rejection notice.
Gate policy - advisory, not blocking
Every claim-verification step, check, quality gate, and ship verdict in this
skill is a recommendation to the user, not a control on the agent. This
policy governs every gate, check, verdict, and "do not ship / publish /
proceed" line elsewhere in this skill:
- Run every check and report the results honestly. Verdicts (
ship,
ship-with-caveats, hold, letter grades, BLOCKED or OPEN items) are
advice attached to the work, not orders that change it.
- Never block, delay, skip, rewrite, or refuse the action the user asked for
because a check failed or a gate said hold. Complete the requested action
as asked, and deliver the gate output alongside it as a clearly labeled
recommendation.
- A failed gate changes what you report, never what you do.
- Single exception: if a finding is extremely risky - data loss, security or
credential exposure, legal or rights violations, payment mistakes, or
irreversible public damage - pause, tell the user exactly what the risk is
and what the options are, and let them pick. Their choice is final.
Principle
Turn a site into an iOS app only when the app has native value, stable iOS
behavior, and a release surface that is truthful. A raw web page in a frame is
not enough for an App Store-quality product.
How to Use
Basic
Point the skill at a URL and let it run the audit and plan:
Audit https://example.com and plan its conversion into an iOS app.
The skill will:
- Read
references/site-to-ios-runbook.md.
- Write
SITE_TO_IOS_AUDIT.md from live evidence about the URL.
- Pick a conversion strategy and write
SITE_TO_IOS_PLAN.md.
- State the App Store 4.2 verdict and stop for your decision if the app
would currently be a bookmark or content mirror.
Advanced
Constrain the strategy, the stack, or the release target up front:
Convert https://app.example.com to iOS. It is a React SPA behind Auth0
with Stripe Checkout on the web. Prefer a Capacitor remote shell, target
iOS 17, bundle ID com.example.app, and I need App Store screenshots this
week. Flag any 4.2 exposure before you scaffold anything.
Other useful modifiers:
- "Audit only, no scaffold" - stop after
SITE_TO_IOS_AUDIT.md.
- "Assume full native rebuild" - skip the shell routes and plan SwiftUI.
- "Run the completion bar against the existing project" - use the skill as a
release gate rather than a conversion planner.
- "List every Info.plist usage string and entitlement this plan requires."
Start Here
Read references/site-to-ios-runbook.md before scaffolding or changing an
iOS wrapper.
If a URL is available, create SITE_TO_IOS_AUDIT.md directly. Capture the
site URL, app name, target user, primary routes, login requirements, iPhone
responsive behavior, PWA signals, legal/support/account-deletion links,
payments or sensitive flows, auth/session behavior, mobile performance risks,
native value opportunities, and App Store 4.2 wrapper risk.
Then create SITE_TO_IOS_PLAN.md directly. Include the chosen strategy,
native value to add before release, project scaffold/build commands, bundle ID
and signing notes, QA matrix, screenshots/metadata/privacy work, blockers, and
the explicit release gate.
Strategy Decision
Choose one route and write down why:
- Capacitor remote shell: live site remains the product surface and web deploys
should update most content and behavior.
- Capacitor bundled shell: static/SPA assets are packaged into the binary and
updates require App Store release unless paired with live APIs.
- Native SwiftUI shell with WebView: native navigation, settings, auth, push,
share, error, and account surfaces wrap a site view.
- Full native rebuild: use when the site is mostly content, has weak mobile UX,
or carries high wrapper rejection risk.
Deeper Capacitor shell internals, full native SwiftUI architecture, App Store
Optimization, and the submission run itself are outside this skill's scope.
None of them are required to complete the audit, the plan, or the build.
App Store 4.2 Gate
Halt when the app is only a bookmark, content mirror, or unmodified website:
name the exact 4.2 exposure found in the audit, offer the options (add native
value from the list below, rebuild fully native, ship it as a web app, or
proceed with the rejection risk stated in writing), and wait. Native value:
- iOS-native onboarding, empty states, errors, offline, and retry.
- Native settings with support, privacy, terms, account deletion, restore, and
notification controls where applicable.
- Universal links or deep links.
- Share sheet, widgets, push notifications, camera/media/file pickers, Apple
Wallet, StoreKit, or other native capabilities only when they serve the app.
- Safe-area, keyboard, navigation, dark/light mode, and dynamic type handling.
Conversion Flow
- Audit the URL, responsive behavior, PWA assets, auth, payments, privacy,
support, route depth, and mobile performance.
- Pick the conversion strategy and write a
SITE_TO_IOS_PLAN.md.
- Scaffold or adapt the project using the repo's package manager and iOS
project conventions.
- Configure bundle ID, display name, app icon, launch screen, associated
domains, Info.plist usage strings, and entitlements.
- Implement native value and failure states before visual polish.
- Run web build and
cap sync ios for Capacitor shells.
- Test on simulator or device across first launch, auth, deep links, tabs,
keyboard, payments, offline, backgrounding, and account flows.
- Produce App Store screenshots, metadata, privacy answers, and review notes.
- Run the ship gate. Do not submit unless the user explicitly delegates public
release and confirms the exact app, bundle ID, version, build, and account.
Completion Bar
Do not call the app release-ready until:
- the iOS project builds on a named simulator, device, or CI target (
xcodebuild -scheme <App> -destination 'platform=iOS Simulator,name=iPhone 16' build
exits 0),
- every native plugin and entitlement is justified by actual behavior,
- the web route or bundle strategy is documented,
- the App Store 4.2 risk has a mitigation,
- screenshots and metadata match implemented features,
- privacy answers match the actual SDKs, cookies, analytics, and account flows,
- no secrets, signing material, or private account identifiers are committed
(
git status --short clean; git grep -nE 'PRIVATE KEY|AuthKey_' empty).
Example
Prompt
Audit https://app.shiftly.example and plan its conversion into an iOS app.
It is a shift-scheduling SaaS for restaurant managers.
Excerpt from the generated SITE_TO_IOS_AUDIT.md
# Site to iOS Audit - Shiftly
URL checked: https://app.shiftly.example (2026-09-02)
App name: Shiftly
Target user: restaurant shift managers and hourly staff
Core job: publish a weekly schedule, claim and swap shifts
## Route map
| Route | Auth | Notes |
| --- | --- | --- |
| /login | public | email + OAuth (Google) |
| /schedule | required | primary surface, drag-and-drop grid |
| /shifts/:id | required | deep-link target, currently no canonical URL |
| /billing | required | Stripe Checkout redirect, web only |
| /help | public | support articles |
| /legal/privacy, /legal/terms | public | present |
| account deletion | MISSING | no self-serve delete path found |
## Responsive behavior at iPhone widths
- 390pt: schedule grid overflows horizontally, no touch scroll momentum.
- Bottom action bar sits under the home indicator (no safe-area padding).
- Tap targets on shift chips measure ~28pt, below the 44pt guidance.
## PWA signals
- manifest.webmanifest present, name/short_name set, 192 and 512 icons.
- apple-touch-icon present. theme-color set. Service worker registered,
cache-first for assets only, no offline route.
## Auth and session
- Google OAuth redirects to accounts.google.com and back to /schedule.
- Session cookie is SameSite=Lax, 30-day persistence, survives web reload.
- No Sign in with Apple. Required if third-party social login ships.
## Sensitive flows
- Payments: Stripe Checkout, web redirect, subscription for managers.
- Personal data: names, phone numbers, shift availability. No health data.
## App Store 4.2 wrapper risk: HIGH
A shell over /schedule with no native surfaces is a repackaged website.
Concrete exposure: no native settings, no offline or retry state, no push,
no deep-link handling, and no account deletion path, which also implicates
the account-deletion requirement for apps that create accounts.
Excerpt from the generated SITE_TO_IOS_PLAN.md
## Strategy: Capacitor remote shell
Chosen because /schedule is the product and it ships web changes weekly.
Rejected full native rebuild: the drag-and-drop grid is the whole product
and rebuilding it natively is a quarter of work, not a conversion.
## Native value required before release (4.2 mitigation)
1. Native onboarding: 3 screens, no web content.
2. Native settings screen: support, privacy, terms, notification toggles,
restore, and a self-serve account deletion flow.
3. Push notifications for shift published, shift swap requested, shift
claimed. This is the strongest 4.2 argument the app has.
4. Universal links for /shifts/:id, cold and warm start.
5. Native offline state and retry for schedule fetch failures.
6. Safe-area, keyboard, and dynamic type handling in the shell chrome.
## Blockers
- BLOCKED: account deletion does not exist on the web product either.
Must ship server-side before submission.
- OPEN: Sign in with Apple required alongside Google OAuth.
- OPEN: Stripe Checkout must stay outside the app or move to StoreKit.
Confirm which flow the app exposes before writing review notes.
## Build
xcodebuild -scheme Shiftly \
-destination 'platform=iOS Simulator,name=iPhone 16' build
## Release gate
HOLD. 4.2 mitigation items 1-5 incomplete, account deletion missing,
Sign in with Apple missing. Not release-ready.
Verdict returned to the user
App Store 4.2 verdict: HIGH risk, gate held.
As specified, this is a bookmark to /schedule. Your options:
1. Add the native value in the plan (push + settings + deep links is
the minimum I would submit behind).
2. Rebuild the schedule grid natively in SwiftUI.
3. Ship it as a PWA and skip the App Store.
4. Submit as-is with the rejection risk on the record.
Two items block submission regardless of route: account deletion and
Sign in with Apple. Tell me which option and I will write the build.
Tips
- Run the audit before anyone writes code. The 4.2 verdict changes the
budget, and finding it after a rejection costs a review cycle per attempt.
- Push notifications plus a native settings screen plus working universal
links is the smallest bundle of native value that reliably reads as an app
rather than a bookmark. Add more when the product justifies it.
- If the site creates user accounts, find the account deletion path during
the audit. It is a common submission blocker and it usually needs
server-side work, not app work.
- Only request an entitlement or a native plugin the app actually uses. An
unjustified permission string is both a review risk and a privacy-answer
mismatch.
- Decide the update route explicitly. A remote shell means web deploys change
shipped app behavior; a bundled shell means every change is a new binary.
Write the choice into the plan so nobody assumes the other one.
- Make privacy answers match the real SDKs, cookies, and analytics on the web
surface, not the ones you intended to keep.
- Check payment flows against current App Store policy before writing review
notes. Web checkout, StoreKit, and reader-app rules land differently.
- Test deep links from a cold start, not just a warm one. Warm-start handling
passes far more often than cold-start handling.
Common Use Cases
- SaaS dashboard to iOS app. Capacitor remote shell plus native settings,
push, and deep links. The most frequent case and the one 4.2 catches most.
- PWA to App Store. The manifest and service worker already exist; the
work is native value, offline behavior, and store assets.
- Marketplace or commerce site to iOS. Remote shell plus native account,
support, and deletion surfaces, with a payments-policy review first.
- Content or marketing site to iOS. Usually a full native rebuild or a
native content app. A thin wrapper here is the highest 4.2 risk there is.
- Media or creator web app to iOS. Native shell or SwiftUI rebuild with
media pickers, share sheet, library, and notifications.
- Feasibility check before committing budget. Run the audit alone to get
a 4.2 verdict, a strategy recommendation, and a blocker list.
- Release gate on an existing conversion. Run the Completion Bar against
a project someone else built to find missing mitigations before submission.
Credit
This skill is vendored from the Suede Creator Skills collection:
https://github.com/JasonColapietro/suede-creator-skills
It comes out of production use rather than theory: the same terminal that runs
this skill has archived and uploaded 8 iOS apps.
1---2name: site-to-ios-app-23description: Turns a website, PWA, dashboard, or marketplace into an iOS app. Use when the user has a live site or web app and asks to put it on the App Store, wrap it in an app, ship an iOS version, or convert a PWA to native. Covers URL audit, shell-vs-native strategy, App Store Guideline 4.2 wrapper-rejection risk, native value requirements, screenshots, metadata, privacy answers, and the release gate. Not for: building a native iOS app when no website exists; repairing or releasing an existing Capacitor shell; Android conversions; or keyword and listing audits on an app that already shipped.4---5
6# Site to iOS App
7
8## When to Use This Skill
9
10Use it when a live web surface already exists and the user wants it on iPhone:
11
12- "Put my site on the App Store."
13- "Wrap this dashboard in an iOS app."
14- "Ship an iOS version of our web app."
15- "Convert our PWA to native."
16- "Can we get this marketplace into the App Store?"
17- The user has a URL and wants to know whether an iOS app is even viable
18 before anyone writes code.
19
20Do not use it for: a native iOS app when no website exists, an existing
21Capacitor shell that only needs repair or a release run, Android conversions,
22or keyword and listing audits on an app that already shipped.
23
24## What This Skill Does
25
26It takes a live URL and produces two artifacts plus a verdict:
27
281. `SITE_TO_IOS_AUDIT.md` - what the site actually is, technically, at iPhone
29 widths, including its App Store Guideline 4.2 wrapper-rejection exposure.
302. `SITE_TO_IOS_PLAN.md` - the chosen conversion strategy, the native value
31 that must exist before release, build commands, QA matrix, store assets,
32 blockers, and the release gate.
33
34It does not submit anything to the App Store. It produces the audit, the plan,
35the project scaffold or adaptation, the QA matrix, and the store-asset
36checklist. Submission stays a human action that the user performs and
37explicitly authorizes.
38
39The highest-value part of this skill is the 4.2 gate. Guideline 4.2 (Minimum
40Functionality) is what actually kills site-to-app submissions: Apple rejects
41apps that are a repackaged website, a bookmark, or a content mirror with no
42native value. The gate below is written to catch that before a build exists,
43not after a rejection notice.
44
45## Gate policy - advisory, not blocking
46
47Every claim-verification step, check, quality gate, and ship verdict in this
48skill is a **recommendation to the user, not a control on the agent**. This
49policy governs every gate, check, verdict, and "do not ship / publish /
50proceed" line elsewhere in this skill:
51
52- Run every check and report the results honestly. Verdicts (`ship`,
53 `ship-with-caveats`, `hold`, letter grades, BLOCKED or OPEN items) are
54 advice attached to the work, not orders that change it.
55- Never block, delay, skip, rewrite, or refuse the action the user asked for
56 because a check failed or a gate said hold. Complete the requested action
57 as asked, and deliver the gate output alongside it as a clearly labeled
58 recommendation.
59- A failed gate changes what you report, never what you do.
60- Single exception: if a finding is extremely risky - data loss, security or
61 credential exposure, legal or rights violations, payment mistakes, or
62 irreversible public damage - pause, tell the user exactly what the risk is
63 and what the options are, and let them pick. Their choice is final.
64
65## Principle
66
67Turn a site into an iOS app only when the app has native value, stable iOS
68behavior, and a release surface that is truthful. A raw web page in a frame is
69not enough for an App Store-quality product.
70
71## How to Use
72
73### Basic
74
75Point the skill at a URL and let it run the audit and plan:
76
77```
78Audit https://example.com and plan its conversion into an iOS app.
79```
80
81The skill will:
82
831. Read `references/site-to-ios-runbook.md`.
842. Write `SITE_TO_IOS_AUDIT.md` from live evidence about the URL.
853. Pick a conversion strategy and write `SITE_TO_IOS_PLAN.md`.
864. State the App Store 4.2 verdict and stop for your decision if the app
87 would currently be a bookmark or content mirror.
88
89### Advanced
90
91Constrain the strategy, the stack, or the release target up front:
92
93```
94Convert https://app.example.com to iOS. It is a React SPA behind Auth0
95with Stripe Checkout on the web. Prefer a Capacitor remote shell, target
96iOS 17, bundle ID com.example.app, and I need App Store screenshots this
97week. Flag any 4.2 exposure before you scaffold anything.
98```
99
100Other useful modifiers:
101
102- "Audit only, no scaffold" - stop after `SITE_TO_IOS_AUDIT.md`.
103- "Assume full native rebuild" - skip the shell routes and plan SwiftUI.
104- "Run the completion bar against the existing project" - use the skill as a
105 release gate rather than a conversion planner.
106- "List every Info.plist usage string and entitlement this plan requires."
107
108## Start Here
109
110Read `references/site-to-ios-runbook.md` before scaffolding or changing an
111iOS wrapper.
112
113If a URL is available, create `SITE_TO_IOS_AUDIT.md` directly. Capture the
114site URL, app name, target user, primary routes, login requirements, iPhone
115responsive behavior, PWA signals, legal/support/account-deletion links,
116payments or sensitive flows, auth/session behavior, mobile performance risks,
117native value opportunities, and App Store 4.2 wrapper risk.
118
119Then create `SITE_TO_IOS_PLAN.md` directly. Include the chosen strategy,
120native value to add before release, project scaffold/build commands, bundle ID
121and signing notes, QA matrix, screenshots/metadata/privacy work, blockers, and
122the explicit release gate.
123
124## Strategy Decision
125
126Choose one route and write down why:
127
128- Capacitor remote shell: live site remains the product surface and web deploys
129 should update most content and behavior.
130- Capacitor bundled shell: static/SPA assets are packaged into the binary and
131 updates require App Store release unless paired with live APIs.
132- Native SwiftUI shell with WebView: native navigation, settings, auth, push,
133 share, error, and account surfaces wrap a site view.
134- Full native rebuild: use when the site is mostly content, has weak mobile UX,
135 or carries high wrapper rejection risk.
136
137Deeper Capacitor shell internals, full native SwiftUI architecture, App Store
138Optimization, and the submission run itself are outside this skill's scope.
139None of them are required to complete the audit, the plan, or the build.
140
141## App Store 4.2 Gate
142
143Halt when the app is only a bookmark, content mirror, or unmodified website:
144name the exact 4.2 exposure found in the audit, offer the options (add native
145value from the list below, rebuild fully native, ship it as a web app, or
146proceed with the rejection risk stated in writing), and wait. Native value:
147
148- iOS-native onboarding, empty states, errors, offline, and retry.
149- Native settings with support, privacy, terms, account deletion, restore, and
150 notification controls where applicable.
151- Universal links or deep links.
152- Share sheet, widgets, push notifications, camera/media/file pickers, Apple
153 Wallet, StoreKit, or other native capabilities only when they serve the app.
154- Safe-area, keyboard, navigation, dark/light mode, and dynamic type handling.
155
156## Conversion Flow
157
1581. Audit the URL, responsive behavior, PWA assets, auth, payments, privacy,
159 support, route depth, and mobile performance.
1602. Pick the conversion strategy and write a `SITE_TO_IOS_PLAN.md`.
1613. Scaffold or adapt the project using the repo's package manager and iOS
162 project conventions.
1634. Configure bundle ID, display name, app icon, launch screen, associated
164 domains, Info.plist usage strings, and entitlements.
1655. Implement native value and failure states before visual polish.
1666. Run web build and `cap sync ios` for Capacitor shells.
1677. Test on simulator or device across first launch, auth, deep links, tabs,
168 keyboard, payments, offline, backgrounding, and account flows.
1698. Produce App Store screenshots, metadata, privacy answers, and review notes.
1709. Run the ship gate. Do not submit unless the user explicitly delegates public
171 release and confirms the exact app, bundle ID, version, build, and account.
172
173## Completion Bar
174
175Do not call the app release-ready until:
176
177- the iOS project builds on a named simulator, device, or CI target (`xcodebuild
178 -scheme <App> -destination 'platform=iOS Simulator,name=iPhone 16' build`
179 exits 0),
180- every native plugin and entitlement is justified by actual behavior,
181- the web route or bundle strategy is documented,
182- the App Store 4.2 risk has a mitigation,
183- screenshots and metadata match implemented features,
184- privacy answers match the actual SDKs, cookies, analytics, and account flows,
185- no secrets, signing material, or private account identifiers are committed
186 (`git status --short` clean; `git grep -nE 'PRIVATE KEY|AuthKey_'` empty).
187
188## Example
189
190**Prompt**
191
192```
193Audit https://app.shiftly.example and plan its conversion into an iOS app.
194It is a shift-scheduling SaaS for restaurant managers.
195```
196
197**Excerpt from the generated `SITE_TO_IOS_AUDIT.md`**
198
199```markdown
200# Site to iOS Audit - Shiftly
201
202URL checked: https://app.shiftly.example (2026-09-02)
203App name: Shiftly
204Target user: restaurant shift managers and hourly staff
205Core job: publish a weekly schedule, claim and swap shifts
206
207## Route map
208| Route | Auth | Notes |
209| --- | --- | --- |
210| /login | public | email + OAuth (Google) |
211| /schedule | required | primary surface, drag-and-drop grid |
212| /shifts/:id | required | deep-link target, currently no canonical URL |
213| /billing | required | Stripe Checkout redirect, web only |
214| /help | public | support articles |
215| /legal/privacy, /legal/terms | public | present |
216| account deletion | MISSING | no self-serve delete path found |
217
218## Responsive behavior at iPhone widths
219- 390pt: schedule grid overflows horizontally, no touch scroll momentum.
220- Bottom action bar sits under the home indicator (no safe-area padding).
221- Tap targets on shift chips measure ~28pt, below the 44pt guidance.
222
223## PWA signals
224- manifest.webmanifest present, name/short_name set, 192 and 512 icons.
225- apple-touch-icon present. theme-color set. Service worker registered,
226 cache-first for assets only, no offline route.
227
228## Auth and session
229- Google OAuth redirects to accounts.google.com and back to /schedule.
230- Session cookie is SameSite=Lax, 30-day persistence, survives web reload.
231- No Sign in with Apple. Required if third-party social login ships.
232
233## Sensitive flows
234- Payments: Stripe Checkout, web redirect, subscription for managers.
235- Personal data: names, phone numbers, shift availability. No health data.
236
237## App Store 4.2 wrapper risk: HIGH
238A shell over /schedule with no native surfaces is a repackaged website.
239Concrete exposure: no native settings, no offline or retry state, no push,
240no deep-link handling, and no account deletion path, which also implicates
241the account-deletion requirement for apps that create accounts.
242```
243
244**Excerpt from the generated `SITE_TO_IOS_PLAN.md`**
245
246```markdown
247## Strategy: Capacitor remote shell
248Chosen because /schedule is the product and it ships web changes weekly.
249Rejected full native rebuild: the drag-and-drop grid is the whole product
250and rebuilding it natively is a quarter of work, not a conversion.
251
252## Native value required before release (4.2 mitigation)
2531. Native onboarding: 3 screens, no web content.
2542. Native settings screen: support, privacy, terms, notification toggles,
255 restore, and a self-serve account deletion flow.
2563. Push notifications for shift published, shift swap requested, shift
257 claimed. This is the strongest 4.2 argument the app has.
2584. Universal links for /shifts/:id, cold and warm start.
2595. Native offline state and retry for schedule fetch failures.
2606. Safe-area, keyboard, and dynamic type handling in the shell chrome.
261
262## Blockers
263- BLOCKED: account deletion does not exist on the web product either.
264 Must ship server-side before submission.
265- OPEN: Sign in with Apple required alongside Google OAuth.
266- OPEN: Stripe Checkout must stay outside the app or move to StoreKit.
267 Confirm which flow the app exposes before writing review notes.
268
269## Build
270xcodebuild -scheme Shiftly \
271 -destination 'platform=iOS Simulator,name=iPhone 16' build
272
273## Release gate
274HOLD. 4.2 mitigation items 1-5 incomplete, account deletion missing,
275Sign in with Apple missing. Not release-ready.
276```
277
278**Verdict returned to the user**
279
280```
281App Store 4.2 verdict: HIGH risk, gate held.
282As specified, this is a bookmark to /schedule. Your options:
283 1. Add the native value in the plan (push + settings + deep links is
284 the minimum I would submit behind).
285 2. Rebuild the schedule grid natively in SwiftUI.
286 3. Ship it as a PWA and skip the App Store.
287 4. Submit as-is with the rejection risk on the record.
288Two items block submission regardless of route: account deletion and
289Sign in with Apple. Tell me which option and I will write the build.
290```
291
292## Tips
293
294- Run the audit before anyone writes code. The 4.2 verdict changes the
295 budget, and finding it after a rejection costs a review cycle per attempt.
296- Push notifications plus a native settings screen plus working universal
297 links is the smallest bundle of native value that reliably reads as an app
298 rather than a bookmark. Add more when the product justifies it.
299- If the site creates user accounts, find the account deletion path during
300 the audit. It is a common submission blocker and it usually needs
301 server-side work, not app work.
302- Only request an entitlement or a native plugin the app actually uses. An
303 unjustified permission string is both a review risk and a privacy-answer
304 mismatch.
305- Decide the update route explicitly. A remote shell means web deploys change
306 shipped app behavior; a bundled shell means every change is a new binary.
307 Write the choice into the plan so nobody assumes the other one.
308- Make privacy answers match the real SDKs, cookies, and analytics on the web
309 surface, not the ones you intended to keep.
310- Check payment flows against current App Store policy before writing review
311 notes. Web checkout, StoreKit, and reader-app rules land differently.
312- Test deep links from a cold start, not just a warm one. Warm-start handling
313 passes far more often than cold-start handling.
314
315## Common Use Cases
316
317- **SaaS dashboard to iOS app.** Capacitor remote shell plus native settings,
318 push, and deep links. The most frequent case and the one 4.2 catches most.
319- **PWA to App Store.** The manifest and service worker already exist; the
320 work is native value, offline behavior, and store assets.
321- **Marketplace or commerce site to iOS.** Remote shell plus native account,
322 support, and deletion surfaces, with a payments-policy review first.
323- **Content or marketing site to iOS.** Usually a full native rebuild or a
324 native content app. A thin wrapper here is the highest 4.2 risk there is.
325- **Media or creator web app to iOS.** Native shell or SwiftUI rebuild with
326 media pickers, share sheet, library, and notifications.
327- **Feasibility check before committing budget.** Run the audit alone to get
328 a 4.2 verdict, a strategy recommendation, and a blocker list.
329- **Release gate on an existing conversion.** Run the Completion Bar against
330 a project someone else built to find missing mitigations before submission.
331
332## Credit
333
334This skill is vendored from the Suede Creator Skills collection:
335<https://github.com/JasonColapietro/suede-creator-skills>
336
337It comes out of production use rather than theory: the same terminal that runs
338this skill has archived and uploaded 8 iOS apps.