ai-for-field-robotics
Reusable Windsurf rules and Cursor agent skill files for cross-project AI-assisted development
Install / Use
npx skills add Ryukijano/agent-skillsInstalls into whichever agent you are using.
SKILL.md
Installable skill definition
Quality Score
Category
OperationsSupported Platforms
Tags
Skill content
View source on GitHubAI for Field Robotics
Description
AI for robots operating in outdoor, unstructured environments such as agriculture, construction, mining, environmental monitoring, and disaster response.
When to use
You are building robots for crop monitoring, infrastructure inspection, environmental survey, mining, construction, or search-and-rescue in unstructured terrain.
Key concepts
- Terrain perception and navigation: SLAM, semantic segmentation, and traversability estimation in off-road environments.
- Agricultural and environmental robotics: phenotyping, weed detection, and precision spraying.
- Disaster and inspection robotics: damage assessment, human detection, and autonomous traverse in hazardous zones.
- Robustness to field conditions: weather, dust, lighting variation, and GPS-denied operation.
Code pattern
import numpy as np
from sklearn.ensemble import RandomForestClassifier
# Classify crop health from field robot sensor features
X = np.load("field_spectra_features.npy")
y = np.load("crop_health_labels.npy")
clf = RandomForestClassifier(n_estimators=200).fit(X, y)
Tuning notes
- Field data is highly variable; collect diverse, georeferenced training data.
- Power, communication, and mobility constraints are stricter than indoor robots.
- Combine aerial and ground observations for a richer field understanding.
Verification
- Train a crop-stress classifier on field sensor data and validate across locations.
- Build a terrain-traversability map from LiDAR/camera data and compare to human labels.
- Run an autonomous inspection mission in a field simulator and measure coverage.
References
- https://www.sciopen.com/article/10.1016/j.plaphe.2025.100085
- https://doi.org/10.48550/arxiv.2502.09379
- https://ojs.aaai.org/index.php/AAAI/article/view/41474
- https://link.springer.com/article/10.1007/s44163-026-01504-9
Related Skills
pyspark-etl-best-practices-cursorrules-prompt-file
40.6kCursor rules for PySpark ETL development with code style, joins, window functions, map operations, and Iceberg patterns.
semiotic-react-dataviz-cursorrules-prompt-file
40.6kCursor rules for Semiotic data visualization library with 30+ chart types, MCP server, and AI-assisted chart generation.
AstrBot
39.4kAI Agent Assistant & development framework that integrates lots of IM platforms, LLMs, plugins and AI feature, and can be your openclaw alternative. ✨
react-tanstack-router-query-cursorrules-prompt-file
40.6kCursor rules for React SPAs combining TanStack Router v1 and TanStack Query v5 for zero-loading-spinner routing and type-safe server state.
Security Score
Audited on Invalid Date
