frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: ROI-first AI automation framework for B2B companies

https://roihacking.ai/
1•roihacking•21s ago•0 comments

Ask HN: What benchmarks do you trust most when comparing large LLMs?

1•QubridAI•6m ago•0 comments

LLMs: Using a single Unix-style tool instead of multiple tools/function calling

https://old.reddit.com/r/LocalLLaMA/comments/1rrisqn/i_was_backend_lead_at_manus_after_building_a...
4•drtse4•11m ago•0 comments

Atlassian Is Not Collapsing – But Its Business Model Might Be

https://www.ctol.digital/news/atlassian-credibility-crisis-not-a-collapse/
1•donutshop•14m ago•0 comments

Ask HN: Resources for a conceptual model of LLMs as applicable to coding?

1•pramodbiligiri•20m ago•0 comments

Cockroach Milk: Yes. You Read That Right

https://www.npr.org/sections/thesalt/2016/08/06/488861223/cockroach-milk-yes-you-read-that-right
1•thunderbong•20m ago•0 comments

Same Chat App, 4 Frameworks: Pydantic AI vs. LangChain vs. LangGraph vs. CrewAI

https://oss.vstorm.co/blog/same-chat-app-4-frameworks/
1•kacper-vstorm•22m ago•1 comments

World Vibe Web: a distributed, open-source app store

https://wvw.dev
2•semioz•24m ago•0 comments

Country Filter for X/Twitter

https://geofilterx.com/
1•hgarg•26m ago•0 comments

Shopify/liquid: Performance: 53% faster parse+render, 61% fewer allocations

https://simonwillison.net/2026/Mar/13/liquid/
1•duck•31m ago•0 comments

Agentic, fully-automated reverse engineering

https://github.com/amruth-sn/kong
1•amruth-•34m ago•0 comments

A record number of objects went into space in 2025

https://ourworldindata.org/data-insights/a-record-number-of-objects-went-into-space-in-2023
1•jonbaer•34m ago•0 comments

National Dex

https://nationaldex.io/
2•timlang1024•35m ago•0 comments

Waller – Game that teaches the fundamentals of drystone walling

https://www.orthodoxmasonry.com/waller
1•helloplanets•36m ago•0 comments

Show HN: High-Precision Companion Matrix Root Finder

https://github.com/ratwolfzero/Poly_Root
1•ratwolf•37m ago•0 comments

Pirate Bananagrams

https://piratebanana.com/
1•hihellokath•40m ago•1 comments

Texico – Learn the principles of programming, for kids

https://www3.nhk.or.jp/nhkworld/en/shows/texico/
2•LeoPanthera•40m ago•0 comments

Ceno, browse the web without internet access

https://ceno.app/en/index.html?
1•mohsen1•41m ago•0 comments

Show HN: From Claude Code to OpenCode – My Evolution in Vibe AI Engineering

1•denis4inet•44m ago•0 comments

Hedley Davis (Amiga 3000, 3DO, Xbox, UDel prof) has died

https://www.daniels-hutchison.com/obituaries/Hedley-Combs-Davis?obId=47519295
1•pcherna•44m ago•1 comments

Private Credit's 'Back Leverage' Is Another Pain Point for Funds

https://www.bloomberg.com/news/articles/2026-03-12/private-credit-s-back-leverage-is-another-pain...
1•petethomas•44m ago•0 comments

FP-Go V2: Enhanced Functional Programming for Go 1.24

https://github.com/IBM/fp-go/blob/main/v2/README.md
1•mroche•48m ago•1 comments

ShowHN: Turn PDFs, notes and spreadsheets into business briefs

https://gixo.ai/gixo-briefs
2•hardikparikh29•51m ago•1 comments

Chrome extension adjusts video speed based on how fast the speaker is talking

https://github.com/ywong137/speech-speed
1•MrBuddyCasino•53m ago•0 comments

The Autonomous Battlefield

https://www.foreignaffairs.com/middle-east/autonomous-battlefield
3•anjel•56m ago•2 comments

I traced $2B in nonprofit grants for Meta and Age Verification lobbying

4•theseusares•57m ago•1 comments

Dwarkesh on the Anthropic situation

https://www.youtube.com/watch?v=KBPOTklFTiU
1•musha68k•57m ago•0 comments

Emergency sirens in SF won't sound alarm even during Iranian drone threat

https://www.sfgate.com/bayarea/article/emergency-siren-iran-drone-22073043.php
4•mikhael•1h ago•0 comments

Show HN: SiMM – Distributed KV Cache for the Long-Context and Agent Era

https://github.com/scitix/SiMM
1•SherryWong•1h ago•0 comments

Palantir CEO Makes Confession on Disrupting Democratic Power

https://newrepublic.com/post/207693/palantir-ceo-karp-disrupting-democratic-power
6•mindracer•1h ago•2 comments
Open in hackernews

Show HN: CodeAnt AI – AI Code Reviewer, that understand code and dependencies

https://www.youtube.com/watch?v=uprOvRUUudQ
3•Amartya_jha•10mo ago
Over the last year, we’ve been building CodeAnt AI, working closely with engineering teams struggling with code review quality and speed.

Manual code reviews are slow and repetitive. Reviews today mostly look at what changed — not what the change actually impacts. With more AI-written code, it's getting worse: bigger PRs, faster cycles, less team context.

We wanted to rethink how code reviews are done: → Build structured knowledge of the codebase → Understand infra and dependency changes → Analyze blast radius automatically at PR time

What CodeAnt AI Does (Technical Overview)

Repository Indexing and Graph Building:

When a repo is added, we index the entire codebase and build Abstract Syntax Trees (ASTs).

We map upstream and downstream dependencies across files, functions, types, and modules.

We run custom lightweight language servers for multiple languages to support:

go_to_definition to find symbol declarations

find_all_references to locate usage points

fetch_signatures and fetch_types for richer semantic context

Pull Request Analysis:

When a PR is created:

We detect the diff.

We pull relevant upstream/downstream context for any changed symbols.

We gather connected function definitions, usage sites, interfaces, and infra files touched.

The LLM invokes the language servers (almost like a developer navigating manually) to reason over this structured context, not just the raw diff.

Code Quality Analysis:

Along with AI reasoning, we layer traditional static checks inside PRs:

Detecting duplicate code patterns

Finding dead, unused code blocks

Flagging overly complex functions

Goal: Make linting + AI suggestions seamless, without needing separate tools.

Security and Infrastructure Context:

We maintain an internal curated database of application security issues, mapped to OWASP and CWE.

We run Infrastructure-as-Code (IaC) security checks across:

Terraform, Kubernetes, Docker, CloudFormation, Ansible

You can optionally connect cloud accounts (AWS, GCP, Azure):

We scan your live cloud infra for misconfigurations

We pull cloud resource context into PRs (e.g., when a Terraform PR changes a live VPC rule, we show the potential blast radius).

We monitor End-of-Life (EOL) libraries and third-party package vulnerabilities by scanning the National Vulnerability Database (NVD) every 20 minutes and flagging at PR time.

In short: We try to automate how an experienced developer would actually review a change: → Understand the code structure → Understand where it’s used → Understand how infra/cloud gets affected → Catch quality, security, and complexity issues before merge — without needing extra dashboards or tools.

Teams using CodeAnt AI have reported 50%+ faster code reviews while finding deeper and more actionable problems earlier.

Would love feedback from the HN community — both technical and critical are welcome.

Thanks for checking it out!