Agent skill
qgis-21-qgisprocess-cli-headless
Sub-skill of qgis: 2.1 qgis_process CLI (Headless) (+2).
Install this agent skill to your Project
npx add-skill https://github.com/vamseeachanta/workspace-hub/tree/main/.claude/skills/_archive/engineering/gis/qgis/21-qgisprocess-cli-headless
SKILL.md
2.1 qgis_process CLI (Headless) (+2)
2.1 qgis_process CLI (Headless)
# List available algorithms
qgis_process list
# Run an algorithm
qgis_process run native:buffer \
--INPUT=/data/wells.gpkg \
--DISTANCE=5000 \
--SEGMENTS=36 \
--OUTPUT=/data/wells_5km_buffer.gpkg
# Run with JSON params file
qgis_process run native:reprojectlayer \
--parameters=reproject_params.json
2.2 Python Processing Framework
import processing
from qgis.core import QgsVectorLayer
# Reproject wells to UTM Zone 31N (offshore NW Europe)
result = processing.run("native:reprojectlayer", {
"INPUT": layer,
"TARGET_CRS": QgsCoordinateReferenceSystem("EPSG:32631"),
"OUTPUT": "memory:"
})
utm_layer = result["OUTPUT"]
# Buffer: 500 m radius around each well
result = processing.run("native:buffer", {
"INPUT": utm_layer,
"DISTANCE": 500,
"SEGMENTS": 32,
"OUTPUT": "/data/well_exclusion_zones.gpkg"
})
2.3 Common Processing Algorithms
| Algorithm | ID | Use |
|---|---|---|
| Reproject | native:reprojectlayer |
CRS transform |
| Buffer | native:buffer |
Proximity zones |
| Spatial join | native:joinattributesbylocation |
Overlay |
| Clip | native:clip |
Mask to AOI |
| Merge layers | native:mergevectorlayers |
Combine datasets |
| Raster clip | gdal:cliprasterbymasklayer |
Crop bathymetry |
| Contour | gdal:contour |
Depth contours |
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
gsd-complete-milestone
Archive completed milestone and prepare for next version
gsd-reapply-patches
Reapply local modifications after a GSD update
gsd-verify-work
Validate built features through conversational UAT
gsd-thread
Manage persistent context threads for cross-session work
clinical-trial-protocol
Generate clinical trial protocols for medical devices or drugs through a modular, waypoint-based architecture with research-only and full protocol modes.
single-cell-rna-qc
Performs quality control on single-cell RNA-seq data (.h5ad or .h5 files) using scverse best practices with MAD-based filtering and comprehensive visualizations.
Didn't find tool you were looking for?