israeli-agritech-advisor

israeli-agritech-advisor is a skill for Claude Code, Codex from squadcodercom/squadcoder. It costs 203 tokens per session (3,244 once invoked), scanned A, original, MIT.

A guide for integrating Israeli farming technology, including soil monitoring, irrigation, crop imaging, greenhouse monitoring, pollination, and farm data platforms. Agritech means technology used in agriculture.

In plain words
What is it for?
Use it when building tools for irrigation, pest or disease detection, greenhouse conditions, pollination, farm data, or water compliance. It includes examples for connecting to services such as CropX.
Why use it?
It connects common farming needs with relevant Israeli platforms and shows example API integration patterns.

Skill for Claude CodeCodex

Install

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.

agentmods
npx agentmods add skills/squadcodercom/squadcoder/israeli-agritech-advisor
Any agent
npx skills add squadcodercom/squadcoder --skill israeli-agritech-advisor
Clone the repo
git clone --depth 1 https://github.com/squadcodercom/squadcoder

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for israeli-agritech-advisor

README.md
[![agentmods](https://agentmods.dev/badge/skills/squadcodercom/squadcoder/israeli-agritech-advisor.svg)](https://agentmods.dev/skills/squadcodercom/squadcoder/israeli-agritech-advisor)
Your own site
<a href="https://agentmods.dev/skills/squadcodercom/squadcoder/israeli-agritech-advisor"><img src="https://agentmods.dev/badge/skills/squadcodercom/squadcoder/israeli-agritech-advisor.svg" alt="Measured on agentmods" height="20"></a>
Per session 203 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,244 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5 $0.00203 $0.03244
Opus 5 $0.00102 $0.01622
Sonnet 5 $0.00041 $0.00649
Haiku 4.5 $0.00020 $0.00324

Measured 3d ago against content hash 69636432ccac, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

israeli-agritech-advisor scanned grade A with 1 finding 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 3d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

allowed-tools: Bash(python:*) Bash(pip:*) Bash(curl:*)
.squadcoder/skills/israeli-agritech-advisor/SKILL.md · 256 lines

How it starts

The opening of the file, as written. The whole thing — 256 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Israeli Agritech Advisor

Instructions

Step 1: Identify the Agritech Use Case

Use Case Key Platforms Data Types Goal
Irrigation optimization CropX, Netafim, Manna Soil moisture, weather, ET0 Reduce water use 20-40%
Pest/disease detection Taranis, AgroScout Aerial imagery, NDVI Early detection, targeted treatment
Greenhouse monitoring Prospera/Valmont Climate, imagery Optimal growing conditions
Pollination management BeeHero Hive sensors, GPS Maximize pollination efficiency
Farm data platform Multiple All sensor data Unified decision dashboard
Water compliance Mekorot data, sensors Water flow, quotas Meet Water Authority regulations

Step 2: Connect to Agritech APIs

CropX -- Soil Monitoring Integration:

import requests

class CropXClient:
    """Client for CropX soil monitoring API."""

    BASE_URL = "https://api.cropx.com/v2"

    def __init__(self, client_id, client_secret):
        self.token = self._authenticate(client_id, client_secret)
        self.headers = {"Authorization": f"Bearer {self.token}"}

    def _authenticate(self, client_id, client_secret):
        response = requests.post(f"{self.BASE_URL}/auth/token", json={
            "client_id": client_id,
            "client_secret": client_secret,
            "grant_type": "client_credentials"
        })
        return response.json()["access_token"]

    def get_sites(self):
        """List all monitored field sites."""
        return requests.get(f"{self.BASE_URL}/sites", headers=self.headers).json()

    def get_soil_readings(self, device_id, start_date, end_date):
        """Get soil sensor readings for a device."""
        return requests.get(
            f"{self.BASE_URL}/devices/{device_id}/measurements",
            headers=self.headers,
            params={"from": start_date.isoformat(), "to": end_date.isoformat(),
                    "metrics": "moisture,temperature,ec"}
        ).json()

    def get_irrigation_recommendation(self, site_id):
        """Get AI-driven irrigation recommendation for a site."""
        return requests.get(
            f"{self.BASE_URL}/sites/{site_id}/recommendations",
            headers=self.headers
        ).json()

Read the full file on GitHub · 256 lines

Files

What ships with it

4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

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.

  1. 3d ago First seen · 256 lines · 203 tokens per session scan A 69636432ccac

Subscribe to this mod's changes

israeli-agritech-advisor is a skill published in the GitHub repository squadcodercom/squadcoder (11 stars, last pushed 2mo ago), licensed MIT. It adds 203 tokens to every session and 3,244 once invoked, about $0.0010 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

workflow

Author and edit vix workflows — declarative multi-step pipelines (agent/bash/tool/if/fanout/fanin nodes) stored in config/workflow.json or embedded inline in a job/hook. Use when the user asks to create, modify, or understand a workflow, or to fan work out across many items and join the results.

get-vix/vix · 71 tokens

integrated-browser

Use this when working on the VS Code integrated browser ("browserView") to understand its architecture and mental model. Covers the embedded Chromium browser, its editor tab, navigation, overlay/layout, sessions, and agent browser tools under src/vs/platform/browserView and src/vs/workbench/contrib/browserView.

microsoft/vscode · 68 tokens

pcbway

PCBWay PCB fabrication and assembly — turnkey/consigned assembly, design rules, ordering workflow. Alternative to JLCPCB for manufacturing. Use with KiCad. Use this skill when the user mentions PCBWay, needs turnkey assembly (PCBWay sources parts by MPN), has parts not available on LCSC, needs assembled boards with…

aklofas/kicad-happy · 119 tokens

unifi-protect

How to manage UniFi Protect cameras and NVR — view cameras, smart detections, Find Anything detection search, recordings, snapshots, lights, sensors, Known Faces, license plates, and the Alarm Manager. Use this skill when the user mentions UniFi cameras, security cameras, NVR, recordings, motion detection, person…

sirkirby/unifi-mcp · 112 tokens

unifly

This skill should be used when the user asks to "manage UniFi devices", "configure UniFi networks", "create a VLAN", "provision an SSID", "create firewall rules", "reorder firewall policies", "create a NAT rule", "set up port forwarding", "configure masquerade NAT", "add DNS records", "manage traffic matching lists"…

hyperb1iss/unifly · 265 tokens

human-auth-nfc

Handle NFC tap and RFID delegation from Human Phone. Covers NFC tag reading, contactless payment verification, and physical access card scenarios.

pockebot/openpocket · 31 tokens