Fountain Coach Gitowner-controlled · read only

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

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

revision 8e798f7e74c3d7d379788c55940d70611e46dfe2 · 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/.
        """)
    }
}