frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

I'm helping my dog vibe code games

https://www.calebleak.com/posts/dog-game/
403•cleak•3h ago•120 comments

Hacking an old Kindle to display bus arrival times

https://www.mariannefeng.com/portfolio/kindle/
48•mengchengfeng•1h ago•12 comments

Nearby Glasses

https://github.com/yjeanrenaud/yj_nearbyglasses
119•zingerlio•3h ago•49 comments

HuggingFace Agent Skills

https://github.com/huggingface/skills
83•armcat•3h ago•26 comments

I pitched a roller coaster to Disneyland at age 10 in 1978

https://wordglyph.xyz/one-piece-at-a-time
344•wordglyph•8h ago•127 comments

Steel Bank Common Lisp

https://www.sbcl.org/
83•tosh•2h ago•21 comments

IRS Tactics Against Meta Open a New Front in the Corporate Tax Fight

https://www.nytimes.com/2026/02/24/business/irs-meta-corporate-taxes.html
154•mitchbob•8h ago•174 comments

Manjaro website off-line again due to lapsed certificate

https://distrowatch.com/dwres.php?resource=showheadline&story=20140
13•hexagonsuns•1h ago•0 comments

I think WebRTC is better than SSH-ing for connecting to Mac terminal from iPhone

https://macky.dev
35•Sayuj01•2h ago•32 comments

Show HN: Emdash – Open-source agentic development environment

https://github.com/generalaction/emdash
45•onecommit•3h ago•19 comments

We installed a single turnstile to feel secure

https://idiallo.com/blog/installed-single-turnstile-for-security-theater
214•firefoxd•2d ago•91 comments

Build Your Own Forth Interpreter

https://codingchallenges.fyi/challenges/challenge-forth/
13•AlexeyBrin•3d ago•0 comments

Diode – Build, program, and simulate hardware

https://www.withdiode.com/
411•rossant•3d ago•91 comments

Verge (YC S15) Is Hiring a Director of Computational Biology and AI Scientists/Eng

https://jobs.ashbyhq.com/verge-genomics
1•alicexzhang•4h ago

Show HN: Chaos Monkey but for Audio Video Testing (WebRTC and UDP)

https://github.com/MdSadiqMd/AV-Chaos-Monkey
14•MdSadiqMd•1d ago•2 comments

Extending C with Prolog (1994)

https://www.amzi.com/articles/irq_expert_system.htm
48•Antibabelic•2d ago•17 comments

Open Letter to Google on Mandatory Developer Registration for App Distribution

https://keepandroidopen.org/open-letter/
277•kaplun•3h ago•205 comments

Osaka: Kansai Airport proud to have never lost single piece of luggage (2024)

https://japannews.yomiuri.co.jp/features/japan-focus/20241228-229891/
176•thunderbong•4h ago•66 comments

Samsung Upcycle Promise

https://www.xda-developers.com/samsung-promised-make-old-phones-useful-galaxy-upcycle/
154•1970-01-01•1d ago•88 comments

IDF killed Gaza aid workers at point blank range in 2025 massacre: Report

https://www.dropsitenews.com/p/israeli-soldiers-tel-sultan-gaza-red-crescent-civil-defense-massac...
692•Qem•8h ago•138 comments

OpenAI, the US government and Persona built an identity surveillance machine

https://vmfunc.re/blog/persona/
321•rzk•2h ago•98 comments

λProlog: Logic programming in higher-order logic

https://www.lix.polytechnique.fr/Labo/Dale.Miller/lProlog/
125•ux266478•3d ago•34 comments

The Missing Semester of Your CS Education – Revised for 2026

https://missing.csail.mit.edu/
342•anishathalye•1d ago•98 comments

Pentagon threatens to make Anthropic a pariah

https://www.cnn.com/2026/02/24/tech/hegseth-anthropic-ai-military-amodei
15•i4i•35m ago•4 comments

Terence Tao, at 8 years old (1984) [pdf]

https://gwern.net/doc/iq/high/smpy/1984-clements.pdf
456•gurjeet•1d ago•278 comments

Goodbye InnerHTML, Hello SetHTML: Stronger XSS Protection in Firefox 148

https://hacks.mozilla.org/2026/02/goodbye-innerhtml-hello-sethtml-stronger-xss-protection-in-fire...
296•todsacerdoti•8h ago•133 comments

OpenAI resets spending expectations, from $1.4T to $600B

https://www.cnbc.com/2026/02/20/openai-resets-spend-expectations-targets-around-600-billion-by-20...
143•randycupertino•2h ago•121 comments

Denver dumps Flock, awards contract to Axon

https://www.9news.com/article/news/local/denver-removing-flock-cameras-new-axon-contract/73-640b5...
79•therobots927•3h ago•28 comments

A distributed queue in a single JSON file on object storage

https://turbopuffer.com/blog/object-storage-queue
146•Sirupsen•3d ago•47 comments

Why High FOV Sucks – Fixing It with Panini Projection

https://www.youtube.com/watch?v=LE9kxUQ-l14
7•Eduard•42m ago•0 comments
Open in hackernews

HuggingFace Agent Skills

https://github.com/huggingface/skills
83•armcat•3h ago

Comments

daturkel•1h ago
Skills in CC have been a bit frustrating for me. They don't trigger reliably and the emphasis on "it's just markdown" makes it harder to have them reliably call certain tools with the correct arguments.

The idea that agent harnesses should primarily have their functionality dictated by plaintext commands feels like a copout around programming in some actually useful, semi-opinionated functionality (not to mention that it makes capability-discoverability basically impossible). For example, Claude Code has three modes: plan, ask about edits, and auto-accept edits. I always start with a plan and then I end up with multiple tasks. I'd like to auto-accept edits for a step at a time and the only way to do that reliably is to ask CC to do that, but it's not reliable—sometimes it just continues to go into the next step. If this were programmed explicitly into CC rather than relying on agent obedience, we could ditch the nondeterminism and just have a hook on task completion that toggles auto-complete back to "off."

PantaloonFlames•59m ago
You can publish scripts with skills you author, right? With carefully constructed markdown that should allow the agent to call tools the right way.
Frannky•40m ago
I think unless you're doing simple tasks, skills are unreliable. For better reliability, I have the agent trigger APIs that handles the complex logic (and its own LLM calls) internally. Has anyone found a solid strategy for making complex 'skills' more dependable?
plufz•23m ago
My only strategy is what used to be called slash-commands but are also skills now, I.e I call them explicitly. I think that actually works quite well and you can allow specific tools and tell it to use specific hooks for security of validation in the frontmatter properties.
chickensong•10m ago
Is it that the skills aren't being triggered reliably, or that they get triggered but the skill itself is complex and doesn't work as expected?
DarmokJalad1701•33m ago
You can write skills that have an associated js/python/whatever script.
chickensong•17m ago
> sometimes it just continues to go into the next step

Use a structured workflow that loops on every task and includes a pause for user confirmation at the end. Enforce it with a hook. I'm not sure if you can toggle auto-accept this way, but I think the end result is what you're asking for.

I use this with great success, sometimes toggling auto-accept on when confidence is high that Claude can complete a step without guidance, and toggling off when confidence is low and you want to slow down and steer, with Claude stopping between the steps. Now that prompt suggestions are a thing, you can just hit enter to continue on the suggested prompt to continue.

btbuildem•17m ago
> idea that agent harnesses should primarily have their functionality dictated by plaintext commands feels like a copout

I think it's more along the lines of acknowledging the fast-paced changes in the field, and refusing to cast into code something that's likely to rapidly evolve in the near future.

Once things settle down into tested practices, we'll see more "permanent" instrumentation arise.

daturkel•14m ago
Surely this logic doesn't apply if we're to believe that "code is cheap" now :p
siquick•15m ago
> Skills in CC have been a bit frustrating for me. They don't trigger reliably

Referencing them in AGENTS/CLAUDE.md has increased their usage for me.

giancarlostoro•14m ago
Are you using either CLAUDE.md or .claude/INSTRUCTIONS.md to direct Claude about the different agents?

Also, be aware that when you add new instructions if you don't tell claude to reread these files, it will NOT have it in its context window until you tell it to read them OR you make a new CC session. This was a bit frustrating for me because it was not immediately obvious.

RyanShook•52m ago
So far my experience with skills is that they slow down or confuse agents unless you as the user understand what the skill actually contains and how it works. In general I would rather install a CLI tool and explain to the agent how I want it used vs. trying to get the agent to use a folder of instructions that I don't really understand what's inside.
airstrike•46m ago
Most LLM "harnessing" seems very lazy and bolted on. You can build much more robustly by leveraging a more complex application layer where you can manage state, but I guess people struggle building that
giancarlostoro•11m ago
> So far my experience with skills is that they slow down or confuse agents unless you as the user understand what the skill actually contains and how it works. In general I would rather install a CLI tool and explain to the agent how I want it used vs. trying to get the agent to use a folder of instructions that I don't really understand what's inside.

For Claude Code I add the tooling into either CLAUDE.md or .claude/INSTRUCTIONS.md which Claude reads when you start a new instance. If you update it, you MUST ask Claude to reread the file so it knows the full instructions.

umairnadeem123•38m ago
the standardization angle is interesting but the real value is in skills that bundle executable scripts alongside the markdown. pure instruction-based skills are fragile because the agent has to interpret intent each time. when the skill includes a concrete shell script or python tool the agent just needs to know when to call it and what args to pass - way more deterministic.

we settled on a pattern where the SKILL.md mostly just describes the interface to a script in the same folder. the agent rarely drifts when it has a concrete tool to invoke vs trying to follow multi-step prose instructions.

mccoyb•34m ago
Skills feel analogous to behavioral programs. If you give an agent access to a programmable substrate (e.g. bash + CLI tools), you write these Markdown programs which are triggered and read when the agent thinks certain behaviors will be beneficial.

It's a great idea: really neat take on programmability, and can be reloaded while the agent is running without tweaking the harness, etc -- lots of benefits.

`pi` has a great skills implementation too.

I think skills might really shine if you take a minimal approach to the system prompt (like `pi`) -- a lot of the times, if I want to orchestrate the agent in some complex behavior, I want to start fresh, and having it walk through a bunch of skills ... possibly the smaller the system prompt, the more likely the agent is to follow the skills without issue.

evalstate•12m ago
Yes -- skills live in a special gap between "should have been a deterministic program" and "model already had the ability to figure this out". My personal experience leaves me in agreement that minimal system prompts are definitely the way to go.