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

推荐订阅源

D
DataBreaches.Net
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Google DeepMind News
Google DeepMind News
博客园 - 聂微东
Microsoft Azure Blog
Microsoft Azure Blog
V
Visual Studio Blog
IT之家
IT之家
博客园 - 【当耐特】
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
B
Blog
爱范儿
爱范儿
阮一峰的网络日志
阮一峰的网络日志
云风的 BLOG
云风的 BLOG
Vercel News
Vercel News
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
H
Hackread – Cybersecurity News, Data Breaches, AI and More
H
Help Net Security
J
Java Code Geeks
aimingoo的专栏
aimingoo的专栏
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
B
Blog RSS Feed
Blog — PlanetScale
Blog — PlanetScale
S
SegmentFault 最新的问题
Apple Machine Learning Research
Apple Machine Learning Research

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
Gemma 4 Challenge: Gemma Sonar Scout
ChangeCrab · 2026-05-08 · via DEV Community

This is a submission for the Gemma 4 Challenge: Build with Gemma 4

What I Built

I built Gemma Sonar Scout, a local monitoring tool that watches supplier and dependency changelogs, release feeds, and status pages, then turns the new evidence into a daily operator brief.

The problem is simple: modern products depend on a stack of external services. Cloud hosts, DNS providers, payment processors, API platforms, AI tools, CI systems, and support platforms all publish important changes in different places. Some updates are harmless. Some are breaking changes. Some are outages that matter immediately.

Gemma Sonar Scout has two layers:

  • A deterministic scanner fetches configured sources, parses RSS, Atom, Statuspage-style incident JSON, plain JSON, and basic public HTML, detects severity/categories, hashes events, and tracks local state so the digest can focus on what is new.
  • A Gemma 4 summarization layer receives the structured evidence and produces a concise daily brief: headline, alert level, summary, recommended actions, and event-level reasoning.

That split is intentional. The model does not decide whether an outage happened or invent sources. The scanner builds the evidence packet; Gemma 4 makes the evidence readable and actionable.

The tool can run as a local cron job and outputs both markdown and a browser-friendly HTML report.

Example:

sonar-scout scan \
  --config examples/hosting-dependencies.json \
  --include-seen \
  --output daily-digest.md \
  --html-output daily-report.html

Enter fullscreen mode Exit fullscreen mode

The bundled demo config watches providers like DigitalOcean, Cloudflare, GitHub, Vercel, Render, and Fly.io.

Demo

Demo video: Here

Local demo with Ollama running locally:

python3 -m pip install --upgrade pip setuptools wheel
python3 -m pip install -e .
PYTHONPATH=. python3 -m sonar_scout demo \
  --gemma-base-url http://localhost:11434/v1 \
  --gemma-model gemma4:e4b \
  --output demo-digest.md \
  --html-output demo-report.html

Enter fullscreen mode Exit fullscreen mode

For a report like the recorded hosting demo:

PYTHONPATH=. python3 -m sonar_scout scan \
  --config examples/hosting-dependencies.json \
  --include-seen \
  --gemma-base-url http://localhost:11434/v1 \
  --gemma-model gemma4:e4b \
  --output demo-digest.md \
  --html-output demo-report.html
python3 -m http.server 8877 --bind 127.0.0.1

Enter fullscreen mode Exit fullscreen mode

Then open:

http://127.0.0.1:8877/demo-report.html

Enter fullscreen mode Exit fullscreen mode

For the recorded demo I used the bundled hosting config and public status-page examples from DigitalOcean, Cloudflare, GitHub, Vercel, Render, and Fly.io.

Code

Repository: https://github.com/changecrab/gemma-sonar-scout

Key files:

  • sonar_scout/fetchers.py parses RSS, Atom, Statuspage incident JSON, basic HTML, and local fixture files.
  • sonar_scout/detectors.py handles deterministic severity, category, and stable event-hash detection.
  • sonar_scout/gemma.py sends the structured evidence packet to a local OpenAI-compatible Gemma endpoint.
  • sonar_scout/render.py renders markdown and HTML reports.
  • examples/hosting-dependencies.json is a practical demo config for public hosting/status providers.

How I Used Gemma 4

I used Gemma 4 E4B-it as the target model.

I chose E4B-it because the project is designed to run locally and repeatedly. A supplier-monitoring digest is exactly the kind of workflow where local AI makes sense: the raw operational context can stay on the user's machine, and the model only receives a compact evidence packet assembled by deterministic code.

E4B-it is a good fit because it offers a practical balance:

  • Small enough to fit the local-first story better than a large hosted-only model.
  • Capable enough to summarize messy multi-provider evidence better than a tiny edge model.
  • Useful for long daily context windows when a team monitors many vendors.

Gemma 4 receives JSON shaped like this:

{
  "events": [
    {
      "id": "stable-event-id",
      "monitor": "Cloudflare",
      "source_type": "status",
      "title": "Network connectivity issue",
      "published_at": "2026-05-08T10:00:00Z",
      "severity": "warning",
      "categories": ["reliability"],
      "url": "https://status.example/incidents/example",
      "content": "Evidence text from the public incident update"
    }
  ]
}

Enter fullscreen mode Exit fullscreen mode

It returns structured JSON:

{
  "headline": "short headline",
  "alert_level": "quiet|normal|watch|urgent",
  "executive_summary": "4-6 sentence summary",
  "recommended_actions": ["action 1", "action 2"],
  "notable_events": [
    {
      "event_id": "stable-event-id",
      "why_it_matters": "short explanation"
    }
  ]
}

Enter fullscreen mode Exit fullscreen mode

This keeps the application testable and trustworthy. The scanner is responsible for evidence. Gemma 4 is responsible for synthesis.

The tool also works without Gemma via --no-gemma, which makes it easy to review, test, and demo before a local model server is running. When Gemma 4 is available, the same scan becomes a much better daily brief.

Why This Matters

Supplier change monitoring is often either too manual or too noisy. Teams do not need another raw feed; they need a quick answer to:

  • What changed since yesterday?
  • Which changes could affect us?
  • What should someone check next?

Gemma Sonar Scout is a local, transparent version of that workflow.

Note: Gemma Sonar Scout is a free and simplified, local-AI adaptation of the monitoring engine we use at ChangeCrab. If you don't want to host this yourself, need something a little more robust - and just want the alerts in your Slack/email, check out ChangeCrab Sonar.