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