Query Endpoints

Version: 1.0.0
Purpose: Query endpoints split from endpoints.md for context window efficiency


Overview

This directory contains query endpoints organized by entity type. This allows AI agents to load only the endpoints they need, reducing context window usage.

Use Case: Load specific entity query endpoints when working with that entity, instead of loading the entire endpoints.md (1153 lines).


Available Query Files

Core Entity Queries

Resource Entity Queries

Economic Entity Queries

System Queries

Other Queries


Context Window Savings

Before (Loading endpoints.md)

To get Player endpoints:

After (Loading entity query file)

To get Player endpoints:


Usage

Loading Entity Queries

{
  "load": "api/queries/player.md"
}

Loading Multiple Entities

{
  "load": [
    "api/queries/player.md",
    "api/queries/planet.md"
  ]
}


Last Updated: January 2025