EveryDev.ai
Subscribe
Home
Tools

3,107+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents2063
  • Coding1441
  • Infrastructure665
  • Marketing524
  • Projects470
  • Research437
  • Design408
  • Analytics371
  • MCP268
  • Security265
  • Testing255
  • Data249
  • Integration183
  • Prompts183
  • Communication172
  • Learning166
  • Extensions163
  • Voice146
  • Commerce132
  • DevOps115
  • Web84
  • Finance24
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai © 2026
    1. Home
    2. Tools
    3. GeoSQL
    GeoSQL icon

    GeoSQL

    Agent Frameworks

    An open-source AI skill for Claude, Codex, and GitHub Copilot that turns them into geospatial analytics agents for PostGIS, BigQuery, Snowflake, and Wherobots.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Fully free and open-source under the MIT license. No SaaS account required. Works locally or self-hosted.

    Engagement

    Available On

    CLI
    API
    VS Code
    SDK

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    Agent FrameworksDatabase ToolsAI Coding Assistants

    Alternatives

    Agent Skills by mattpocockProliferateDB-GPT
    Developer
    dekart-xyzBerlin, GermanyEst. 2024

    Listed Jul 2026

    About GeoSQL

    GeoSQL is an open-source Python package that installs as a skill into Claude, Codex, or GitHub Copilot, enabling those agents to perform geospatial analytics against PostGIS, BigQuery, Snowflake, and Wherobots. It runs entirely locally or self-hosted — no SaaS account is required. The project is maintained by dekart-xyz under the MIT license and has accumulated 382 stars on GitHub since its April 2026 creation.

    What It Is

    GeoSQL is an agent skill (also described as a plugin) that gives AI coding assistants the ability to discover warehouse schemas, write spatial SQL, validate geometry, and render interactive maps — all within a single agentic loop. It is not a standalone application; it extends existing agents like Claude Code, GitHub Copilot in VS Code, or OpenAI Codex with geospatial reasoning capabilities. The core loop is designed around "map in the loop": the agent renders query results through Dekart (an open-source Kepler.gl backend), inspects the rendered map image, and self-corrects geometry mistakes that a text-only validation pass would miss.

    How the Agent Loop Works

    GeoSQL structures its work into five stages:

    • Discovery — explores warehouse metadata (tables, columns, types) rather than guessing schemas; supports Overture Maps shares on BigQuery and Snowflake, plus private tables on PostGIS, BigQuery, Snowflake, or Wherobots.
    • SQL generation — writes engine-appropriate spatial SQL using functions like ST_INTERSECTS, ST_DISTANCE, H3 indexing, and bbox overlap for partition pruning.
    • Cost check — on BigQuery, every query is dry-run first; a 10 GiB billing cap is enforced by default, and over-budget queries are rewritten with tighter bounding boxes, lower H3 resolution, or additional filters instead of being executed.
    • Geometry validation — computes total area (polygons) or total length (lines) as a sanity check and cross-references against domain knowledge.
    • Map feedback — renders results through Dekart, reads the rendered image as a tool call, and corrects visual geometry errors the text-only loop would miss.

    The README states this map-in-loop step produces a 4x improvement on geospatial tasks compared to text-only validation.

    Installation and Setup

    GeoSQL installs via pip and supports three agent targets out of the box:

    pip install geosql && geosql
    geosql install claude
    geosql install codex
    geosql install copilot
    

    In Claude Code it can also be added through the plugin marketplace. Map rendering and PostGIS connectivity are handled optionally by Dekart, which can be run locally via a single Docker command, self-hosted, or accessed through Dekart Cloud. Warehouse credentials are never sent to the agent — authentication uses local CLI tools (bq, snow, dekart).

    Benchmarks and Eval Suite

    GeoSQL ships with a reproducible evaluation suite under evals/. Each case asserts specific behaviors — cost guardrails, validation steps, correct results — rather than open-ended "did the agent answer" checks. The included suite currently covers three cases (london-boroughs, berlin-create-map, paris-boundaries) with 8 total assertions, all passing at 100%. Average token usage is reported at 3,085 tokens per turn and 72 seconds per turn. The project welcomes pull requests adding new eval cases.

    Why It Matters for Geospatial Workflows

    Traditional AI coding assistants lack awareness of spatial SQL dialects, geometry validation, and the visual feedback needed to catch coordinate-reference-system mismatches or polygon-scale errors. GeoSQL addresses this gap by embedding domain-specific guardrails (cost caps, geometry sanity checks, engine-specific function selection) and closing the loop with rendered map inspection. It targets data scientists and analysts who already use PostGIS, BigQuery, Snowflake, or Wherobots and want to accelerate spatial query development without switching tools.

    GeoSQL - 1

    Community Discussions

    Be the first to start a conversation about GeoSQL

    Share your experience with GeoSQL, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    Fully free and open-source under the MIT license. No SaaS account required. Works locally or self-hosted.

    • Install as skill into Claude, Codex, or GitHub Copilot
    • Geospatial SQL generation for PostGIS, BigQuery, Snowflake, Wherobots
    • Map-in-loop feedback via Dekart
    • BigQuery cost guardrail
    • Geometry validation

    Capabilities

    Key Features

    • Install as a skill into Claude, Codex, or GitHub Copilot
    • Geospatial SQL generation for PostGIS, BigQuery, Snowflake, and Wherobots
    • Warehouse schema discovery (tables, columns, types)
    • Engine-appropriate spatial SQL (ST_INTERSECTS, ST_DISTANCE, H3, bbox overlap)
    • BigQuery cost guardrail with 10 GiB dry-run cap and query rewriting
    • Geometry validation via area/length sanity checks
    • Map-in-loop feedback via Dekart and Kepler.gl rendering
    • Supports Overture Maps shares on BigQuery and Snowflake
    • Local CLI authentication (bq, snow, dekart) — credentials never sent to agent
    • Reproducible eval suite with assertion-based test cases
    • Works 100% locally or self-hosted — no SaaS account required
    • Interactive Python mode (geosql command)
    • Docker-based local Dekart setup for map rendering

    Integrations

    Claude
    Claude Code
    OpenAI Codex
    GitHub Copilot
    VS Code Copilot
    PostGIS
    BigQuery
    Snowflake
    Wherobots
    Dekart
    Kepler.gl
    Overture Maps
    Docker
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

    Be the first to rate GeoSQL and help others make informed decisions.

    Developer

    dekart-xyz

    dekart-xyz builds open-source geospatial data tools, including Dekart — a Kepler.gl backend with connectors for PostGIS, BigQuery, and Snowflake — and GeoSQL, an AI agent skill for geospatial analytics. The organization focuses on enabling data scientists and analysts to work with spatial data using modern AI coding assistants. Their tools run locally or self-hosted, keeping warehouse credentials under user control.

    Founded 2024
    Berlin, Germany
    1 employees

    Used by

    Vay (mobility startup)
    Read more about dekart-xyz
    WebsiteGitHub
    1 tool in directory

    Similar Tools

    Agent Skills by mattpocock icon

    Agent Skills by mattpocock

    A collection of open-source agent skills that extend AI coding assistant capabilities across planning, development, tooling, and knowledge management.

    Proliferate icon

    Proliferate

    Proliferate is an open source background agent platform that automates engineering work in isolated cloud sandboxes, turning tickets and alerts into pull requests automatically.

    DB-GPT icon

    DB-GPT

    An open-source agentic AI data assistant that connects to databases, writes SQL and code, runs skills in sandboxed environments, and turns analysis into reports and insights.

    Browse all tools

    Related Topics

    Agent Frameworks

    Tools and platforms for building and deploying custom AI agents.

    487 tools

    Database Tools

    AI-powered tools for database management, optimization, query construction, and schema design that enhance developer productivity and database performance.

    48 tools

    AI Coding Assistants

    AI tools that help write, edit, and understand code with intelligent suggestions.

    617 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussions