frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

What's the deal with "age verification" and computers?

https://rudd-o.com/linux-and-free-software/what-is-going-on-with-age-verification-in-computers
1•Magnusmaster•1m ago•0 comments

Show HN: BottomUp – Translate messy thinking into AI-ready prompts

https://www.bottomuptool.com/
1•claythedesigner•1m ago•0 comments

SPA vs. Hypermedia: Real-World Performance Under Load

https://zweiundeins.gmbh/en/methodology/spa-vs-hypermedia-real-world-performance-under-load
1•todsacerdoti•2m ago•0 comments

Steve Jobs predicted "vibe coding" in 1997 [video]

https://twitter.com/musaabHQ/status/1582671928271118337
1•mba_lmh•2m ago•0 comments

Brain Computer Interfaces Are Now Giving Sight Back to the Blind

https://garryslist.org/posts/brain-computer-interfaces-are-now-giving-sight-back-to-the-blind
2•magoghm•3m ago•0 comments

Show HN: Hatice – Autonomous Issue Orchestration with Claude Code Agent SDK

https://github.com/mksglu/hatice/tree/main
1•mksglu2•3m ago•0 comments

Show HN: Free salary converter with 3,400 neighborhood comparisons in 182 cities

https://salary-converter.com/
2•jay7gr•4m ago•0 comments

The Quran's 950-Years of Noah Echoes the Ages of Kings in the Sumerian King List

https://mystudentfailedtheirmid.substack.com/p/if-muslims-accept-noahs-950-years
1•darkhorse13•7m ago•0 comments

More Is Different for Intelligence

https://fulcrumresearch.ai/2026/03/05/more-is-different-for-intelligence.html
2•etherio•8m ago•0 comments

What if CLIs exposed machine-readable contracts for AI agents?

https://github.com/sonde-sh/sonde
1•valentinprgnd•10m ago•1 comments

The Monk at the Cocktail Party

https://www.sebs.website/the-monk-at-the-cocktail-party
1•Incerto•10m ago•0 comments

Weather Report #1

https://at-news.leaflet.pub/3mgg7ie7tdk2o
2•Kye•11m ago•0 comments

A Million Simulated Seasons [video]

https://www.youtube.com/watch?v=Vv9wpQIGZDw
1•carlos-menezes•11m ago•0 comments

Incrementally parsing LLM Markdown streams on server/client

https://github.com/nimeshnayaju/markdown-parser
1•nayajunimesh•11m ago•1 comments

Show HN: Kula – Lightweight, self-contained Linux server monitoring tool

https://github.com/c0m4r/kula
2•c0m4r•12m ago•0 comments

Show HN: Cross-Claude MCP – Let multiple Claude instances talk to each other

https://github.com/rblank9/cross-claude-mcp
2•rblank9•12m ago•0 comments

Poll

2•consumer451•13m ago•1 comments

I'm 60 years old. Claude Code has ignited a passion again

5•shannoncc•14m ago•1 comments

SYNX – a config format that parses 67× faster than YAML, built for AI pipelines

https://github.com/kaiserrberg/synx-format
2•Kaiserrberg•14m ago•0 comments

All of this refugee case's filings should be online

https://www.lawdork.com/p/law-dork-objection-refugee-case
1•hn_acker•16m ago•1 comments

Plasma Bigscreen – 10-foot interface for KDE plasma

https://plasma-bigscreen.org
18•PaulHoule•20m ago•3 comments

GitHub appears to be hiding repo stars for signed-out users

3•ramoz•23m ago•1 comments

Garrett Langley of Flock Safety on building technology to solve crime

https://cheekypint.substack.com/p/garrett-langley-of-flock-safety-on
1•hhs•23m ago•0 comments

Kafka 101

https://highscalability.com/untitled-2/
1•medbar•23m ago•0 comments

Show HN: MCP server that finds dev tool credits in your workflow

1•janaksunil•25m ago•0 comments

Helix: A post-modern text editor

https://helix-editor.com/
5•doener•26m ago•0 comments

Turns out making games is the easy part

2•clamlotus•27m ago•1 comments

Show HN: A governance pattern for self-evolving AI skills

https://github.com/191341025/Self-Evolving-Skill
1•tiansenxu•28m ago•0 comments

Follow-Up: Build Awesome's Kickstarter Is Cancelled

https://brennan.day/build-awesomes-kickstarter-is-cancelled/
2•brennanbrown•29m ago•0 comments

London tech ecosystem map (235 companies)

https://www.londonmaxxxing.com/
2•birdmania•29m ago•1 comments
Open in hackernews

Security Scanner for Agent Skills

https://github.com/cisco-ai-defense/skill-scanner
2•mooreds•5h ago

Comments

rodchalski•2h ago
Static analysis for skills is the right starting point, and the README is honest about the limits: no findings ≠ no risk.

The gap worth designing around: scanning catches code-level patterns before deployment; it doesn't constrain what a skill can do with its tool-call authority once it's running.

A skill that passes the scanner can still call any tool the agent has access to. If that means read/write to the filesystem, external API calls, or spawning subprocesses — the scanner cleared it, but the blast radius is still wide.

The pairing that closes the loop: explicit scopes at the execution boundary. Not "this skill looks clean," but "this skill is authorized to touch these specific tools and nothing else." Runtime enforcement, not just pre-deploy analysis.

The two aren't competing — scanner + scoped execution is defense in depth. Nice work from the Cisco team.