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

推荐订阅源

P
Proofpoint News Feed
U
Unit 42
V
Visual Studio Blog
D
DataBreaches.Net
F
Fortinet All Blogs
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
The GitHub Blog
The GitHub Blog
Y
Y Combinator Blog
月光博客
月光博客
大猫的无限游戏
大猫的无限游戏
T
The Blog of Author Tim Ferriss
GbyAI
GbyAI
博客园 - 叶小钗
Blog — PlanetScale
Blog — PlanetScale
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
MongoDB | Blog
MongoDB | Blog
The Cloudflare Blog
云风的 BLOG
云风的 BLOG
D
Docker
G
Google Developers Blog
罗磊的独立博客
博客园 - 三生石上(FineUI控件)
小众软件
小众软件
S
SegmentFault 最新的问题

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
GitHub - AdrianKrebs/ai-design-checker: A tool to score w...
hubraumhugo · 2026-05-06 · via Hacker News: Show HN

A tool to score any website for common AI design patterns. Basis for the blog post and the HN discussion "Scoring Show HN submissions for AI design patterns".

The scorer loads each site in a headless browser, analyzes the DOM, and reports which of 16 deterministic AI design patterns are found. Manual verification across ~150 labeled sites suggests ~5–10% false positives. Still, take it with a grain of salt :)

Browseable results report — tier filters, pattern frequency, and a card grid of every analyzed site

Install & run

git clone https://github.com/AdrianKrebs/ai-design-checker
cd ai-design-checker && npm install

node cli.js https://news.ycombinator.com/
https://news.ycombinator.com/
Clean · score 0/100 · 0/16 patterns
https://engagemii.com/aeo
Heavy · score 38/100 · 6/16 patterns

Triggered:
  • Vibe purple
  • Gradients
  • Perma dark
  • 1·2·3 steps
  • Eyebrow pill
  • FAQ

--json for machine-readable output. Requires Node 18+.

To update an existing clone, git pull from inside the directory.

Run the full corpus

For batch analysis (e.g. the bundled urls.txt with ~1000 Show HN posts) — same install as above, then:

npm run analyze                      # sequential, ~100 min for 1k URLs
node src/run.js --concurrency=4      # 4 parallel, ~25 min, ~600 MB RAM
node src/run.js --skip-existing      # only fetch URLs not yet cached

Results go to results/:

  • results/raw/<slug>.json — per-URL signals + score
  • results/screenshots/<slug>.png — full-page screenshot
  • results/all-results.json — all scored entries combined

Patterns

# Pattern Tell
1 Templated fonts Space Grotesk, Instrument Serif, Geist, Syne — fine in isolation, default-stack tell
2 Centered hero H1 centered + Inter as primary font
3 VibeCode purple Filled violet/indigo CTAs
4 Perma dark Dark template, or muted grey body text on dark
5 All-caps headings ≥ 3 uppercase H-tags
6 Gradients linear/radial/conic-gradient + background-clip: text
7 Colored glow Saturated box-shadow blur ≥ 15 px
8 Eyebrow pill Small badge above the H1
9 Accent stripe Colored left/top stripe on a card with a heading
10 Icon-card grid 3–12 cards: icon-in-badge + title + blurb
11 Numbered steps "1·2·3" digits in styled badges
12 Stat banner "10K+ users · 99.9% uptime · 4.9★"
13 FAQ accordion "Frequently asked questions" with ≥ 3 Q/A items
14 Emoji nav ≥ 40 % of nav links prefixed with an emoji
15 shadcn signature CSS vars (--background), data-slot, Lucide, Radix attrs
16 Glassmorphism backdrop-filter: blur(...) on a translucent panel

The full rule for each pattern lives in src/patterns/<id>.js.

Score

score = round(100 × patternsFlagged / patternsTotal)
tier  = ≥5 Heavy · 2–4 Mild · 0–1 Clean

Tools

npm run scan      # → http://localhost:7788  paste a URL, see verdict
npm run label     # → http://localhost:7777  label sites for ground truth
npm run eval      # precision / recall vs dataset/labels.jsonl (165 labels shipped)
npm run report    # generate results/index.html — browsable tier-filtered grid
npm run fetch     # pull the latest 100 Show HN URLs into urls.txt

The scan UI launches a real browser per URL, so the first scan after starting the server is slower. The label UI lets you mark each pattern present / not_present / skip; saves are appended to dataset/labels.jsonl. The eval script compares the detector's verdict against those labels.

Adding a pattern

Drop a file in src/patterns/<id>.js and append it to the list in src/patterns/index.js. Each pattern exports { id, label, shortLabel, description, category, thresholds, extract(ctx), score(signal, T) }. extract is serialized via Function.prototype.toString() and runs in the browser — keep it self-contained (only reference ctx.*, no closures, no imports). score runs in Node and returns { triggered: true/false, evidence: ... }.

License

MIT.