frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

After OpenAI's Bots Went Rogue, Watchdogs Were Kept on a Short Leash

https://www.nytimes.com/2026/09/03/technology/openai-hugging-face-hack.html
1•whack•43s ago•0 comments

Hilarious House of Frightenstein[Nostalgia]

https://www.frightenstein.com/castcrew.html
1•rolph•4m ago•0 comments

John Brown and the question of righteous violence

https://thedispatch.com/article/john-brown-harpers-ferry-slavery/
1•cocacola1•7m ago•0 comments

Hegel-Rust OSS bug-finding

https://github.com/DRMacIver/hegel-rust-oss-bug-finding
1•wwilson•15m ago•0 comments

Elastic Cloud (Public) Status – Replication bug causing slow recoveries

https://status.elastic.co/incidents/l6zgdnvvg41j
2•kyisaiah47•16m ago•0 comments

Book Review: The Tale of Genji

https://www.astralcodexten.com/p/your-book-review-the-tale-of-genji
2•paulpauper•18m ago•0 comments

Solving Chess

https://en.wikipedia.org/wiki/Solving_chess
1•nomilk•20m ago•0 comments

Tell HN: The Thoughts and Woes of a Full-Time Founder Part 2

1•lcampbellsoup•21m ago•0 comments

Ask HN: What is your biggest career regret?

3•eudamoniac•23m ago•0 comments

Noxe – P2P chat over Tor with no central server

https://github.com/Donzaaa/Noxe/releases/tag/v1.0.0
1•donzauker•32m ago•1 comments

Microsoft announces monthly hour usage limits for Xbox game pass

https://news.xbox.com/en-us/2026/09/03/xbox-cloud-gaming-changes/
4•walrus01•33m ago•1 comments

Burry Calls Palantir a Consulting Firm in Disguise, Warns of Valuation Collapse

https://www.foreignpolicyjournal.com/2026/09/04/michael-burry-calls-palantir-nasdaq-pltr-a-consul...
3•mgh2•33m ago•0 comments

Agent status in the SD Card slot

https://sidepulse.io/sidepulse.html
2•pkuhar•37m ago•1 comments

Uia-reader – read Windows UI content instead of screenshotting it

https://github.com/thomiasj/uia-reader
2•thomiasj•38m ago•0 comments

Nitter has more working instances than before the takedowns

https://codeberg.org/mv12star/shitter/wiki/Instances
4•Cider9986•39m ago•0 comments

Artificial Analysis Intelligence Index v4.2

https://artificialanalysis.ai/articles/artificial-analysis-intelligence-index-v4-2
13•nojs•39m ago•0 comments

Reversing MikroTik's Silent Patch: The RouterOS 7.23.4 Fix They Wouldn't Explain

https://npratley.net/reversing-mikrotiks-silent-patch-the-routeros-7-23-4-fix-they-wouldnt-explain/
3•ytch•40m ago•0 comments

Ask HN: Initial Thoughts on GPT-6 Astra?

3•zof3•41m ago•1 comments

GPT-6 Astra is now out to all Plus, Business, Pro, and Enterprise users

https://twitter.com/sama/status/2096008528834244741
4•tedsanders•45m ago•0 comments

The White House is making arcade games racist

https://www.theverge.com/policy/990520/trump-arcade-games-maga-copyright
8•OxO4•48m ago•2 comments

Show HN: Personal Context MCP

https://lanes.sh/showcase/personal-context-mcp
4•s-xyz•48m ago•0 comments

Show HN: Agent-to-agent payment. Your agents can pay each other

https://openspender.com/agent-to-agent
6•firatcan•49m ago•1 comments

GPT-6 Astra on Vercel AI Gateway

https://vercel.com/ai-gateway/models/gpt-6-astra
3•brbcoding•52m ago•0 comments

Show HN: Moadim.io – A scheduler for agents

https://moadim.io/
4•tupe12334•53m ago•0 comments

Why wait? Business grads buying firms to install themselves as CEO

https://www.bbc.com/news/articles/czxqpqrzq01o
4•BiraIgnacio•1h ago•0 comments

Portal by Spotify cut my Claude Code token usage by 90%

https://engineering.atspotify.com/2026/9/portal-by-spotify-cut-my-claude-code-token-usage-by-90
16•cebert•1h ago•1 comments

Ask HN: What's Going on with Web.archive.org

3•1vuio0pswjnm7•1h ago•0 comments

Apple's iPhone Event Early [video]

https://www.youtube.com/watch?v=4nC_YTAVmls
2•Cider9986•1h ago•0 comments

Build your own benchmark masterclass

https://www.youtube.com/watch?v=IUmomwsgRN0
2•rvialep•1h ago•0 comments

The Decade of Decline in Seattle Public Schools

https://www.educationprogress.org/p/the-decade-of-decline-in-seattle
4•barry-cotter•1h ago•1 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•1y 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!