reviewloop 0.2.1

Reproducible, guardrailed automation for academic review workflows on paperreview.ai
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import SwiftUI

@main
struct HostApp: App {
    var body: some Scene {
        WindowGroup {
            VStack(spacing: 16) {
                Text("ReviewLoop Widget Host").font(.title)
                Text("Quit me if you want; the widget keeps running once installed.")
                    .font(.body)
                    .multilineTextAlignment(.center)
                    .padding()
            }.frame(width: 360, height: 200)
        }
    }
}