Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add personamanagmentlayer/pcl --skill farming-expertgit clone --depth 1 https://github.com/personamanagmentlayer/pclWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/personamanagmentlayer/pcl/farming-expert)<a href="https://agentmods.dev/skills/personamanagmentlayer/pcl/farming-expert"><img src="https://agentmods.dev/badge/skills/personamanagmentlayer/pcl/farming-expert/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/personamanagmentlayer/pcl/farming-expert"><img src="https://agentmods.dev/badge/skills/personamanagmentlayer/pcl/farming-expert.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00050 | $0.03050 |
| Opus 5 | $0.00025 | $0.01525 |
| Sonnet 5 | $0.00010 | $0.00610 |
| Haiku 4.5 | $0.00005 | $0.00305 |
Grade A, and why
farming-expert scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 411 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Farming Expert
Expert guidance for precision agriculture, farm management systems, crop monitoring, IoT sensors, and agricultural technology.
Core Concepts
Precision Agriculture
- GPS-guided equipment
- Variable rate technology
- Crop monitoring and sensors
- Soil analysis and mapping
- Drone/satellite imagery
- Automated irrigation systems
Farm Management
- Crop planning and rotation
- Resource optimization
- Yield prediction
- Weather forecasting integration
- Equipment maintenance
- Financial management
AgTech Solutions
- IoT sensors (soil, weather)
- Machine learning for yield prediction
- Automated harvesting
- Livestock tracking
- Supply chain integration
- Marketplace platforms
Farm Management System
from dataclasses import dataclass
from typing import List, Optional
from datetime import datetime, timedelta
from enum import Enum
class CropType(Enum):
WHEAT = "wheat"
CORN = "corn"
SOYBEANS = "soybeans"
RICE = "rice"
VEGETABLES = "vegetables"
class GrowthStage(Enum):
PLANTED = "planted"
GERMINATION = "germination"
VEGETATIVE = "vegetative"
FLOWERING = "flowering"
HARVEST_READY = "harvest_ready"
HARVESTED = "harvested"
@dataclass
class Field:
field_id: str
name: str
area_hectares: float
soil_type: str
coordinates: List[tuple] # GPS polygon
irrigation_system: str
drainage_quality: str
@dataclass
class CropCycle:
cycle_id: str
field_id: str
crop_type: CropType
variety: str
planting_date: datetime
expected_harvest_date: datetime
growth_stage: GrowthStage
seed_rate: float
fertilizer_applied: List[dict]
pesticides_applied: List[dict]
irrigation_schedule: List[dict]
class FarmManagementSystem:
"""Farm management and crop tracking"""
def __init__(self, db):
self.db = db
def plan_crop_rotation(self, field_id, years=3):
"""Generate crop rotation plan"""
field = self.db.get_field(field_id)
history = self.db.get_crop_history(field_id, years=10)
# Analyze soil nutrients and previous crops
rotation_plan = []
# Rules for rotation:
# - Alternate nitrogen-fixing and nitrogen-demanding crops
# - Avoid same crop family consecutively
# - Consider soil health and pest management
for year in range(years):
recommended_crop = self.recommend_next_crop(field, history, year)
rotation_plan.append({
'year': datetime.now().year + year,
'crop': recommended_crop,
'reason': self.explain_recommendation(recommended_crop, history)
})
return rotation_plan
def monitor_crop_health(self, field_id):
"""Monitor crop health using sensor data"""
field = self.db.get_field(field_id)
current_crop = self.db.get_current_crop(field_id)
# Collect sensor data
soil_moisture = self.get_soil_moisture_data(field_id)
weather_data = self.get_weather_data(field.coordinates)
ndvi_data = self.get_ndvi_from_satellite(field.coordinates)
# Analyze health indicators
health_score = self.calculate_health_score(
soil_moisture,
weather_data,
ndvi_data,
current_crop
)
alerts = []
if soil_moisture < current_crop.optimal_moisture_min:
alerts.append({
'type': 'irrigation_needed',
'severity': 'high',
'message': 'Soil moisture below optimal level'
})
if ndvi_data < 0.6: # Vegetation health threshold
alerts.append({
'type': 'crop_stress',
'severity': 'medium',
'message': 'NDVI indicates possible crop stress'
})
return {
'field_id': field_id,
'health_score': health_score,
'soil_moisture': soil_moisture,
'ndvi': ndvi_data,
'alerts': alerts,
'recommendations': self.generate_recommendations(alerts)
}
def predict_yield(self, field_id):
"""Predict crop yield using ML"""
field = self.db.get_field(field_id)
current_crop = self.db.get_current_crop(field_id)
# Features for prediction
features = {
'field_area': field.area_hectares,
'soil_type': field.soil_type,
'crop_variety': current_crop.variety,
'days_since_planting': (datetime.now() - current_crop.planting_date).days,
'total_rainfall': self.get_accumulated_rainfall(field_id),
'avg_temperature': self.get_avg_temperature(field_id),
'fertilizer_amount': sum(f['amount'] for f in current_crop.fertilizer_applied),
'ndvi_avg': self.get_avg_ndvi(field_id)
}
# Use trained model to predict yield
predicted_yield_per_hectare = self.yield_model.predict([features])[0]
total_yield = predicted_yield_per_hectare * field.area_hectares
return {
'field_id': field_id,
'predicted_yield_kg': total_yield,
'yield_per_hectare': predicted_yield_per_hectare,
'confidence': 0.85,
'expected_harvest_date': current_crop.expected_harvest_date
}
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 4d ago First seen · 411 lines · 50 tokens per session scan A 9bac3f0168fa
farming-expert is a skill published in the GitHub repository personamanagmentlayer/pcl (40 stars, last pushed 2d ago), licensed Apache-2.0. It adds 50 tokens to every session and 3,050 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-05.
Other skills, from other repositories
neuroskill-bci
Use live BCI cognitive and mood state from NeuroSkill.
findmy
Track Apple devices/AirTags via FindMy.app on macOS.
openhue
Control Philips Hue lights, scenes, rooms via OpenHue CLI.
pydantic-ai
Build production-ready AI agents with PydanticAI — type-safe tool use, structured outputs, dependency injection, and multi-model support.
clawrouter
Hosted-gateway LLM router — save 84% on inference costs. A local proxy that forwards each request to the blockrun.ai gateway, which routes to the cheapest capable model across 76 models from OpenAI, Anthropic, Google, DeepSeek, xAI, Z.AI, and more. 7 free open-weight models included. Also exposes realtime market data…
surf
Use this skill — NOT browser or webfetch — for ALL Surf crypto-data calls. 83 endpoints at localhost:8402/v1/surf/ covering CEX/DEX markets, on-chain SQL over 80+ ClickHouse tables (Ethereum, Base, Arbitrum, BSC, TRON, HyperEVM, Tempo), 100M+ labeled wallets, prediction markets (Polymarket + Kalshi), social/CT…