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

推荐订阅源

人人都是产品经理
人人都是产品经理
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
宝玉的分享
宝玉的分享
月光博客
月光博客
爱范儿
爱范儿
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
WordPress大学
WordPress大学
有赞技术团队
有赞技术团队
阮一峰的网络日志
阮一峰的网络日志
博客园_首页
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 三生石上(FineUI控件)
博客园 - 聂微东
小众软件
小众软件
量子位
MongoDB | Blog
MongoDB | Blog
Blog — PlanetScale
Blog — PlanetScale
The Cloudflare Blog
Stack Overflow Blog
Stack Overflow Blog
U
Unit 42
Hugging Face - Blog
Hugging Face - Blog
T
The Blog of Author Tim Ferriss
H
Help Net Security
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC

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
OSS Maintainers Lose Hours to Vague Issues. I Built a Git...
Divyesh · 2026-06-24 · via DEV Community

I've been on both sides of the GitHub issue wall.

As a contributor, I've spent time writing what I thought was a decent bug report, only to get a one-liner back: "Can you share a repro?" Three days later I reply. No response. Issue goes stale.

As someone who's poked around in open source repos, I've seen maintainers close issues with a "not enough info" label that they clearly copy-pasted from a template. You can't blame them — doing that manually for every bad issue is exhausting.

That friction is what I tried to fix.


The Context: A 72-Hour Hackathon About Slop Detection

Hackathon Raptors ran the Slop Scan hackathon with a clear brief: build something that detects low-quality content. Most participants went after social media posts or AI-generated text.

I looked at GitHub issues.

They're a form of content too, and they have a very clear quality signal: does this issue give a maintainer enough information to act on it, or not? That's binary and measurable. I could build a scoring system around it.

The result was Signal-OSS — a GitHub Action that scores every new issue from 0 to 10, always posts a structured comment with a checklist tailored to that score, and edits that comment if the contributor updates their issue.

I placed 5th overall and won the Best Detection Accuracy Award. Here's what I actually built.


The Problem With Current Issue Triage

Most repos handle bad issues in one of two ways:

  1. The maintainer manually replies asking for more info. This is time-consuming and inconsistent.
  2. A generic bot closes the issue after N days of inactivity. This is blunt and often alienates contributors who just forgot to follow up.

Neither approach tells the contributor what is actually missing. That's the gap Signal-OSS targets.

The goal isn't to reject bad issues — it's to convert them into good ones by being specific about what's missing.


What It Looks Like in Practice

When a new issue is opened, Signal-OSS runs and always posts a comment — within seconds. What changes based on the score is the content of that comment: a high-scoring issue gets a checklist confirming what's already present, while a low-scoring one gets a checklist of what's specifically missing from that issue.

a newly opened GitHub issue with the bot comment appearing automatically at the bottom
a newly opened GitHub issue with the bot comment appearing automatically at the bottom

The comment isn't generic. It's generated based on the actual signals detected in that issue — not a boilerplate reply, but a specific breakdown the contributor can act on.


How the Scoring Engine Works

This is the part I find most interesting to explain.

The naive approach would be: send the issue to an LLM, ask it to score it, done. That works, but it couples every issue to an external API call — slow, potentially costly, and requires a key just to get started.

Signal-OSS takes a different approach: heuristics first, LLM only as an optional tiebreaker.

Step 1: 7 Heuristic Signals

Before any LLM is involved, the action checks 7 rule-based signals:

  • Does it include a stack trace?
  • Are reproduction steps present?
  • Is a version number mentioned?
  • Is there expected vs actual behavior described?
  • Is there a code block with relevant code?
  • Is there an environment description?
  • Does the issue have a clear, descriptive title (not just "bug" or "error")?

Each signal contributes to the score. Issues that pass most of these signals will likely land above 7. Issues that fail most will land below 3. Both cases get handled without any LLM call.

Step 2: The Ambiguous Zone (4–6)

Issues that land in the 4–6 range are genuinely ambiguous. Maybe the repro steps are there but vague. Maybe there's a stack trace but no environment context. For these, the heuristics can't reliably decide.

This is the only zone where an LLM can get called — and only if you've provided an API key. Signal-OSS is BYOK: bring your own LLM key if you want the smarter scoring, leave it out and the action still works. For the ambiguous zone specifically, omitting the key falls back to the standard heuristic checklist, which is good enough for most repos.

The result: the action is fully functional with zero external API keys. The LLM layer is an opt-in upgrade, not a requirement.

The Comment and Labels

the bot's comment showing the checklist and  raw `needs-info` endraw  label option
the bot's comment showing the checklist and needs-info label option

the bot's comment showing the  raw `signal-oss-ignore` endraw  label option
the bot's comment showing the signal-oss-ignore label option

The bot also:

  • Applies a needs-info label automatically on low scores
  • Adds a signal-oss-ignore label option — if a maintainer adds this to any issue, the bot stays completely silent for that issue
  • Edits its own comment if the contributor updates the issue and the score improves — no spamming the thread with multiple bot replies

Setup Is One File

This was a deliberate design constraint I set early: the activation path has to be a single YAML file. No secrets to configure, no dashboard to sign up for.

# .github/workflows/triage.yml
name: Signal-OSS Issue Triage

on:
  issues:
    types: [opened, reopened]

permissions:
  contents: read
  issues: write

jobs:
  triage:
    runs-on: ubuntu-latest
    if: github.actor != 'github-actions[bot]'
    steps:
      - name: Triage issue
        uses: Divyesh-5981/signal-oss@v1
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
          model: 'none'

The GITHUB_TOKEN is automatically provided by GitHub Actions — no setup needed. The action works fully without the LLM key, using the standard heuristic checklist for all issues including the ambiguous 4–6 zone. If you add a key, ambiguous issues get LLM-refined scoring instead. Drop the file into .github/workflows/ and you're done either way.


the summary view in the Actions tab showing the run result and the score output


Benchmark Numbers (and Why Precision Is Lower Than Recall)

I benchmarked Signal-OSS on real issues from three large repositories: microsoft/vscode, facebook/react, and rust-lang/rust.

Metric Score
Precision 0.66
Recall 0.93
F1 0.77

The precision being lower than recall was intentional. Here's the tradeoff:

High recall means the system rarely misses a bad issue. If something is genuinely low-quality, Signal-OSS will catch it.

Lower precision means it sometimes flags issues that are actually fine. This results in false positives — good issues that get a comment asking for more detail.

For this use case, that's the right tradeoff. Missing a bad issue (false negative) wastes maintainer time. Flagging a good issue (false positive) is slightly annoying for the contributor but recoverable — they can see the score is borderline and move on, or the maintainer can apply signal-oss-ignore.

If I'd optimized for precision, I'd be missing bad issues constantly. That defeats the purpose.


What I'd Do Differently

A few honest notes from the hackathon:

The 4–6 threshold was arbitrary. I chose it based on intuition and tested it during the benchmark, but a configurable threshold would make Signal-OSS more useful across different repo cultures. A high-volume OSS project might want stricter rules than a small internal tool.

The heuristics are English-biased. All 7 signal checks were designed for English-language issues. Issues written in other languages will score lower by default, which isn't fair. This is worth fixing before any serious adoption.

I benchmarked on large repos. The issue quality distribution in vscode or react is probably different from smaller, less-structured projects. The benchmark numbers may not generalize.


Try It

The repo is linked below. If you maintain an open-source project and issue triage is eating your time, this is worth a look.

Two things I'd find genuinely useful from you:

  1. If you test it: tell me in the comments whether the false positive rate felt acceptable on your repo.
  2. If you've solved this differently: I'm curious what other approaches people have tried. Probot? Custom webhooks? Just closing everything immediately?

👇 Drop your thoughts below. And if this was useful, the ❤️ helps other maintainers find it.


Built during the Slop Scan hackathon organized by Hackathon Raptors. Repo in the comments.