Detailed Analysis
A developer's open-source "bullshit detector" project has emerged as a notable example of how Claude Code's skills and plugin architecture can be extended into practical, community-driven tooling. Built by Serhii Korniienko and shared on Reddit's r/ClaudeAI, the tool addresses a common frustration: verifying claims made in long-form YouTube or TikTok videos that rack up millions of views without any built-in accountability. The system pulls content from a given link, transcribes it (falling back to a locally installed Whisper instance when no transcript exists), decomposes the transcript into discrete factual claims, and then verifies each one individually via web search, producing a structured report with a 0-10 "BS score" and mandatory source citations for every verdict. In one demonstration, the tool broke down a 2.7-million-view video about an "AI bubble" into 60 claims, individually verifying 44 of them — illustrating both the granularity and the labor-intensiveness of automated fact-checking at scale.
Technically, the project is built entirely as Claude Code skills — plain skills plus Python scripts — packaged as an installable plugin with its own GitHub-hosted marketplace, a structure inspired by prior work from Matt Pocock. This design choice matters because it makes the tool portable beyond Claude specifically: since it adheres to the general "skills" format, it can theoretically run in any compatible agent environment, not just Anthropic's ecosystem. The author also added a safeguard script that recalculates and corrects numerical totals in generated reports, an explicit acknowledgment that even capable LLMs are unreliable at basic arithmetic — a small but telling admission about the current limits of model reasoning that developers building on top of these systems have to engineer around rather than assume away.
The growth numbers reported — roughly 115 GitHub stars, 6 forks, and 19 releases within a week, driven almost entirely by a single Hacker News post (65 points, 71 comments) while X and LinkedIn contributed negligible traffic — offer a useful, unusually transparent data point on how technical audiences discover and validate niche open-source AI tooling. Distribution remains extremely concentrated: a single high-trust community (HN) can make or break early traction for a solo-built AI project, while broader social platforms do little without an existing following. This pattern reflects a broader trend in the current wave of AI-tool building, where individual developers, empowered by agentic coding assistants, can ship relatively sophisticated multi-stage pipelines (transcription, claim extraction, retrieval-augmented verification, report generation) in days rather than months, then distribute them through developer-centric channels rather than traditional marketing.
Perhaps the most substantive anecdote in the post is the friction encountered on Hacker News itself: the author's AI-drafted introductory comments were automatically flagged and removed by what appears to be an AI-slop detection mechanism or aggressive community reporting, while human-written comments survived and generated genuine discussion. This is a striking, concrete signal of a growing backlash within technical communities against AI-generated text, even when the underlying content is legitimate and the surrounding project is itself an AI-powered tool. It underscores a paradox increasingly visible across tech discourse in 2025-2026: audiences are simultaneously eager to adopt AI-built software and increasingly hostile to AI-mediated communication about it, forcing builders to authentically hand-write their own outreach even as they automate everything else. For a tool explicitly designed to combat unverified claims and misinformation, this tension around authenticity and trust — both in the tool's outputs and in its human promotion — feels especially pointed, and speaks to the broader challenge facing AI-native products: technical capability alone doesn't guarantee community acceptance if the surrounding presentation triggers skepticism about authenticity.
Read original article →