惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

H
Hackread – Cybersecurity News, Data Breaches, AI and More
宝玉的分享
宝玉的分享
月光博客
月光博客
爱范儿
爱范儿
阮一峰的网络日志
阮一峰的网络日志
酷 壳 – CoolShell
酷 壳 – CoolShell
Recent Announcements
Recent Announcements
A
About on SuperTechFans
T
The Blog of Author Tim Ferriss
博客园 - 叶小钗
U
Unit 42
aimingoo的专栏
aimingoo的专栏
Y
Y Combinator Blog
Martin Fowler
Martin Fowler
N
Netflix TechBlog - Medium
博客园 - 司徒正美
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
云风的 BLOG
云风的 BLOG
M
MIT News - Artificial intelligence
大猫的无限游戏
大猫的无限游戏
J
Java Code Geeks
V
Visual Studio Blog
腾讯CDC
IT之家
IT之家

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Hermes Agent as a Farmer's AI Advisor — Built on Android,...
Joydeep Das · 2026-05-17 · via DEV Community

Hermes Agent Challenge Build Submission


What I Built

A working agricultural AI advisor powered by Hermes Agent, running entirely on an Android phone via Termux, tested with real farming questions from Silchar, Assam, Northeast India.

No laptop. No GPU. No cloud server. Just a phone, Termux, and Hermes Agent doing real agentic work for farmers who cannot afford enterprise AI tools.


The Problem

Farmers in Cachar district, Assam ask questions like:

  • My rice leaves have brown spots near the edges. What disease is this?
  • When should I plant Boro rice and which variety should I choose?
  • Give me a 3-month farming plan starting from December.

These are not questions a static chatbot answers well. They need an agent that reasons across multiple steps, applies local agricultural knowledge, and gives actionable, region-specific advice.

Hermes Agent does exactly this.


Setup — Android + Termux + Hermes Agent

My environment:

  • Device: Android phone
  • Terminal: Termux → proot-distro Ubuntu (ARM64)
  • No laptop, no desktop, no GPU

Installation was a single command:

curl -fsSL https://raw.githubusercontent.com/NousResearch/hermes-agent/main/scripts/install.sh | bash

Enter fullscreen mode Exit fullscreen mode

Hermes Agent auto-detected my ARM64 Termux environment and installed cleanly. This matters — it means the same setup works for any developer in rural India running Termux.

Model used: Google Gemini via OAuth (free tier) — zero cost, no API key purchase needed.


The Demonstrations

Demo 1: Rice Disease Diagnosis

My prompt to Hermes Agent:

I am a farmer in Silchar, Assam. My rice leaves have brown spots near the edges. What disease is this and how do I treat it?

Hermes Agent's response (summarised):

Hermes correctly identified two candidate diseases based on the symptom description:

Brown Spot (Fungal) — oval/circular spots with yellow halo, common in low-fertility soils. Treatment: Propiconazole 25% EC (1ml/litre) or Mancozeb 75% WP (2-2.5g/litre), plus balanced NPK fertilization.

Bacterial Leaf Blight — wavy brown edges spreading from leaf tips. Treatment: Streptocycline + Copper Oxychloride. Avoid excess Urea. Drain standing water.

Hermes then gave Silchar-specific advice: visit the local Krishi Vigyan Kendra (KVK) in Cachar with a leaf sample before purchasing chemicals.

This is not generic advice. It is regionally grounded, actionable, and honest about when a farmer should seek local expert confirmation.


Demo 2: Boro Rice Planting Calendar

My prompt:

What is the best time to plant Boro rice in Cachar district, and what variety should I choose?

Hermes Agent's response (summarised):

  • Nursery sowing: Mid-November to Mid-December
  • Transplanting: Mid-December to Mid-January
  • Harvest: April to May (before monsoon)

Recommended varieties specific to Assam: Joymati, Bishnu Prasad, Jyotiprasad, Kanaklata, IR-36, IR-50 — with maturity timelines and cold-tolerance tips for Silchar winters.

Sources for seeds: Assam Seeds Corporation, local block agriculture offices, KVK Cachar.


Demo 3: 3-Month Farming Plan

My prompt:

Create a simple 3-month farming plan for a rice farmer in Silchar starting from December

Hermes Agent's response:

Hermes generated a complete week-by-week plan across December, January, and February — covering seedbed preparation, cold protection, transplanting spacing (20x15cm), water management, fertilizer application timing, weed control, and pest monitoring. It even flagged the pro tip of draining water before Urea application to prevent runoff.

This is multi-step planning — not a single lookup but a structured, sequenced agricultural roadmap.


Why This Matters

Hermes Agent ran these three demonstrations on a phone in Termux. The same phone a farmer's son in Cachar district carries. The same environment that costs nothing beyond internet access.

The agentic capabilities that made this work:

Tool chaining — Hermes reasoned across multiple considerations (climate, soil, disease vectors, local institutions) in a single response without being explicitly prompted to do so.

Regional grounding — It applied Assam-specific knowledge (KVK Cachar, Assam Seeds Corporation, local variety names) rather than giving generic pan-India advice.

Honest uncertainty — It told the farmer to get a physical leaf sample confirmed before buying chemicals. An agent that knows the limits of its own remote diagnosis is more trustworthy than one that does not.

Planning capability — The 3-month farming plan was a genuinely structured multi-step output, not a list of generic tips.


Connection to My Broader Work

I have spent the past year building the Divine Earthly ASI system — a sovereign, offline-first agricultural AI for rural Indian farmers, running on quantized 0.5B models via llama.cpp on ARM64 Termux. My system is designed for zero-connectivity environments.

Hermes Agent occupies a different but complementary space: it requires internet connectivity but brings mature agentic infrastructure (skill learning, session memory, 28 tools) that would take years to build from scratch.

What they share: the belief that capable AI should run where farmers are, not just where servers are.


What Hermes Agent Does That Impressed Me

The skill-learning loop. After complex sessions, Hermes distills experience into reusable skill files. For agricultural use, this means the more farmers use it, the better it gets at local, regional questions — accumulating what I call Samskara: the impression that evolves future behavior.

See my companion Write submission for a deeper exploration of this Vedic parallel:
Samskara and the Self-Improving Agent


Reproduce This Yourself

Requirements: Android phone with Termux, or any Linux machine.

# Install proot-distro ubuntu (Termux only)
pkg install proot-distro
proot-distro install ubuntu
proot-distro login ubuntu

# Install Hermes Agent
curl -fsSL https://raw.githubusercontent.com/NousResearch/hermes-agent/main/scripts/install.sh | bash

# Set up free model (Google Gemini OAuth)
hermes model
# Select: Google Gemini via OAuth + Code Assist (free tier)

# Start
hermes

Enter fullscreen mode Exit fullscreen mode

Then ask it a farming question. It works.


Links


Joydeep Das — independent AI researcher, Silchar, Assam. Building sovereign AI for Indian farmers on an Android phone.


hermesagentchallenge #devchallenge #agents #ai #india