Live data from Hacker News

Viewing profile — yuvrajangads

yuvrajangads

HN member
Joined
Thu, Feb 05, 2026, 6:36 AM UTC
HN karma
13
Public activity
17 items

About yuvrajangads

No profile information was provided.

Recent public activity

  1. story
  2. story
  3. story
  4. comment
    Comment #47703405

    i had the same problem and built something similar but with a different approach. greens ( https://github.com/yuvrajangadsingh/greens ) is a CLI that runs locally on your machine. …

  5. story
  6. story
  7. comment
    Comment #47437520

    fair point on regex being brittle for edge cases. it works well for the obvious patterns (empty catches, bare excepts, hardcoded secrets) but yeah it wont catch everything. for vib…

  8. comment
    Comment #47437517

    yeah that makes sense. regex catches the surface-level stuff fast, but logic bugs and spec drift need something smarter. the AI layer on top of deterministic checks is a good appro…

  9. comment
    Comment #47437429

    I kept writing the same boilerplate to call embedding APIs from scripts. Wanted something like httpie but for embeddings. vemb wraps Gemini Embedding 2, which is the first model th…

  10. story
  11. story
    Show HN: Vibecheck – lint for AI-generated code smells (JS/TS/Python)

    I built a CLI that detects patterns AI coding tools leave behind: empty catch blocks, hardcoded secrets, as any everywhere, comments that restate the code, god functions, SQL conca…

  12. comment
    Comment #47218492

    Fair point about web fetch already being a trust boundary. The difference I see is that web fetch returns data, but WebMCP tools can define actions. A tool called "add_to_cart" is …

  13. comment
    Comment #47218296

    Nice, similar energy to lazygit but as a single binary. The AI commit message generation is useful but I'd want a way to set a template or convention (conventional commits, etc.) s…

  14. comment
    Comment #47217190

    I've been using MCP with Claude Code for a while now (Google Maps, Swiggy, Figma servers) and the local tool-use model works well because I control both sides. I pick which servers…

  15. comment
    Comment #47217075

    The session itself is mostly noise. Half of it is the model going down wrong paths, backtracking, and trying again. Storing that alongside the commit is like saving your browser hi…

  16. story
    Show HN: Greens – mirror private GitHub activity to your public graph

    I built greens because most of my day-job work is in private org repos, so my public GitHub graph looked inactive. The tool runs locally, scans repos you choose in read-only mode, …

  17. story
    Show HN: Mirror private work contributions to your GitHub profile

    I work on private repos all day but my GitHub profile showed empty squares. Built a tool to fix it. Mirrors commit timestamps (not code) to a public repo. Also tracks PRs, reviews,…