Truth Audit

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.

Last updated June 5, 2026·v2.0.0·81 capabilities
Shipped
22
Beta
2
Roadmap
57
Platform
Status

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.

v2.0.0
backend/internal/generator/ios/templates/Info.plist.tmpl

Apple Privacy Manifest (PrivacyInfo.xcprivacy)

Required by Apple since May 2024.

v2.0.0
backend/internal/generator/ios/templates/PrivacyInfo.xcprivacy.tmpl

iOS Entitlements

aps-environment, associated-domains, sign-in-with-apple, app-groups.

v2.0.0
backend/internal/generator/ios/templates/App.entitlements.tmpl

iOS Bundle ID injection

bundle_id from job is injected into Info.plist and Xcode project.

v2.0.0
backend/internal/generator/ios/ios_gen.go

iOS Deep Links (CFBundleURLTypes)

ir.Navigation.DeepLinks → CFBundleURLTypes in Info.plist.

v2.0.0
backend/internal/generator/ios/templates/Info.plist.tmpl

iOS Usage Descriptions

NSCameraUsageDescription, NSLocationWhenInUseUsageDescription, etc. emitted from ir.Permissions.

v2.0.0
backend/internal/generator/ios/templates/Info.plist.tmpl

iOS Asset Catalog (AppIcon, AccentColor, LaunchScreen)

Assets.xcassets generated from ir.Assets.

v2.1.0
Coming Q3 2026

XcodeGen project.yml generation

Real XcodeGen template (not just SwiftPM).

v2.0.0
backend/internal/generator/ios/project.yml.tmpl

xcodebuild archive

Archive builds for the iOS app.

v2.0.0
backend/internal/builder/ios.go

xcodebuild -exportArchive → .ipa

Export archive as .ipa with ExportOptions.plist.

v2.1.0
Coming Q3 2026

xcrun notarytool (Gatekeeper)

Submit .ipa to Apple notary service for macOS apps.

v2.1.0
Coming Q3 2026

iOS Push Notifications (APNs)

UNUserNotificationCenter + aps-environment entitlement.

v2.1.0
Coming Q3 2026

Sign in with Apple

AuthenticationServices framework integration.

v2.1.0
Coming Q3 2026

iOS In-App Purchase (StoreKit 2)

Product.purchase() flow.

v2.1.0
Coming Q3 2026

iOS Camera / Photos (PHPickerViewController, AVCaptureSession)

Native camera and photo picker.

v2.1.0
Coming Q3 2026

iOS Location (CLLocationManager)

WhenInUse / Always authorization.

v2.1.0
Coming Q3 2026

iOS Biometric (LAContext / FaceID / TouchID)

LocalAuthentication framework.

v2.1.0
Coming Q3 2026

iOS App Tracking Transparency (ATTrackingManager)

requestTrackingAuthorization flow.

v2.1.0
Coming Q3 2026

iOS WKWebView + JS Bridge

For web-to-iOS conversion: load the source site in WKWebView with bidirectional bridge to native APIs.

v2.2.0
Coming Q3 2026

iOS Share Sheet, Widgets, Siri Shortcuts

UIActivityViewController, WidgetKit, AppIntents.

v2.3.0
Coming Q3 2026

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.

v2.0.0

Form rendering with validation (every platform)

required, pattern, min/max, custom validators, inline error UI.

v2.1.0
Coming Q3 2026

i18n runtime (next-intl, .strings, strings.xml, i18next)

Translatable strings, locale list, RTL support.

v2.1.0
Coming Q3 2026

A11y audit per screen (WCAG AA)

Contrast check, focus order, semantic landmarks.

v2.1.0
Coming Q3 2026

Privacy nutrition labels

PrivacyInfo.xcprivacy + Android data_safety.json from IR.

v2.0.0

Interactive Conversion Preview

See what the conversion will produce before spending credits.

v2.2.0
Coming Q3 2026

Design-System-Aware Generation

Detect Bootstrap / MUI / Tailwind / shadcn / Radix and preserve in target.

v2.2.0
Coming Q3 2026

Continuous Sync (Watch Mode)

Schedule re-scrapes; meaningful-change detection; re-run pipeline.

v2.2.0
Coming Q3 2026

Multi-Platform Bundle (Build All)

One credit cost = APK + IPA + Web + Desktop from same IR.

v2.2.0
Coming Q3 2026

Smart Store Submission Assistant

Auto-fill App Store Connect + Play Console from IR.

v2.2.0
Coming Q3 2026

Visual Diff Page

Side-by-side screenshots of original site vs generated app per screen.

v2.2.0
Coming Q3 2026

Conversion Quality Leaderboard (public)

Top conversions by quality score with filters.

v2.0.0

Open-Source IR Spec & Decompiler (Apache 2.0)

Public repos: universalforge/ir-spec, universalforge/ir-go, etc.

v2.3.0
Coming Q3 2026

Slack/Discord/Webhook Bot

Convert https://example.com in Slack.

v2.3.0
Coming Q3 2026

Marketplace (public IR templates)

Community IR templates, conversion count, quality score, author kickbacks.

v2.3.0
Coming Q3 2026

Conversion Insurance SLA

Refund + fix if App Store/Play Store rejects.

v2.3.0
Coming Q3 2026

White-Label / On-Prem

Deploy in customer VPC, custom branding.

v2.3.0
Coming Q3 2026

Onboarding Tour

5-step wizard, sample conversion in <60s.

v2.3.0
Coming Q3 2026

Mobile App (React Native)

Manage conversions on the go.

v2.3.0
Coming Q3 2026

Android

40 capabilities · 13 shipped

Android Adaptive Icon

mipmap-anydpi-v26/ic_launcher.xml + ic_launcher_foreground + background, required for Android 8+.

v2.0.0
backend/internal/generator/android/templates/mipmap-anydpi-v26/ic_launcher.xml.tmpl

Android data_extraction_rules.xml

Required for Android 12+ (targetSdk >= 31).

v2.0.0
backend/internal/generator/android/templates/xml/data_extraction_rules.xml.tmpl

Android network_security_config.xml

HTTPS-only enforcement, Play submission requirement.

v2.0.0
backend/internal/generator/android/templates/xml/network_security_config.xml.tmpl

Android ProGuard / R8 rules

Keep rules for Retrofit, OkHttp, Gson, Compose, kotlinx-serialization.

v2.0.0
backend/internal/generator/android/templates/proguard-rules.pro.tmpl

Android App Bundle (.aab)

gradlew bundleRelease, Play submission requirement.

v2.0.0
backend/internal/builder/android.go

apksigner v2/v3 with SHA-256

Modern signing (not deprecated jarsigner SHA-1).

v2.0.0
backend/internal/builder/android.go

Android package_name injection

applicationId from job bundle_id.

v2.0.0
backend/internal/generator/android/android_gen.go

Android Deep Links (intent-filter autoVerify)

ir.Navigation.DeepLinks → <intent-filter autoVerify> in manifest.

v2.0.0
backend/internal/generator/android/templates/AndroidManifest.xml.tmpl

64-bit ABI (arm64-v8a)

Play requirement: arm64-v8a abi filter.

v2.0.0
backend/internal/generator/android/templates/app_build.gradle.kts.tmpl

Android values-night themes.xml

True dark mode override.

v2.0.0
backend/internal/generator/android/templates/values-night/themes.xml.tmpl

Android Push (FirebaseMessagingService)

FCM token registration, onMessageReceived.

v2.1.0
Coming Q3 2026

Google Play Billing v7

BillingClient integration.

v2.1.0
Coming Q3 2026

Android Camera (CameraX)

CameraX preview + capture.

v2.1.0
Coming Q3 2026

Android Location (FusedLocationProviderClient)

Google Play Services location.

v2.1.0
Coming Q3 2026

Android Biometric (AndroidX Biometric)

BiometricPrompt.

v2.1.0
Coming Q3 2026

Android Runtime Permissions

RequestPermission launcher in Compose.

v2.1.0
Coming Q3 2026

Android Hilt DI

@HiltAndroidApp, @HiltViewModel, @Inject.

v2.1.0
Coming Q3 2026

Android DataStore

Preferences + Proto DataStore.

v2.1.0
Coming Q3 2026

Android Room database

Local DB for ir.DataLayer.LocalStorage.

v2.1.0
Coming Q3 2026

Android WorkManager

Background sync.

v2.1.0
Coming Q3 2026

Android Material 3 + Dynamic Color

Material You dynamic color on Android 12+.

v2.1.0
Coming Q3 2026

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.

v2.0.0

Form rendering with validation (every platform)

required, pattern, min/max, custom validators, inline error UI.

v2.1.0
Coming Q3 2026

i18n runtime (next-intl, .strings, strings.xml, i18next)

Translatable strings, locale list, RTL support.

v2.1.0
Coming Q3 2026

A11y audit per screen (WCAG AA)

Contrast check, focus order, semantic landmarks.

v2.1.0
Coming Q3 2026

Privacy nutrition labels

PrivacyInfo.xcprivacy + Android data_safety.json from IR.

v2.0.0

Interactive Conversion Preview

See what the conversion will produce before spending credits.

v2.2.0
Coming Q3 2026

Design-System-Aware Generation

Detect Bootstrap / MUI / Tailwind / shadcn / Radix and preserve in target.

v2.2.0
Coming Q3 2026

Continuous Sync (Watch Mode)

Schedule re-scrapes; meaningful-change detection; re-run pipeline.

v2.2.0
Coming Q3 2026

Multi-Platform Bundle (Build All)

One credit cost = APK + IPA + Web + Desktop from same IR.

v2.2.0
Coming Q3 2026

Smart Store Submission Assistant

Auto-fill App Store Connect + Play Console from IR.

v2.2.0
Coming Q3 2026

Visual Diff Page

Side-by-side screenshots of original site vs generated app per screen.

v2.2.0
Coming Q3 2026

Conversion Quality Leaderboard (public)

Top conversions by quality score with filters.

v2.0.0

Open-Source IR Spec & Decompiler (Apache 2.0)

Public repos: universalforge/ir-spec, universalforge/ir-go, etc.

v2.3.0
Coming Q3 2026

Slack/Discord/Webhook Bot

Convert https://example.com in Slack.

v2.3.0
Coming Q3 2026

Marketplace (public IR templates)

Community IR templates, conversion count, quality score, author kickbacks.

v2.3.0
Coming Q3 2026

Conversion Insurance SLA

Refund + fix if App Store/Play Store rejects.

v2.3.0
Coming Q3 2026

White-Label / On-Prem

Deploy in customer VPC, custom branding.

v2.3.0
Coming Q3 2026

Onboarding Tour

5-step wizard, sample conversion in <60s.

v2.3.0
Coming Q3 2026

Mobile App (React Native)

Manage conversions on the go.

v2.3.0
Coming Q3 2026

Web

30 capabilities · 4 shipped

Next.js 14 App Router generation

Real Next.js 14 app with App Router.

v2.0.0

Tailwind CSS

Tailwind 3.4 config + classes.

v2.0.0

PWA manifest.json

app/manifest.json with icons, theme color, display, scope, start_url.

v2.1.0
Coming Q3 2026

error.tsx, loading.tsx, not-found.tsx

Next.js App Router convention files.

v2.1.0
Coming Q3 2026

middleware.ts

Auth gate + i18n routing + security headers.

v2.1.0
Coming Q3 2026

next/font

Self-hosted fonts from ir.Assets.Fonts.

v2.1.0
Coming Q3 2026

ESLint + Prettier

Lint + format configs.

v2.1.0
Coming Q3 2026

sitemap.ts + robots.ts

SEO sitemap and robots.

v2.1.0
Coming Q3 2026

Lighthouse PWA pass

Generated app passes Lighthouse PWA audit.

v2.1.0
Coming Q3 2026

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.

v2.0.0

Per-page SPA support (networkidle, router introspection)

Real SPA crawl with chromedp per page, networkidle wait, router discovery.

v2.1.0
Coming Q3 2026

Design-token extraction (Go CSS parser)

Color palette, typography, spacing, effects extracted from CSS.

v2.1.0
Coming Q3 2026

Asset masters (1024×1024 icon, Apple touch startup)

Always fetch master 1024×1024 icon + Apple touch startup image.

v2.1.0
Coming Q3 2026

Anti-bot & auth (cookies, headers, utls, Cloudflare bypass)

Cookie injection, header rotation, TLS fingerprint randomization, optional Cloudflare bypass.

v2.2.0
Coming Q3 2026

Form rendering with validation (every platform)

required, pattern, min/max, custom validators, inline error UI.

v2.1.0
Coming Q3 2026

i18n runtime (next-intl, .strings, strings.xml, i18next)

Translatable strings, locale list, RTL support.

v2.1.0
Coming Q3 2026

A11y audit per screen (WCAG AA)

Contrast check, focus order, semantic landmarks.

v2.1.0
Coming Q3 2026

Interactive Conversion Preview

See what the conversion will produce before spending credits.

v2.2.0
Coming Q3 2026

Design-System-Aware Generation

Detect Bootstrap / MUI / Tailwind / shadcn / Radix and preserve in target.

v2.2.0
Coming Q3 2026

Continuous Sync (Watch Mode)

Schedule re-scrapes; meaningful-change detection; re-run pipeline.

v2.2.0
Coming Q3 2026

Multi-Platform Bundle (Build All)

One credit cost = APK + IPA + Web + Desktop from same IR.

v2.2.0
Coming Q3 2026

Visual Diff Page

Side-by-side screenshots of original site vs generated app per screen.

v2.2.0
Coming Q3 2026

Conversion Quality Leaderboard (public)

Top conversions by quality score with filters.

v2.0.0

Open-Source IR Spec & Decompiler (Apache 2.0)

Public repos: universalforge/ir-spec, universalforge/ir-go, etc.

v2.3.0
Coming Q3 2026

Chrome / Firefox Extension

Convert this site button on any page.

v2.3.0
Coming Q3 2026

VS Code Extension

Open IR command with IntelliSense.

v2.3.0
Coming Q3 2026

Slack/Discord/Webhook Bot

Convert https://example.com in Slack.

v2.3.0
Coming Q3 2026

Marketplace (public IR templates)

Community IR templates, conversion count, quality score, author kickbacks.

v2.3.0
Coming Q3 2026

White-Label / On-Prem

Deploy in customer VPC, custom branding.

v2.3.0
Coming Q3 2026

Onboarding Tour

5-step wizard, sample conversion in <60s.

v2.3.0
Coming Q3 2026

Desktop

21 capabilities · 3 shipped

Electron app

Electron 31 with contextIsolation.

v2.0.0

Real React renderer (not innerHTML)

Actual React app, not raw innerHTML rendering.

v2.1.0
Coming Q3 2026

System tray icon + menu

Tray with context menu.

v2.1.0
Coming Q3 2026

Deep link / custom protocol handler

app.setAsDefaultProtocolClient.

v2.1.0
Coming Q3 2026

Auto-update (electron-updater)

GitHub Releases-based auto-update.

v2.1.0
Coming Q3 2026

Code signing (Win EV cert, Mac notarization)

electron-builder signing config.

v2.1.0
Coming Q3 2026

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.

v2.0.0

Form rendering with validation (every platform)

required, pattern, min/max, custom validators, inline error UI.

v2.1.0
Coming Q3 2026

i18n runtime (next-intl, .strings, strings.xml, i18next)

Translatable strings, locale list, RTL support.

v2.1.0
Coming Q3 2026

A11y audit per screen (WCAG AA)

Contrast check, focus order, semantic landmarks.

v2.1.0
Coming Q3 2026

Interactive Conversion Preview

See what the conversion will produce before spending credits.

v2.2.0
Coming Q3 2026

Design-System-Aware Generation

Detect Bootstrap / MUI / Tailwind / shadcn / Radix and preserve in target.

v2.2.0
Coming Q3 2026

Continuous Sync (Watch Mode)

Schedule re-scrapes; meaningful-change detection; re-run pipeline.

v2.2.0
Coming Q3 2026

Multi-Platform Bundle (Build All)

One credit cost = APK + IPA + Web + Desktop from same IR.

v2.2.0
Coming Q3 2026

Visual Diff Page

Side-by-side screenshots of original site vs generated app per screen.

v2.2.0
Coming Q3 2026

Conversion Quality Leaderboard (public)

Top conversions by quality score with filters.

v2.0.0

Open-Source IR Spec & Decompiler (Apache 2.0)

Public repos: universalforge/ir-spec, universalforge/ir-go, etc.

v2.3.0
Coming Q3 2026

Slack/Discord/Webhook Bot

Convert https://example.com in Slack.

v2.3.0
Coming Q3 2026

Marketplace (public IR templates)

Community IR templates, conversion count, quality score, author kickbacks.

v2.3.0
Coming Q3 2026

White-Label / On-Prem

Deploy in customer VPC, custom branding.

v2.3.0
Coming Q3 2026

Onboarding Tour

5-step wizard, sample conversion in <60s.

v2.3.0
Coming Q3 2026

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.

Shipped

Generator template exists and QA check passes. Already in production conversions.

Beta

Template exists in the pipeline. QA is best-effort; output may need manual touch-up.

Roadmap

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