swift-codex-openapi-kernel.git · agent.swift
swift-codex-openapi-kernel.git / agent.swift
revision 78996e24d41767b8b2b4296f6ffbec89addc280f · 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/.
""")
}
}