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

推荐订阅源

爱范儿
爱范儿
量子位
大猫的无限游戏
大猫的无限游戏
小众软件
小众软件
J
Java Code Geeks
B
Blog
V
V2EX
博客园 - 三生石上(FineUI控件)
Blog — PlanetScale
Blog — PlanetScale
aimingoo的专栏
aimingoo的专栏
Y
Y Combinator Blog
F
Fortinet All Blogs
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
The Cloudflare Blog
A
About on SuperTechFans
D
DataBreaches.Net
阮一峰的网络日志
阮一峰的网络日志
博客园 - Franky
H
Help Net Security
宝玉的分享
宝玉的分享
Martin Fowler
Martin Fowler
酷 壳 – CoolShell
酷 壳 – CoolShell
MongoDB | Blog
MongoDB | Blog
L
LangChain Blog

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 - latitude-dev/eval-skills: LLM eval skills for de...
paulaq · 2026-04-23 · via Hacker News - Newest: "AI"

A collection of skills for developers building with LLMs.

Each skill gives you a structured workflow for finding failure patterns, building evals, and validating that your evals actually work.

Recommended workflow

These skills are designed to be used in order. Each step builds on the previous one.

1. llm-annotation-guide        ← Start here. Build a rubric and annotate your production logs.
2. llm-issue-discovery          ← Find and cluster failure patterns from your annotations.
3. llm-eval-type-selector       ← For each issue, decide: rule or judge?
4. llm-judge-creator            ← Build judge prompts for the issues that need one.
5. llm-judge-alignment          ← Validate your judges against human-labeled examples.
6. llm-golden-dataset-builder   ← Curate passing traces into a golden dataset for regression testing.
7. llm-regression-runner        ← Run the golden dataset before every prompt change.

You don't have to follow this order strictly — if you already have annotated logs or a clear issue list, jump in at the right step. But if you're starting from scratch, annotations come before issue discovery. Human judgment is what grounds everything else.

Meta-skills — use these at any point:

  • llm-evals-checklist — before you start building evals, check you have the right foundation
  • llm-evals-audit — after building evals, check they're healthy and well-targeted

Skills

Skill What it does Status
llm-annotation-guide Build an annotation rubric or review existing annotations for quality Available
llm-issue-discovery Find and cluster failure patterns in LLM outputs Available
llm-eval-type-selector Decide whether to use a judge or a rule-based eval Available
llm-judge-creator Build LLM-as-a-judge prompts from issues or annotations Available
llm-judge-alignment Validate how well a judge aligns with human judgment Available
llm-evals-checklist Pre-build check: are you ready to build good evals? Available
llm-evals-audit Post-build check: are your existing evals healthy and well-targeted? Available
llm-golden-dataset-builder Curate passing traces into a golden dataset for regression testing Available
llm-regression-runner Run a golden dataset against your prompt, get a pass/fail report Available

Install

Option 1 — Claude Code plugin (recommended):

/plugin marketplace add latitude-dev/eval-skills
/plugin install eval-skills@latitude-dev-eval-skills

To upgrade:

/plugin update eval-skills@latitude-dev-eval-skills

Option 2 — npx skills CLI:

npx skills add https://github.com/latitude-dev/eval-skills

Install a single skill only:

npx skills add https://github.com/latitude-dev/eval-skills --skill llm-issue-discovery

Check for updates:

npx skills check
npx skills update

About

These skills package the methodology behind Latitude - an AI observability platform that helps dev teams find, track, and fix what's breaking in their AI before users notice.