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

推荐订阅源

IT之家
IT之家
A
About on SuperTechFans
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
N
Netflix TechBlog - Medium
Microsoft Security Blog
Microsoft Security Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 三生石上(FineUI控件)
博客园 - 聂微东
博客园 - Franky
D
Docker
Martin Fowler
Martin Fowler
Engineering at Meta
Engineering at Meta
The Cloudflare Blog
人人都是产品经理
人人都是产品经理
Last Week in AI
Last Week in AI
U
Unit 42
F
Fortinet All Blogs
H
Help Net Security
Blog — PlanetScale
Blog — PlanetScale
Microsoft Azure Blog
Microsoft Azure Blog
罗磊的独立博客
P
Proofpoint News Feed
月光博客
月光博客
G
Google Developers Blog

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
No More Manual Test Writing: How I Used Gemma 4 to Turn a...
Arjun Sharma · 2026-05-24 · via DEV Community

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


What I Built

I built Scriptless.ai — an AI-powered testing workspace that lets you go from "I have a GitHub repo" to "I have running browser tests with failure analysis" without writing a single line of test code yourself.

Here's the honest backstory: every team I've seen treats testing as something you do after you're already exhausted from writing the feature. Test coverage slips, QA bottlenecks pile up, and debugging a CI failure at 2 AM means staring at a red checkbox with zero context. Scriptless.ai is my attempt to flip that dynamic entirely.

The core loop is this:

  1. Connect your GitHub repo — OAuth in, pick a repository, done.
  2. Generate test cases with Gemma 4 — The model reads your actual source files and file tree, then produces structured, route-specific test cases (UI, auth, form, API, edge-case, integration) tailored to your exact codebase. Not generic Lorem Ipsum tests — real ones that know your routes and files.
  3. Execute in a real cloud browser — Each test case gets turned into a Playwright script and run in a live Browserbase session. Real browser, real network, real DOM.
  4. Understand failures visually — When a test fails, Gemma 4's vision capability analyzes a screenshot of the page at the moment of failure, tells you what it sees, what likely went wrong, and what to fix. No more blind log archaeology.
  5. Control everything with your voice — A Speechmatics-powered voice command layer lets you say "run failed tests" or "show only passing" and the UI responds. Hands-free QA.

It's a full-stack product: Next.js frontend, Neon Postgres + Drizzle for persistence, Clerk for auth, Stripe scaffold for monetization, and Vercel for deployment. Credits are tracked per user, deducted on generation and execution, and the billing infrastructure is wired up and ready for subscription plans.


Demo

🚀 Live app: https://scriptless-ai.vercel.app/

Sign in with Clerk → authorize GitHub → connect a repo → hit Generate Tests and watch Gemma 4 do its thing.

What to try first:

  • Connect any public Next.js or React repo you own
  • Click Generate Test Cases and see how the model structures tests specific to your file tree
  • Run a test — the Browserbase session spins up a real Chrome instance
  • If it fails, scroll to the Vision Analysis section to see Gemma 4's diagnosis


Code

📦 GitHub: https://github.com/Arjunhg/scriptless-ai

Key files worth exploring:

File What it does
lib/featherless/client.ts Featherless client config, model aliases pointing to gemma-4-31B-it
lib/featherless/generateTests.ts Calls Gemma 4 with tool-calling to produce structured test cases
lib/featherless/analyzeScreenshot.ts Sends failure screenshots to Gemma 4 vision for diagnosis
lib/featherless/prompts/testGeneration.ts The system prompt that turns Gemma into a QA engineer
app/api/generate-test-cases/route.ts API route that reads GitHub files → calls Gemma → saves to DB
app/api/test-cases/run/route.ts Execution pipeline: script gen → Browserbase → vision fallback
hooks/useVoiceCommands.ts Speechmatics real-time pipeline + utterance finalization logic
lib/speechmatics/commandParser.ts Token-based NLP command parser (stemming, stopwords, synonyms)

How I Used Gemma 4

I'm using google/gemma-4-31B-it (the 31B Dense instruction-tuned variant), accessed via the Featherless AI OpenAI-compatible API. Gemma 4 powers two distinct, genuinely different use cases in this app:

1. 🧠 Test Case Generation (Text + Tool Calling)

When a user clicks "Generate Test Cases," the backend fetches their repo's file tree and a filtered set of source files from GitHub, then sends everything to Gemma 4 with a structured system prompt and a tool call definition for submit_test_cases.

// lib/featherless/client.ts
export const FEATHERLESS_TEXT_MODEL = "google/gemma-4-31B-it";

// lib/featherless/generateTests.ts
const response = await featherlessClient.chat.completions.create({
  model: FEATHERLESS_TEXT_MODEL,
  messages: [...messages],
  tools: [TEST_CASE_TOOL_DEFINITION],
  tool_choice: { type: "function", function: { name: "submit_test_cases" } },
});

Enter fullscreen mode Exit fullscreen mode

The model returns a JSON payload with 5–8 test cases, each with a title, description, type (ui/auth/form/api/integration/edge-case), priority, targetRoute, targetFiles, and expectedResult. It understands your app's structure from context — it won't hallucinate routes or files that don't exist because you gave it the actual file tree.

I chose 31B over the smaller variants because structured output fidelity matters here. A smaller model tends to drift from the tool-call schema or produce partial JSON, especially on larger repos with complex file trees. The 31B model is reliably structured even with multi-thousand-token inputs.

2. 👁️ Failure Vision Analysis (Multimodal)

When a test run fails, the Playwright script captures a screenshot at the point of failure. That screenshot gets passed to Gemma 4's vision capability:

// lib/featherless/analyzeScreenshot.ts
const response = await featherlessClient.chat.completions.create({
  model, // google/gemma-4-31B-it
  messages: [{
    role: "user",
    content: [
      { type: "text", text: `You are a QA engineer analyzing a browser test failure screenshot.\n\nTest case: ${testDescription}\n\nDescribe what is visible on the page, what likely went wrong, and suggest concrete next steps...` },
      { type: "image_url", image_url: { url: screenshotUrl } },
    ],
  }],
  max_tokens: 512,
});

Enter fullscreen mode Exit fullscreen mode

The result is a 3–5 sentence diagnosis rendered directly in the test result card. Instead of "FAILED — element not found," you get something like: "The page shows a 404 error. The route /dashboard/analytics does not exist yet. The test references a navigation action that was likely removed in a recent commit. Suggest updating the target route or adding a redirect."

This is the part that genuinely surprised me during development — Gemma 4's vision analysis is sharp. It doesn't just describe the page, it reasons about why a test targeting that page would fail.

Why 31B Dense?

  • Tool-calling reliability: Smaller models frequently break from structured output schemas under pressure. 31B is consistent.
  • Long-context reasoning: Test generation prompts can be 3,000–5,000 tokens with file content. The 31B model handles this gracefully.
  • Vision quality on UI screenshots: Browser screenshots have dense UI elements. The 31B vision model correctly identifies components, error states, and layout issues that smaller models tend to miss or describe too generically.
  • Two-in-one: Using the same model family for both text and vision keeps the integration simple and the behavior predictable across both tasks.

Built solo during the Gemma 4 Challenge. All infrastructure, prompting, voice pipeline, and UI designed and shipped.