Skip to Content

Agent skills for Geobase

Geobase skills  are playbooks for coding agents (Cursor and other Agent Skills -compatible tools). They teach agents how to use Geobase project APIs, worker jobs, maps, and GeoEmbeddings without inventing endpoints or mixing platform vs project credentials.

Private beta — Installing skills requires GitHub access to decision-labs/geobase-skills. During beta, use Geobase Studio for project URL, ref, and anon key; put service-role and database secrets only in local gitignored env files (never in chat).

Install

Compatible with the Skills CLI (npx skills).

# Cursor, this project npx skills add decision-labs/geobase-skills --skill '*' -a cursor -y # Cursor, user-wide npx skills add decision-labs/geobase-skills --skill '*' -a cursor -g -y

One skill

npx skills add decision-labs/geobase-skills --skill geobase-tileserver --yes

List what is in the repo

npx skills add decision-labs/geobase-skills --list

Bundle page: skills.sh/decision-labs/geobase-skills . Public search (npx skills find geobase) may be empty while install counts are low — use --list instead.

Start with the umbrella skill

Always load @geobase first. It covers:

  • Private-beta Studio setup (project URL, ref, anon key)
  • Secrets workflow (human in the loop)
  • Control-plane (platform) vs data-plane (project) scope
  • Routing to focused skills
npx skills add decision-labs/geobase-skills@geobase -g -y

Skill catalog

AreaSkillWhat it helps with
Platform@geobaseSetup, secrets, routing
GeoEmbeddings@geobase-embeddingsIndex / which step next
@geobase-embeddings-create-via-workersCreate tables via workers only
@geobase-embeddings-catalogue-managementCatalogue list / visibility / delete
@geobase-embeddings-rpc-applicationssimilarity_search, change detection
@geobase-embeddings-troubleshootingJob / RPC failures
Workers@geobase-worker-srai-embeddingscreateSraiEmbeddings (OSM + H3)
@geobase-worker-geoai-embeddingscreateGeoEmbeddings (raster)
@geobase-worker-osm-importosmImportArea
@geobase-worker-overture-importovertureImportArea
@geobase-worker-archive-to-pmtilesarchiveToPmtiles
Maps@geobase-tileserverVector MVT / MapLibre
@geobase-titilerRaster COG / Titiler
Data@geobase-project-db-data-importLocal files → Postgres (ogr2ogr)

Authoritative metadata: skills/catalog.json in the skills repo.

How this relates to these docs

Skills point agents at the same public docs and APIs:

TopicDocs
Project service URLsProject services
Worker jobsWorker jobs
Overture importOverture Maps import
Archive to PMTilesArchive to PMTiles
SRAI embeddingsAutomated SRAI pipeline
Vector tilesTileserver
Raster tilesTitiler

When product behaviour changes, maintainers update both geobase-docs  and geobase-skills  (see the monorepo merge checklist).

Last updated on