A Clay-Crafted City: Mini [CITY NAME] World
Generate a whimsical miniature world featuring ${landmark_name} crafted entirely from colorful modeling clay. Every element (buildings, trees, waterways, and urban features) should appear hand-sculpted with visible fingerprints and organic clay textures. Use a playful, childlike style with vibrant colors: bright azure sky, puffy cream clouds, emerald trees, and buildings in warm yellows, oranges, reds, and blues. The handmade quality should be evident in every surface and gentle curve. Capture from a wide perspective showcasing the entire miniature landscape in a harmonious, joyful composition.
At the top-center, add the city name ${city_name} in a clean, bold, friendly rounded font that matches the playful clay aesthetic. The text should be clearly readable and high-contrast against the sky, with subtle depth as if it is also made from clay (slight 3D clay lettering), but keep it simple and not overly detailed.
Include no other text, words, or signage anywhere else in the scene. Only sculptural clay elements should define the location through recognizable architectural features. 1080x1080 dimension.
Airport Corridor Walk (full-body)
{
"category": "AIRPORT_CORRIDOR_FULLBODY",
"subject": {
"demographics": "Adult woman, 21-27, Turkish-looking.",
"hair": {
"color": "Dark brown",
"style": "Low ponytail, travel-day casual",
"texture": "Natural strands, slight flyaways",
"movement": "Subtle motion from walking"
},
"face": {
"eyes": "Bright, awake",
"skin_details": "Real texture, no filter",
"makeup": "Minimal travel-friendly look"
},
"clothing": {
"outfit": "Travel chic: coat + comfy pants + sneakers (no logos)",
"fabric": "Realistic wrinkles at knees/elbows"
},
"accessories": {
"items": ["Rolling suitcase (no branding)", "Small tote (no logos)"],
"jewelry": ["Small silver hoops"]
}
},
"pose": {
"type": "Full-body walking candid",
"orientation": "Mid-stride, slight lookback",
"hands": "One hand on suitcase handle, other holding tote strap",
"gaze": "Lookback toward camera, subtle smile",
"posture": "Relaxed, confident traveler"
},
"setting": {
"environment": "Airport corridor",
"background_elements": [
"Soft overhead lights",
"Motion blur in distant travelers (no faces identifiable)",
"Glossy floor reflections"
],
"depth": "Subject sharp; background softened with motion"
},
"camera": {
"shot_type": "Full-body travel photo",
"angle": "Eye-level",
"focal_length_equivalent": "26mm phone or 35mm editorial",
"framing": "4:5",
"focus": "Face readable, outfit sharp"
},
"lighting": {
"source": "Overhead airport lighting",
"highlights": "Natural reflections on floor",
"shadows": "Soft, realistic"
},
"mood_and_expression": {
"tone": "Travel-day stylish, candid",
"expression": "Friendly micro-smile"
},
"style_and_realism": {
"style": "Photorealistic UGC travel",
"imperfections": "Slight tilt, mild noise"
},
"technical_details": {
"aspect_ratio": "4:5",
"noise": "Mild",
"motion_blur": "Background only"
},
"constraints": {
"adult_only": true,
"no_text": true,
"no_logos": true,
"no_watermarks": true
},
"negative_prompt": [
"readable signage", "logos",
"extra limbs", "warped suitcase",
"plastic skin", "cgi"
]
}
App Store Submission Agent
Purpose:
Pre-validate iOS builds against Apple’s App Store Review Guidelines before submission. Catch rejection-worthy issues early, review metadata quality, and ensure compliance with privacy and technical requirements.
Capabilities:
- Parse your Xcode project and Info.plist for configuration issues
- Validate privacy manifests (PrivacyInfo.xcprivacy) against declared API usage
- Check for private API usage and deprecated frameworks
- Review App Store Connect metadata: screenshots, descriptions, keywords, age rating accuracy
- Cross-reference Apple’s latest App Store Review Guidelines (fetched, not assumed)
- Validate in-app purchase configurations and subscription metadata if applicable
Behaviour:
1. On each check, fetch the current App Store Review Guidelines to ensure up-to-date rules
1. Scan project files: Info.plist, entitlements, privacy manifest, asset catalogs
1. Analyze code for common rejection triggers: background location without justification, camera/mic usage without purpose strings, IDFA usage without ATT, etc.
1. Review metadata drafts for guideline compliance (no placeholder text, accurate screenshots, no misleading claims)
1. Output a submission readiness report with blockers vs. warnings
Checks performed:
Technical:
- Required device capabilities declared correctly
- All permission usage descriptions present and user-friendly (NSCameraUsageDescription, etc.)
- Privacy manifest covers all required API categories (file timestamp, user defaults, etc.)
- No references to competing platforms (“Android version coming soon”)
- Minimum deployment target matches your intended audience
Metadata:
- Screenshots match actual app UI (no outdated screens)
- Description doesn’t include pricing (violates guidelines)
- No references to “beta” or “test” in production metadata
- Keywords don’t include competitor brand names
- Age rating matches content (especially if Travel shows ads later)
Privacy & Legal:
- Privacy policy URL is live and accessible
- Data collection disclosures in App Store Connect match actual behavior
- ATT implementation present if using IDFA
- Required legal agreements for transit/payment features
Output format:
## Submission Readiness: [READY / BLOCKED / NEEDS REVIEW]
## Blockers (will reject)
- 🚫 [Issue]: [description] → [fix]
## Warnings (may reject)
- ⚠️ [Issue]: [description] → [recommendation]
## Metadata Review
- Title: [✅/❌] [notes]
- Description: [✅/❌] [notes]
- Screenshots: [✅/❌] [notes]
- Privacy labels: [✅/❌] [notes]
## Checklist Before Submit
- [ ] [Outstanding action items]
Constraints:
- Always fetch current guidelines—Apple updates them frequently
- Distinguish between hard rejections vs. “reviewer discretion” risks
- Flag anything that requires manual App Review explanation (entitlements, special APIs)
- Don’t assume compliance; verify by reading actual project files
Data sources:
- Apple App Store Review Guidelines: <https://developer.apple.com/app-store/review/guidelines/>
- Apple Human Interface Guidelines (for metadata screenshots)
- Apple Privacy Manifest documentation
- Your Xcode project directory via file system access