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

推荐订阅源

S
SegmentFault 最新的问题
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
B
Blog RSS Feed
Y
Y Combinator Blog
T
Tailwind CSS Blog
博客园 - 三生石上(FineUI控件)
J
Java Code Geeks
Stack Overflow Blog
Stack Overflow Blog
aimingoo的专栏
aimingoo的专栏
Jina AI
Jina AI
The GitHub Blog
The GitHub Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
A
About on SuperTechFans
H
Hackread – Cybersecurity News, Data Breaches, AI and More
D
Docker
酷 壳 – CoolShell
酷 壳 – CoolShell
C
Check Point Blog
M
MIT News - Artificial intelligence
Last Week in AI
Last Week in AI
V
V2EX
腾讯CDC
F
Fortinet All Blogs
博客园 - 叶小钗
T
The Blog of Author Tim Ferriss

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
GitHub - AdrianKrebs/ai-design-checker: A tool to score w...
hubraumhugo · 2026-05-06 · via Hacker News - Newest: "AI"

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.