Token导航 LogoToken导航TokenDH.com
开发权限需确认github未标认证来源可访问clear审计通过

postgis-skill后地理技能

Agent Skill

postgis-skill 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,991

周安装

121

GitHub Stars

2,107

下载量

939
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:postgis-skill(后地理技能)
来源仓库:https://github.com/postgis/postgis
仓库路径:skills/postgis-skill
安装命令:
npx skills add https://github.com/postgis/postgis --skill postgis-skill
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/postgis/postgis --skill postgis-skill

简介

用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在开发过程中围绕代码变更、仓库状态进行信息梳理和上下文管理。
  • 通过 GitHub 安装,需确认权限范围和是否访问敏感数据,避免意外暴露私有信息。
  • 使用前应检查技能维护状态,评估是否会触发网络请求或文件操作,确保环境安全。
  • 建议与团队协作流程结合使用,确保输出内容符合项目规范和隐私策略。

SKILL.md

Documentation

  • Make sure every create statement or CTE has descriptive comment -- in front of it.
  • Write enough comments so you can deduce what was a requirement in the future and not walk in circles.
  • Every feature needs to have comprehensive up-to-date documentation near it.

Style

  • PostGIS functions follow their spelling from the manual (st_segmentize -> ST_Segmentize).
  • SQL is lowercase unless instructed otherwise.
  • Values in databases and layers should be absolute as much as possible: store "birthday" or "construction date" instead of "age".
  • Do not mix tabs and spaces in code.
  • Add empty lines between logical blocks.
  • Format the code nicely and consistently.
  • Call geometry column geom; geography column geog.

Indexing

  • Create brin for all columns when creating large table that will be used for ad-hoc queries.
  • If you have cache table that has a primary key, it makes sense to add values into including on same index for faster lookup.

Debugging

  • Make sure that error messages towards developer are better than just "500 Internal server error".
  • Don't stub stuff out with insane fallbacks (like lat/lon=0) - instead make the rest of the code work around data absence and inform user.
  • SQL files should to be idempotent: drop table if exists + create table as; add some comments to make people grasp queries faster.
  • Create both "up' and "down/rollback" migration when creating new migrations for ease of iteration.
  • Check select postgis_full_version(); to see if all upgrades happened successfully.
  • Don't run one SQL file from other SQL file - this quickly becomes a mess with relative file paths.

Raster

  • Do not work with GDAL on the filesystem. Import things into database and deal with data there.

SQL gotchas

  • sum(case when A then 1 else 0 end) is just count() filter (where A)
  • row_number()... = 1 can likely be redone as order by + limit 1 (possibly with distinct on or lateral)
  • exists(select 1 from...) is just exists(select from...)
  • tags ->> 'key' = 'value' is just tags @> '{"key": "value"} - works faster for indexes
  • you can't just create ordered table and then rely on it to be ordered on scan without order by

PostGIS gotchas

  • Do not use geometry typmod unless requested (things like geometry(multilinestring, 4326)) - use plain geometry or geography instead. This removes clutter of ST_Multi and errors via ST_SetSRID.
  • ST_UnaryUnion(ST_Collect(geom)) is just ST_Union(geom)
  • ST_Buffer(geom, 0) should be ST_MakeValid(geom)
  • select min(ST_Distance(..)) should be select ST_Distance()... order by a <-> b limit 1 to enable knn gist
  • order by ST_Distance(c.geog, t.geog) should be order by c.geog <-> t.geog
  • ST_UnaryUnion is a sign you're doing something wrong
  • ST_MakeValid is a sign you're doing something wrong on the previous step
  • be extra attintive when calling ST_SetSRID: check the actual projection of input data, check if it can be set correctly during input (ST_GeomFromGeoJSON, EWKT-style SRID=4326;POINT(..., EWKB allow that). Check if ST_Transform is needed instead.
  • when looking for relation between point and polygon, prefer ST_Intersects to other topology predicates
  • when generating complex geometry by walking raster or grid, may make sense to ST_Simplify(geom, 0)
  • to generate neighbourhoods of predictable size, use ST_ClusterKMeans with k=2 and max_radius set to your distance.
  • use ST_AsEWKB for binary representation instead of ST_AsWKB to keep SRID.
  • Choosing projection: SRID=4326 (2D longlat) when input or output is longitude and latitude and coordinate value is to be shown to user. SRID=3857 (2D Spherical Mercator) when output will be shown on web map, ST_AsMVT, or 2D KNN requests of short distance are to be executed. SRID=4978 (3D XYZ) when performing internal computations, line-of-sight, clustering and averaging across antimeridian. Beware: only use 3D-aware operations, ST_Force3DZ on 2D CRS data before calling ST_Transform to it.
  • Instead of using ST_Hexagon / ST_HexagonGrid use h3 extension.
  • When you know the data is going to be dumped in binary form, gzipped and moved around, consider using ST_QuantizeCoordinates if precision is known.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenCode

29.5%
按下载量换算277

Claude Code

20.17%
按下载量换算189

Cursor

17.16%
按下载量换算161

github-copilot

11.69%
按下载量换算110

goose

7.71%
按下载量换算72

Gemini CLI

3.21%
按下载量换算30

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

权限需确认

当前来源未能明确判断权限范围,默认进入异常复核队列。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills