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

推荐订阅源

有赞技术团队
有赞技术团队
Martin Fowler
Martin Fowler
N
Netflix TechBlog - Medium
WordPress大学
WordPress大学
罗磊的独立博客
H
Help Net Security
MongoDB | Blog
MongoDB | Blog
A
About on SuperTechFans
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
D
Docker
云风的 BLOG
云风的 BLOG
Microsoft Security Blog
Microsoft Security Blog
Blog — PlanetScale
Blog — PlanetScale
P
Proofpoint News Feed
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
I
InfoQ
J
Java Code Geeks
博客园 - 聂微东
大猫的无限游戏
大猫的无限游戏
Engineering at Meta
Engineering at Meta
美团技术团队
小众软件
小众软件
Stack Overflow Blog
Stack Overflow Blog
C
Check Point Blog

Show HN

Show HN: AI agents for UK GDAD PCF roles and their skills The Two Pillars: Mixer Mode and Meta-Software in the Reorganization of Software Work After AI GitHub - JaiCode08/teleport-env What 1,000+ Harness Experiments Taught Me About Self-Improving Agents Show HN: Liiists, a Markdown-first, iOS and CLI list app SwiperTab – Get this Extension for 🦊 Firefox (en-US) GitHub - kouhxp/fftext: Summarize, explain, fact-check, or translate any text, URL, or file. No GPU. No cloud. One command GitHub - sweetpad-dev/sweetpad: Develop Swift/iOS projects using VSCode GitHub - dogmaticdev/IRON: IRON a.k.a. Intermediate Representation Object Notation is a Interpreter/Database that is used to create Programming Languages. GitHub - sjhalani7/vaen: Package your AI coding harness into a portable .agent file, and share it across repos, teams, & the community without ever having to copy-paste instructions, skills, MCP config, or secrets. Show HN: Gandalf the Grader Show HN: Citadeld – replay any CI failure locally from a single file GitHub - tdortman/cuSBF: High-Performance GPU Super Bloom Filter coral-ai/claude-code-token-xray at main · Coral-Bricks-AI/coral-ai GitHub - ulyssestenn/funes: Funes is a Git-based framework for LLM-managed knowledge work: an AI Librarian ingests raw sources, builds an interlinked Markdown knowledge base, and uses it to produce cited reports, analyses, and other outputs. GitHub - ThatXliner/gah: Git Add Hunk, built for agents to use GitHub - harmont-dev/harmont-cli: Command-line client for the Harmont CI platform GitHub - brooksmcmillin/mcp-authflow: OAuth 2.0 Authorization Server framework for MCP servers GitHub - javaid-codes/audit-supply-chain-agents GitHub - amorey/gochan: A small library of common channel architectures for Go, inspired by Rust GitHub - arifozgun/OpenGem: Free, Open-Source AI API Gateway with Gemini, OpenAI & Anthropic Compatibility in 1 file GitHub - Pranesh950/BioPetals: 🌸 Run BIOxAI models at home, BitTorrent-style. Fine-tuning and inference up to 10x faster than offloading GitHub - cnguyen14/bounty-doctor: Diagnose a GitHub bounty issue before you waste hours: detects honeypot scam repos, AI-bot attempt swarms, and stale contests. Show HN: CoreMCP – MCP Server for On-Prem DBs Show HN: KittyHTML – Render HTML/CSS as an inline image in your terminal GitHub - bingud/filemat: Web-based file manager Show HN: TruthLens – Free multi-signal deepfake image detector GitHub - apexlocal-jz/claude-usage-tray: Windows system-tray app showing your Claude Code rate-limit usage at a glance. Zero deps, ~300 lines of PowerShell. Cross-IDE (works regardless of VS Code, Cursor, plain terminal). Release v0.1.2.1 · kouhxp/yapsnap GitHub - noopolis/moltnet: Self-hostable chat network for AI agents. Pre-built bridges for Claude Code, Codex, and the Claws. Rooms, DMs, history. No Slack bots, no Matrix, no glue code.
GitHub - press-pass/gifhub: Autonomous QA bug-hunt harnes...
spmartin823 · 2026-06-25 · via Show HN

An autonomous QA bug-hunt harness for any web-app repo.

Point a coding agent at your app; it walks the entire user flow like a real person, hunts for bugs, and for every bug it finds it:

  1. records a GIF of the bug happening,
  2. fixes it,
  3. proves the fix with a UI end-to-end test,
  4. records a GIF of that e2e test passing, and
  5. opens a PR for the bug with the before + after GIFs embedded inline, so a non-technical reviewer can watch the bug, then watch it disappear — without reading a line of code.

Demo

A bug-hunt PR a reviewer can read top to bottom — the bug it found, the before/after GIFs playing inline, and the root cause — without opening the diff:

gifhub bug-hunt demo: a PR showing what the user sees, before/after GIFs, and the root cause

Install as a Claude Code plugin

gifhub ships as a Claude Code plugin, so you can drop these skills into any repo:

/plugin marketplace add press-pass/gifhub
/plugin install gifhub

That installs three skills — bug-hunt (find + fix + GIF PRs), prod-bug-report (report-only), and get-or-create-per-worktree-dev-env (the isolation helper bug-hunt leans on) — plus the /bug-hunt slash command. The skills auto-trigger when you ask an agent to hunt for bugs. Run /plugin update gifhub to pull changes. To try it without installing, from a clone:

claude --plugin-dir /path/to/gifhub

Requirement: per-worktree environments

gifhub parallelizes by running subagents in separate git worktrees, each with its own isolated, running copy of the app. So the one thing your repo needs is a way to stand up an isolated environment per worktree — a command that boots the app on a unique port with isolated data / state / auth, so parallel agents never collide.

You don't have to build this by hand. The get-or-create-per-worktree-dev-env skill gets it if your repo already has it, or creates it if it doesn't — checking for a Conductor setup first (per-workspace provisioning out of the box), and otherwise writing a gifhub.toml in Conductor's schema plus a scripts/worktree-env.sh runner. It then proves the isolation (two worktrees side by side: distinct ports, isolated data, isolated auth) before declaring success. bug-hunt invokes it automatically before fanning out, and a hook blocks the fan-out until isolation is verified. If a repo genuinely can't isolate per worktree, gifhub runs single-threaded.

Point it at your repo

Tell the agent (or bake into the prompt):

  1. Env setup + App URL — usually nothing to do: get-or-create-per-worktree-dev-env gets-or-creates the isolated per-worktree env and returns the boot command + URL. Point it at an existing setup command if you already have one.
  2. E2E — the command that runs the UI e2e suite (Playwright, Cypress, …), and the fact that it can record video (needed to produce the GIFs).

The debug step

The bug-hunt skill is the full brief. With the plugin installed it runs as the /bug-hunt slash command or auto-triggers when you ask an agent to hunt for bugs. PROMPT.md carries the same brief as a copy-paste prompt for agents without the plugin.

Report-only mode

Want bug reports without fixes — e.g. run against production — instead of fix-and-PR? The prod-bug-report skill walks the live app's flows like a user and writes each bug up with reproduction steps (steps: / expected behavior: / actual behavior:). No code changes; it just produces reports.

How it works

The mechanics that make the GIFs reproducible and the e2e reliable are in METHODOLOGY.md, bundled with the bug-hunt skill:

  • one e2e spec produces both GIFs — before (run against the buggy build, fails) and after (run against the fix, passes),
  • GIFs embed inline in the PR body even for private repos, via committed ?raw=true image URLs,
  • favor deterministic UI surfaces for stable e2e (forms, inputs, toggles) over async/AI-driven UI,
  • one bug per worktree → one PR.