Fountain Coach Gitowner-controlled · read only

swift-codex-openapi-kernel.git · agent.swift

swift-codex-openapi-kernel.git / agent.swift

revision 1fb7cdc68455f2ffdf9990ce58d38ede403b48f1 · complete file

import Foundation

/// Codex orchestration entry point describing how to build and test the project.
@main
struct Agent {
    static func main() throws {
        print("""
        Codex Orchestration Steps:
        1. Run the generator:\n   swift run generator --input OpenAPI/api.yaml --output Generated/
        2. Run tests:\n   swift test -v
        3. Commit any changes under Generated/ and Sources/.
        """)
    }
}