frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Why Agents Suck at Authentication: `auth-services-skills` vs. Reality

https://skilldb.dev/blog/why-agents-suck-at-authentication-auth-services-skills-vs-reality
1•dev_chad•2m ago•0 comments

Dune II, RTS on C64 [video]

https://www.youtube.com/watch?v=smiQnlbqpKw
1•schyzomaniac•7m ago•2 comments

GitHub issues $100k bounty for critical RCE vulnerability

https://runtimewire.com/article/github-issues-100-000-bounty-for-critical-rce-vulnerability-discl...
2•update•11m ago•1 comments

Run large language models at home, BitTorrent‑style

https://petals.dev/
2•snorbleck•12m ago•0 comments

Why Stanford Students Walked Out on Sundar Pichai's Commencement Speech

https://www.wired.com/story/big-interview-stanford-students-booing-sundar-pichai/
1•1vuio0pswjnm7•15m ago•1 comments

Ask HN: Will AI assistants become photorealistic video?

2•general_reveal•17m ago•0 comments

Ask HN: How to make AI better at writing prose?

1•remywang•18m ago•0 comments

Show HN: The latest and most advanced version of Adsense, sponsored by Google

https://www.3emalak.com/2026/07/get-adsense-approval-after-rejection.html
1•omeraliamm•20m ago•0 comments

Own the Loop: A Field Guide to Agent Harnesses

https://twitter.com/aparnadhinak/status/2073079029624943040
2•gmays•24m ago•1 comments

Supply chain will eventually be cyberattacked

https://medium.com/@vektormemory/your-supply-chain-will-eventually-be-cyberattacked-fb556d7d5008
1•vektormemory•24m ago•0 comments

De-complect: Skill to remove braided complexity from projects

https://github.com/danverbraganza/de-complect
2•nvader•25m ago•0 comments

Show HN: Grimoire – Best Practices for Everyone Installed for Your AI Agents

https://github.com/jeffreytse/grimoire
1•jeffreytse•26m ago•0 comments

House passes NDAA 216–212 to integrate Israel and US militaries

https://twitter.com/DropSiteNews/status/2080043694804312106
3•slowin•26m ago•0 comments

OpenAI's accidental cyberattack against Hugging Face is science fiction

https://simonwillison.net/2026/Jul/22/openai-cyberattack/
2•abhisek•29m ago•0 comments

Protecting our FLOSS commons from LLMs

https://blog.codeberg.org/protecting-our-floss-commons-from-llms.html
2•acmnrs•30m ago•0 comments

Show HN: LitigationBench. A Litigation Task-Based AI Benchmark

https://litco.ai/litigationbench
1•ybathaee•34m ago•0 comments

Durable Objects Are Made for Agents

https://calv.info/durable-objects-are-made-for-agents
2•bretthoerner•34m ago•0 comments

China advances plans for single-stack IPv6 network, and surveillance-version

https://www.theregister.com/networks/2026/07/22/china-advances-plans-for-national-single-stack-ip...
2•Cider9986•34m ago•1 comments

Does It Take 4k API Calls to Score a Long Essay?

https://willpenman.com/4000-queries-to-4.html
1•wpenman•36m ago•0 comments

Programming experience is no longer a moat

https://kyrylo.org/software/2026/07/22/programming-experience-is-no-longer-a-moat.html
2•skellertor•37m ago•0 comments

Codeberg Bans Cryptocurrency Projects

https://codeberg.org/Codeberg/org/pulls/1254
2•intunderflow•38m ago•0 comments

The Microsoft Agent Framework Harness is now released

https://devblogs.microsoft.com/agent-framework/the-microsoft-agent-framework-harness-is-now-relea...
2•ms7892•39m ago•0 comments

Google fixing Android lock screen bug that lets Gemini send SMS without a PIN

https://www.theregister.com/security/2026/07/17/google-fixing-android-lock-screen-bug-that-lets-g...
1•Cider9986•39m ago•1 comments

Curl Noise

https://emildziewanowski.com/curl-noise/
2•kg•41m ago•1 comments

Model Routing Is Task Specific

https://twitter.com/jerryjliu0/status/2077537847951945742
1•gmays•41m ago•0 comments

Wikipedia for Mundane People and Events

https://minipedia.org/
2•eastoeast•42m ago•1 comments

Show HN: I built a scraping engine where the LLM writes configs, not code

https://github.com/PxyUp/fitter
1•pyxru•42m ago•0 comments

Theory of Instruction Is an Algebra

https://twitter.com/bjornpagen/status/2080087578322116673
2•bjornpagen•46m ago•1 comments

Mage-Flow: Efficient Native-Resolution Foundation Model for Image Generation

https://microsoft.github.io/Mage/flow/
2•macote•47m ago•0 comments

Jujubi alpha: a local-first code forge for small teams

https://juju.bi/changelog/2026-07-01-alpha-release
1•pksunkara•50m ago•0 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!