frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Nasiba

https://www.nasiba.co/
1•paul91zz•35s ago•0 comments

You can now predict anything bruh

https://www.onemarkos.com/p/prior-chat-predictive-intelligence
1•onemarkos•1m ago•0 comments

Intelligent Terminal 0.2.2572: Faster, Smoother, and More Reliable

https://devblogs.microsoft.com/commandline/intelligent-terminal-0-2-25-performance-reliability/
1•ibobev•1m ago•0 comments

Missouri governor orders guardrails on Flock cameras and ALPRs

https://www.stlpr.org/news-briefs/2026-09-16/flock-cameras-guardrails-missouri-kehoe
1•lenerdenator•1m ago•0 comments

Ask HN: What would you include in an academic workshop on vibe coding?

1•cximenez•3m ago•0 comments

How not to solve Jane Street's ASIC puzzle. Kinda

https://www.babush.me/how-not-to-solve-jane-streets-asic-puzzle.html
1•babush•3m ago•0 comments

Show HN: Real-Time Bluesky Post Firehose in < 256MB

https://turbolytics.io/demos/bluesky/
1•dm03514•4m ago•1 comments

Signal releases phonenumber-less signups in beta

https://community.signalusers.org/t/beta-feedback-for-the-upcoming-android-8-28-release/76457
1•dherls•6m ago•1 comments

Show HN: MCPJam - the first testing & evaluations platform for MCP servers

https://www.mcpjam.com
2•prathmeshmcp•6m ago•0 comments

Show HN: Key Jump – jump to search results by pressing 1,2,3

https://chromewebstore.google.com/detail/key-jump/bniglipeipioplnfjikdkjakllkgjidm
1•techsin101•9m ago•0 comments

Getting rid of bad habits without suffering, without clinics, more effective

https://neo.miniproject.fyi
1•Neopsy•10m ago•0 comments

ChatGPT for Word, Excel and PowerPoint

https://chatgpt.com/apps/word/
1•vertigoruntime•10m ago•1 comments

Show HN: Pi-jev-auto-mode – a probability model gates Pi's shell commands

https://github.com/jomatsu/pi-jev-auto-mode
1•jomatsu•12m ago•0 comments

Inside OpenAI’s agentic software factory

https://newsletter.pragmaticengineer.com/p/openai-software-factory
1•gfortaine•12m ago•0 comments

Don't Just Say Hello

https://nohello.net/en/
8•ninju•13m ago•0 comments

Saturn's South Pole Features Newly Formed Atmospheric Decagon

https://www.universetoday.com/articles/saturns-south-pole-features-newly-formed-atmospheric-decagon
1•Betelbuddy•14m ago•0 comments

256GB Mac Mini is too small. You need Elbowroom

https://tomjohnell.com/your-256gb-mac-mini-is-too-small-you-need-elbowroom/
2•tjohnell•14m ago•1 comments

AI could create a 'silicon species' that rivals humans, Microsoft chief warns

https://www.euronews.com/next/2026/09/17/ai-could-create-a-silicon-species-that-rivals-humans-mic...
3•devonnull•15m ago•0 comments

Migrating the GitHub Copilot Runtime to Rust, Using Copilot

https://github.blog/ai-and-ml/generative-ai/migrating-the-github-copilot-runtime-to-rust-using-co...
1•mring33621•15m ago•0 comments

Show HN: Telly, talk to your Mac and it does the clicking

https://www.hey-telly.com/
1•mrutopia•16m ago•1 comments

More Kiwis taking 'hands off' approach with self-driving technology

https://www.rnz.co.nz/news/science-and-technology/1447009/more-kiwis-taking-hands-off-approach-wi...
3•billybuckwheat•17m ago•0 comments

Robots are asking for tips. But who gets the money?

https://www.bbc.com/future/article/20260818-do-you-have-to-tip-the-robots
5•ent101•17m ago•1 comments

Typesafe's Jev is the fish at the poker table

https://backnotprop.com/blog/jev-poker/
2•ramoz•18m ago•0 comments

DuckDB Queries Inside MySQL

https://villagesql.com/blog/duckdb/
1•deesix•20m ago•1 comments

Monobloc Chair

https://en.wikipedia.org/wiki/Monobloc_(chair)
2•ginko•20m ago•0 comments

Novgraph: Knowledge graph for codebases that saves you 99% percent tokens

1•Shourya_55•20m ago•0 comments

What happens when you send a message to an LLM (the API call explained)

https://heymeraki.substack.com/p/aie_20-inside-the-llm-api-call
1•heyy-meraki•20m ago•1 comments

When Software Outlives Its Reasons (Philosophical Essay)

https://papers.ssrn.com/sol3/papers.cfm?abstract_id=6761138
1•camilochs•21m ago•0 comments

KIDS Act

https://digital-strategy.ec.europa.eu/en/policies/kids-act
3•Betelbuddy•23m ago•0 comments

Play Hamster Inn Game Now: Build Your Dream Hotel

https://hamster-inn-game.pages.dev/posts/hamster-inn-game/
1•klklkjlk•24m ago•0 comments
Open in hackernews

Show HN: Linting 216 public Claude Code skills – 69% won't reliably trigger

https://skillcrossroads.com
1•sgharlow•1h ago
I built a linter for Claude Code artifacts (skills, subagents, slash commands, .mcp.json configs, and plugins) and then pointed it at a pile of public repos to see what people actually ship. A few of the numbers surprised me enough that I wrote them up.

The one that stuck: across 87 public subagents, 57% (50 of 87) declare no `tools` list at all. That reads like a safe default, but it's the opposite. A subagent with no `tools` inherits the caller's entire toolbox, Bash included. Permission prompts still gate execution, but a worker you meant to "just read code" now carries the grant surface to run shell — the opposite of least-privilege. Add 16 more that grant bare `Bash` and 8 that grant a wildcard, and 85% of the sample isn't least-privilege.

Other findings from the two scans:

- Of 215 public skills scored for triggering, 69% have a `description` that won't reliably trigger (40% outright unlikely to fire, 28% borderline). "My skill never fires" is the #1 real-world failure, and it hides in one frontmatter line. - 83% of subagents (72 of 87) lack invocation cues ("use when…") in their description. - 1 of 216 skills, and 0 of 87 subagents, pass every check cleanly. Almost everyone got secrets right: only 6 of 216 skills tripped the scanner.

How it works: mostly pure, deterministic checks that emit file:line evidence ("SKILL.md:14 links ./references/converter.md, not found"). An optional LLM check (bring your own key) judges whether a description will actually trigger. The CLI is free (`npx skillcrossroads ./my-skill`), there's a GitHub Action that gates PRs, and it's open-core: the public audits are free, money is a hosted Pro tier.

Limits: the two reports ran different editions (skills on rubric v1.2 with the LLM checks, agents on v1.2 deterministic-only), both labeled, tree SHAs pinned, reproduction commands published. The rubric is strict on purpose, and every finding carries file:line evidence you can check against the artifact itself. The sample is 216 skills across 18 repos and 123 agents/commands (87 subagents + 36 commands) across 10 repos, caps disclosed, and you can re-run it on your own repos.

Reports: https://skillcrossroads.com/report?ref=hn-show and https://skillcrossroads.com/report-agents?ref=hn-show Code: https://github.com/sgharlow/skillcrossroads