← Back to search
25
Basic
Agentic Readiness Score
other llms-txtdatabase

Agentic Signals

📄
Found
🤖
ai-plugin.json
Not found
📖
OpenAPI Spec
Not found
🔗
Structured API
Not found
🛡
Not specified
🏷
Schema.org Markup
Not found
MCP Server
Not found

Embed this badge

Show off your agentic readiness — the badge auto-updates when your score changes.

Agentic Ready 25/100

            

llms.txt Content

# ExoQuery > Language Integrated Query for Kotlin Multiplatform. Write SQL using native Kotlin syntax with compile-time query generation. ExoQuery transforms Kotlin code like `people.filter { p -> p.age >= 18 }.map { p -> p.name }` directly into SQL at compile time. No string concatenation, no runtime reflection, no DSL builders with special operators. Just regular Kotlin. ## Key Concepts - **Compile-time SQL generation**: Queries are synthesized during compilation, not runtime - **Native Kotlin syntax**: Use `==`, `if/when`, `?:`, `?.let` - they become SQL `=`, `CASE WHEN`, `COALESCE` - **Type-safe**: Full compile-time type checking for queries - **Multiplatform**: JVM (JDBC/R2DBC), Android, iOS, macOS, Linux, Windows ## Quick Example ```kotlin val adults = sql { Table<Person>().filter { p -> p.age >= 18 } } //> SELECT p.id, p.name, p.age FROM Person p WHERE p.age >= 18 ``` ## Documentation Welcome to the ExoQuery documentation! ExoQuery is a Language Integrated Query library for Kotlin Multiplatform that allows you to write SQL queries using native Kotlin syntax. ## Getting Started New to ExoQuery? Start here: - [Introduction](https://exoquery.io/docs/01-getting-started/01-introduction) - Learn what ExoQuery is and why it exists - [Installation](https://exoquery.io/docs/01-getting-started/02-installation) - Set up ExoQuery in your project - [Quick Start](https://exoquery.io/docs/01-getting-started/03-quick-start) - Write your first query in minutes ## Core Concepts Understand the fundamentals: - [SQL Blocks](https://exoquery.io/docs/02-core-concepts/01-sql-blocks) - The `sql { }` construct - [Parameters](https://exoquery.io/docs/02-core-concepts/02-parameters) - Using runtime data safely - [Composing Queries](https://exoquery.io/docs/02-core-concepts/03-composing-queries) - Building queries functionally ## Query Operations Learn the day-to-day operations: - [Basic Operations](https://exoquery.io/docs/03-query-operations/01-basic-operations) - Map