FOSMVVM SwiftUI View Generator Generate SwiftUI views that render FOSMVVM ViewModels. Conceptual Foundation For full architecture context, see FOSMVVMArchitecture.md | OpenClaw reference In FOSMVVM, Views are thin rendering layers that display ViewModels: Key principle: Views don't transform or compute data. They render what the ViewModel provides. --- View-ViewModel Alignment The View filename should match the ViewModel it renders. This alignment provides: - Discoverability - Find the view for any ViewModel instantly - Consistency - Same naming discipline across the codebase - Maintainabilit…