What We Actually
Build & Ship
Every marketing claim, mapped to an actual generator template, a QA check, and a release version. Shipped means the template exists and passes QA. Beta means the template is in the pipeline but QA is best-effort. Roadmap means it's coming — we'll mark it shipped the day the template lands.
iOS
39 capabilities · 9 shipped
iOS Info.plist
Complete Info.plist with all 12+ required App Store keys, populated from job bundle_id, deep links, permissions, and privacy manifest.
backend/internal/generator/ios/templates/Info.plist.tmplApple Privacy Manifest (PrivacyInfo.xcprivacy)
Required by Apple since May 2024.
backend/internal/generator/ios/templates/PrivacyInfo.xcprivacy.tmpliOS Entitlements
aps-environment, associated-domains, sign-in-with-apple, app-groups.
backend/internal/generator/ios/templates/App.entitlements.tmpliOS Bundle ID injection
bundle_id from job is injected into Info.plist and Xcode project.
backend/internal/generator/ios/ios_gen.goiOS Deep Links (CFBundleURLTypes)
ir.Navigation.DeepLinks → CFBundleURLTypes in Info.plist.
backend/internal/generator/ios/templates/Info.plist.tmpliOS Usage Descriptions
NSCameraUsageDescription, NSLocationWhenInUseUsageDescription, etc. emitted from ir.Permissions.
backend/internal/generator/ios/templates/Info.plist.tmpliOS Asset Catalog (AppIcon, AccentColor, LaunchScreen)
Assets.xcassets generated from ir.Assets.
XcodeGen project.yml generation
Real XcodeGen template (not just SwiftPM).
backend/internal/generator/ios/project.yml.tmplxcodebuild archive
Archive builds for the iOS app.
backend/internal/builder/ios.goxcodebuild -exportArchive → .ipa
Export archive as .ipa with ExportOptions.plist.
xcrun notarytool (Gatekeeper)
Submit .ipa to Apple notary service for macOS apps.
iOS Push Notifications (APNs)
UNUserNotificationCenter + aps-environment entitlement.
Sign in with Apple
AuthenticationServices framework integration.
iOS In-App Purchase (StoreKit 2)
Product.purchase() flow.
iOS Camera / Photos (PHPickerViewController, AVCaptureSession)
Native camera and photo picker.
iOS Location (CLLocationManager)
WhenInUse / Always authorization.
iOS Biometric (LAContext / FaceID / TouchID)
LocalAuthentication framework.
iOS App Tracking Transparency (ATTrackingManager)
requestTrackingAuthorization flow.
iOS WKWebView + JS Bridge
For web-to-iOS conversion: load the source site in WKWebView with bidirectional bridge to native APIs.
iOS Share Sheet, Widgets, Siri Shortcuts
UIActivityViewController, WidgetKit, AppIntents.
IR Spec v1.1.0
Typed structs for routes, deep_links, api_endpoints, local_storage, icons, images, fonts, forms, a11y, i18n, theme, state, dependencies, privacy_manifest, splash, signing.
Form rendering with validation (every platform)
required, pattern, min/max, custom validators, inline error UI.
i18n runtime (next-intl, .strings, strings.xml, i18next)
Translatable strings, locale list, RTL support.
A11y audit per screen (WCAG AA)
Contrast check, focus order, semantic landmarks.
Privacy nutrition labels
PrivacyInfo.xcprivacy + Android data_safety.json from IR.
Interactive Conversion Preview
See what the conversion will produce before spending credits.
Design-System-Aware Generation
Detect Bootstrap / MUI / Tailwind / shadcn / Radix and preserve in target.
Continuous Sync (Watch Mode)
Schedule re-scrapes; meaningful-change detection; re-run pipeline.
Multi-Platform Bundle (Build All)
One credit cost = APK + IPA + Web + Desktop from same IR.
Smart Store Submission Assistant
Auto-fill App Store Connect + Play Console from IR.
Visual Diff Page
Side-by-side screenshots of original site vs generated app per screen.
Conversion Quality Leaderboard (public)
Top conversions by quality score with filters.
Open-Source IR Spec & Decompiler (Apache 2.0)
Public repos: universalforge/ir-spec, universalforge/ir-go, etc.
Slack/Discord/Webhook Bot
Convert https://example.com in Slack.
Marketplace (public IR templates)
Community IR templates, conversion count, quality score, author kickbacks.
Conversion Insurance SLA
Refund + fix if App Store/Play Store rejects.
White-Label / On-Prem
Deploy in customer VPC, custom branding.
Onboarding Tour
5-step wizard, sample conversion in <60s.
Mobile App (React Native)
Manage conversions on the go.
Android
40 capabilities · 13 shipped
Android Adaptive Icon
mipmap-anydpi-v26/ic_launcher.xml + ic_launcher_foreground + background, required for Android 8+.
backend/internal/generator/android/templates/mipmap-anydpi-v26/ic_launcher.xml.tmplAndroid data_extraction_rules.xml
Required for Android 12+ (targetSdk >= 31).
backend/internal/generator/android/templates/xml/data_extraction_rules.xml.tmplAndroid network_security_config.xml
HTTPS-only enforcement, Play submission requirement.
backend/internal/generator/android/templates/xml/network_security_config.xml.tmplAndroid ProGuard / R8 rules
Keep rules for Retrofit, OkHttp, Gson, Compose, kotlinx-serialization.
backend/internal/generator/android/templates/proguard-rules.pro.tmplAndroid App Bundle (.aab)
gradlew bundleRelease, Play submission requirement.
backend/internal/builder/android.goapksigner v2/v3 with SHA-256
Modern signing (not deprecated jarsigner SHA-1).
backend/internal/builder/android.goAndroid package_name injection
applicationId from job bundle_id.
backend/internal/generator/android/android_gen.goAndroid Deep Links (intent-filter autoVerify)
ir.Navigation.DeepLinks → <intent-filter autoVerify> in manifest.
backend/internal/generator/android/templates/AndroidManifest.xml.tmpl64-bit ABI (arm64-v8a)
Play requirement: arm64-v8a abi filter.
backend/internal/generator/android/templates/app_build.gradle.kts.tmplAndroid values-night themes.xml
True dark mode override.
backend/internal/generator/android/templates/values-night/themes.xml.tmplAndroid Push (FirebaseMessagingService)
FCM token registration, onMessageReceived.
Google Play Billing v7
BillingClient integration.
Android Camera (CameraX)
CameraX preview + capture.
Android Location (FusedLocationProviderClient)
Google Play Services location.
Android Biometric (AndroidX Biometric)
BiometricPrompt.
Android Runtime Permissions
RequestPermission launcher in Compose.
Android Hilt DI
@HiltAndroidApp, @HiltViewModel, @Inject.
Android DataStore
Preferences + Proto DataStore.
Android Room database
Local DB for ir.DataLayer.LocalStorage.
Android WorkManager
Background sync.
Android Material 3 + Dynamic Color
Material You dynamic color on Android 12+.
IR Spec v1.1.0
Typed structs for routes, deep_links, api_endpoints, local_storage, icons, images, fonts, forms, a11y, i18n, theme, state, dependencies, privacy_manifest, splash, signing.
Form rendering with validation (every platform)
required, pattern, min/max, custom validators, inline error UI.
i18n runtime (next-intl, .strings, strings.xml, i18next)
Translatable strings, locale list, RTL support.
A11y audit per screen (WCAG AA)
Contrast check, focus order, semantic landmarks.
Privacy nutrition labels
PrivacyInfo.xcprivacy + Android data_safety.json from IR.
Interactive Conversion Preview
See what the conversion will produce before spending credits.
Design-System-Aware Generation
Detect Bootstrap / MUI / Tailwind / shadcn / Radix and preserve in target.
Continuous Sync (Watch Mode)
Schedule re-scrapes; meaningful-change detection; re-run pipeline.
Multi-Platform Bundle (Build All)
One credit cost = APK + IPA + Web + Desktop from same IR.
Smart Store Submission Assistant
Auto-fill App Store Connect + Play Console from IR.
Visual Diff Page
Side-by-side screenshots of original site vs generated app per screen.
Conversion Quality Leaderboard (public)
Top conversions by quality score with filters.
Open-Source IR Spec & Decompiler (Apache 2.0)
Public repos: universalforge/ir-spec, universalforge/ir-go, etc.
Slack/Discord/Webhook Bot
Convert https://example.com in Slack.
Marketplace (public IR templates)
Community IR templates, conversion count, quality score, author kickbacks.
Conversion Insurance SLA
Refund + fix if App Store/Play Store rejects.
White-Label / On-Prem
Deploy in customer VPC, custom branding.
Onboarding Tour
5-step wizard, sample conversion in <60s.
Mobile App (React Native)
Manage conversions on the go.
Web
30 capabilities · 4 shipped
Next.js 14 App Router generation
Real Next.js 14 app with App Router.
Tailwind CSS
Tailwind 3.4 config + classes.
PWA manifest.json
app/manifest.json with icons, theme color, display, scope, start_url.
error.tsx, loading.tsx, not-found.tsx
Next.js App Router convention files.
middleware.ts
Auth gate + i18n routing + security headers.
next/font
Self-hosted fonts from ir.Assets.Fonts.
ESLint + Prettier
Lint + format configs.
sitemap.ts + robots.ts
SEO sitemap and robots.
Lighthouse PWA pass
Generated app passes Lighthouse PWA audit.
IR Spec v1.1.0
Typed structs for routes, deep_links, api_endpoints, local_storage, icons, images, fonts, forms, a11y, i18n, theme, state, dependencies, privacy_manifest, splash, signing.
Per-page SPA support (networkidle, router introspection)
Real SPA crawl with chromedp per page, networkidle wait, router discovery.
Design-token extraction (Go CSS parser)
Color palette, typography, spacing, effects extracted from CSS.
Asset masters (1024×1024 icon, Apple touch startup)
Always fetch master 1024×1024 icon + Apple touch startup image.
Anti-bot & auth (cookies, headers, utls, Cloudflare bypass)
Cookie injection, header rotation, TLS fingerprint randomization, optional Cloudflare bypass.
Form rendering with validation (every platform)
required, pattern, min/max, custom validators, inline error UI.
i18n runtime (next-intl, .strings, strings.xml, i18next)
Translatable strings, locale list, RTL support.
A11y audit per screen (WCAG AA)
Contrast check, focus order, semantic landmarks.
Interactive Conversion Preview
See what the conversion will produce before spending credits.
Design-System-Aware Generation
Detect Bootstrap / MUI / Tailwind / shadcn / Radix and preserve in target.
Continuous Sync (Watch Mode)
Schedule re-scrapes; meaningful-change detection; re-run pipeline.
Multi-Platform Bundle (Build All)
One credit cost = APK + IPA + Web + Desktop from same IR.
Visual Diff Page
Side-by-side screenshots of original site vs generated app per screen.
Conversion Quality Leaderboard (public)
Top conversions by quality score with filters.
Open-Source IR Spec & Decompiler (Apache 2.0)
Public repos: universalforge/ir-spec, universalforge/ir-go, etc.
Chrome / Firefox Extension
Convert this site button on any page.
VS Code Extension
Open IR command with IntelliSense.
Slack/Discord/Webhook Bot
Convert https://example.com in Slack.
Marketplace (public IR templates)
Community IR templates, conversion count, quality score, author kickbacks.
White-Label / On-Prem
Deploy in customer VPC, custom branding.
Onboarding Tour
5-step wizard, sample conversion in <60s.
Desktop
21 capabilities · 3 shipped
Electron app
Electron 31 with contextIsolation.
Real React renderer (not innerHTML)
Actual React app, not raw innerHTML rendering.
System tray icon + menu
Tray with context menu.
Deep link / custom protocol handler
app.setAsDefaultProtocolClient.
Auto-update (electron-updater)
GitHub Releases-based auto-update.
Code signing (Win EV cert, Mac notarization)
electron-builder signing config.
IR Spec v1.1.0
Typed structs for routes, deep_links, api_endpoints, local_storage, icons, images, fonts, forms, a11y, i18n, theme, state, dependencies, privacy_manifest, splash, signing.
Form rendering with validation (every platform)
required, pattern, min/max, custom validators, inline error UI.
i18n runtime (next-intl, .strings, strings.xml, i18next)
Translatable strings, locale list, RTL support.
A11y audit per screen (WCAG AA)
Contrast check, focus order, semantic landmarks.
Interactive Conversion Preview
See what the conversion will produce before spending credits.
Design-System-Aware Generation
Detect Bootstrap / MUI / Tailwind / shadcn / Radix and preserve in target.
Continuous Sync (Watch Mode)
Schedule re-scrapes; meaningful-change detection; re-run pipeline.
Multi-Platform Bundle (Build All)
One credit cost = APK + IPA + Web + Desktop from same IR.
Visual Diff Page
Side-by-side screenshots of original site vs generated app per screen.
Conversion Quality Leaderboard (public)
Top conversions by quality score with filters.
Open-Source IR Spec & Decompiler (Apache 2.0)
Public repos: universalforge/ir-spec, universalforge/ir-go, etc.
Slack/Discord/Webhook Bot
Convert https://example.com in Slack.
Marketplace (public IR templates)
Community IR templates, conversion count, quality score, author kickbacks.
White-Label / On-Prem
Deploy in customer VPC, custom branding.
Onboarding Tour
5-step wizard, sample conversion in <60s.
How to Read This Page
This is a live audit, refreshed whenever a new template lands. If a feature is marked shipped here, the generator template exists in our backend and the QA check passes. If you find a claim on a marketing page that contradicts this list, that's a bug — please open an issue.
Generator template exists and QA check passes. Already in production conversions.
Template exists in the pipeline. QA is best-effort; output may need manual touch-up.
Not built yet. We commit to a target version; you can hold us to it on the public roadmap.
Audit the Source
Every capability on this page links to a generator template or builder file. Verify any claim by reading the actual source.
View Backend on GitHub