Explore

Find agent skills by outcome

124,703 skills indexed with the new KISS metadata standard.

Showing 24 of 124,703Categories: General, Coding & Debugging, Cursor-rules
General
PromptBeginner5 minmarkdownQuality: 24

> Re-export with a solid background color. Open in Preview or Figma

flatten the alpha channel

0
General
PromptBeginner5 minmarkdownQuality: 28

**What Apple checks:** All network calls must use HTTPS. If you have `NSAllowsArbitraryLoads = true` in your `Info.plist`

Apple will ask you to justify it. Unjustified exceptions are rejected.

0
Coding & Debugging
PromptBeginner5 minmarkdownQuality: 28

**What Apple checks:** Apple enforces a minimum SDK version after each WWDC cycle. As of 2025

apps must be built with Xcode 15+ targeting iOS 17 SDK minimum. Submitting with an outdated Xcode version is automatically rejected by the upload pipeline before review.

0
Coding & Debugging
PromptBeginner5 minmarkdownQuality: 28

> Migrate the endpoint to HTTPS before submission. If you absolutely cannot (e.g. a third-party API you don't control)

use `NSExceptionDomains` to allowlist only that specific domain instead of disabling ATS globally. You'll still need to justify it in the review notes. Global `NSAllowsArbitraryLoads` without justific...

0
Coding & Debugging
PromptBeginner5 minmarkdownQuality: 28

**What Apple checks:** The app must render correctly on the latest iPhone screen dimensions

including Dynamic Island devices (iPhone 14 Pro and later). Hardcoded frame sizes

0
General
PromptBeginner5 minmarkdownQuality: 28

> User says: App Store Connect name is 'Trackr: Habit Tracker'

but my Info.plist CFBundleDisplayName is 'Trackr'.

0
General
PromptBeginner5 minmarkdownQuality: 24

**What Apple checks:** App Store description

screenshots

0
General
PromptBeginner5 minmarkdownQuality: 28

> Move them to App Review Notes in App Store Connect (under App Review Information). The description is public-facing and not the right place. Provide: username

password

0
Coding & Debugging
PromptBeginner5 minmarkdownQuality: 28

> This will be rejected under 5.2.2 (misleading metadata). Take real screenshots using the Xcode simulator or a physical device. You may add a colored background

marketing text overlay

0
General
PromptBeginner5 minmarkdownQuality: 28

**What Apple checks:** Screenshots must show the actual UI of the current build. Using competitor device frames

showing features not in the submitted version

0
General
PromptBeginner5 minmarkdownQuality: 24

> Physical goods and services fulfilled outside the app (e.g. e-commerce

ride-sharing

0
General
PromptBeginner5 minmarkdownQuality: 28

**What Apple checks:** If any feature requires authentication

the reviewer must be able to access it. If they cannot

0
General
PromptBeginner5 minmarkdownQuality: 28

> Remove this. It directly violates 3.1.1 and will result in rejection. You may not reference that lower prices exist elsewhere. Offer the subscription only through StoreKit. The only currently permitted exception (post-Epic ruling in the US) is a single

non-promotional

0
General
PromptBeginner5 minmarkdownQuality: 28

> This will be rejected. Implement a Delete Account option in Settings. It must: (1) be clearly labeled

(2) trigger actual deletion (not just deactivation)

0
General
PromptBeginner5 minmarkdownQuality: 24

**What Apple checks:** Any button

link

0
General
PromptBeginner5 minmarkdownQuality: 28

**What Apple checks:** If an app requires account creation before the user can see any functionality

reviewers will flag it. Apple's rule: users must be able to experience the core value of the app before being asked to register.

0
General
PromptBeginner5 minmarkdownQuality: 28

**What Apple checks:** Since June 2022

any app that allows account creation must also allow account deletion from within the app. A mailto link

0
General
PromptBeginner5 minmarkdownQuality: 24

> Add a guest mode

a demo mode

0
Coding & Debugging
PromptBeginner5 minmarkdownQuality: 28

> Test on a physical device running iOS 16.0. Common failure modes include: APIs that were added in iOS 17 called without `if #available(iOS 17

*)` guards

0
Coding & Debugging
PromptBeginner5 minmarkdownQuality: 28

> All three are public

documented frameworks. No private API risk here. Run `nm -u YourApp.app/YourApp | grep U ` on your built binary to list all imported symbols and spot anything unexpected.

0
General
PromptBeginner5 minmarkdownQuality: 28

**What Apple checks:** Reviewers test on real devices running the minimum OS version declared in your build. A crash on launch

a black screen for more than a few seconds

0
Coding & Debugging
PromptBeginner5 minmarkdownQuality: 28

> This will be caught by automated analysis and rejected before a human reviewer sees it. Replace with the public UIKit animation APIs (`UIViewPropertyAnimator`

`UIView.animate`). Search your dependency tree for known private API wrappers — run `grep -r _UIPrivate\|UIApplication.*openURL .` in your project to surface obvious calls.

0
General
PromptBeginner5 minmarkdownQuality: 24

> User says: I use `AVFoundation`

`CoreLocation`

0
General
PromptBeginner5 minmarkdownQuality: 28

> Remove it. Apple will reject apps that request permissions speculatively. Only request Bluetooth when the user first attempts a Bluetooth-dependent action

and ensure that action is reachable by the reviewer without a paid account.

0