Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Extract all comments from a Google Sheet
    discuss
  2. Show HN: I made Niri-like terminal colm (cmux alternative)(colm.sh ↗)
    discuss
  3. NASA-IBM Lunar Foundation open-Source Geospatial AI Model(usra.edu ↗)
    discuss
  4. Show HN: Seal – Letters and passwords that open for your family after you die(github.com/jasonepage ↗)
    discuss
  5. A Black-Box Audit of Provider-Side Token Inflation in LLM Services(arxiv.org ↗)
    discuss
  6. San Francisco Onion Futures Company(onionfutures.com ↗)
    6comments
  7. OpenLoco Version 26.09 Released(openloco.io ↗)
    discuss
  8. Show HN: A static reference for 5,142 supplement interactions(uppervoid.app ↗)
    discuss
  9. Brownie Mary(wikipedia.org ↗)
    discuss
  10. Prompts are not deleted – they are just hidden(medium.com/istokovicsgyorgy79 ↗)
    discuss
  11. Harm Laundering in GPT Models: Gender Discrimination Transformed Rather Than(arxiv.org ↗)
    discuss
  12. Vibe coding did not kill making money out of engineering, open source and SaaS(i18n-keyless.com ↗)
    2comments
  13. Virtual Memory: Page Tables, TLBs, and Linux Internals(codingconfessions.com ↗)
    discuss
  14. Isomorphic Collapse of Primorial Modulus- Bypassing Arithmetic in Cryptanalysis(zenodo.org ↗)
    discuss
  15. Dashes suggest which model you're copy-pasting from(will-keleher.com ↗)
    1comments
  16. USB 3 Speeds Come to a Non-Pro iPhone(pxlnv.com ↗)
    1comments
  17. Reality Is the Final Verifier: On Two Key Gaps in Agentic Software Engineering(arxiv.org ↗)
    discuss
  18. The Destruction of the Scottish Canon(asteriskmag.com ↗)
    1comments
  19. OpenAI expects to burn $280B by 2030(ft.com ↗)
    discuss
  20. Left Brain, Right Brain: Facts and Fantasies(nih.gov ↗)
    discuss
  21. Static site generator for Ghost CMS(github.com/simonmo88 ↗)
    discuss
  22. Teaching Fractions According to the Common Core Standards(2011) [pdf](math.berkeley.edu ↗)
    discuss
  23. Why You Can't Overcook Mushrooms and the Science Behind Them [video](youtube.com ↗)
    discuss
  24. Bringing Back Caesar IV Online(xetera.dev ↗)
    discuss
  25. Inventor of ChatGPT and RLHF Launches Typesafe.ai(techcrunch.com ↗)
    discuss
  26. NASA's Moon Orbiter Spots New, 'Once-in-Century' Moon Crater(nasa.gov ↗)
    discuss
  27. Executive order on H-1B nonimmigrant visa administration(whitehouse.gov ↗)
    13comments
  28. A more sober look at the HuggingFace incident(wsj.com ↗)
    discuss
  29. AI Regulation and the China Question(casssunstein.substack.com ↗)
    1comments
  30. ASI risk debate with Nate Soares [video](youtube.com ↗)
    discuss

Why my alert triage workflow needed a CLI

2 pointsby 4h agopowers.dev
1 comments
4h agoHN ↗

I'm not sure what you're doing differently, but I just created a Claude skill called /triage-alert -- All I have to do is basically call /triage-alert without any arguments, or if I want to, paste a specific alert that happens to be firing.

The Skill itself basically is a 6-step process and a simple contract with some guardrails:

(1) identify the alert, (2) size the problem, (3) find the signature in metrics and logs, (4) test the leading hypothesis against a second source until it is confirmed or dead, (5) write the finding + plan, (6) AskUserQuestion for the decision, (7) implement via the sibling skill and verify, (8) update memory if the cause was new.

There'a 3 scripts to automate some of the tasks so that they are deterministic and 3 data sources as references as well as MCP servers it has access to for metric, logs and alerting sources.

That's it. It not only diagnoses the problem every time, correctly, but also figures out what went wrong, and why, and proposes how to fix the underlying causes.

I then have a follow up skill called /incident-postmortem that writes up a full incident report and post-mortem for the next time to learn from and feed back into the system -- Which is basically Claude's own memory over time.