frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Some Simple Economics of AGI

https://arxiv.org/abs/2602.20946
1•alpaylan•34s ago•0 comments

Why everyone is reading fantasy

https://www.theguardian.com/books/2026/feb/22/myth-monsters-and-making-sense-of-a-disenchanted-wo...
3•jethronethro•1m ago•0 comments

Show HN: ShiLLM – An LLM that inserts ads into every response

https://www.shillm.com/
1•masterspy7•3m ago•0 comments

Markdown DOM Spec for LLMs: Request for Comment

https://github.com/brandoncarl/markdown-dom
1•brandoncarl•4m ago•1 comments

Show HN: Digest.tube – skim YouTube videos like articles

https://digest.tube/
1•tufan_gokova•4m ago•0 comments

Creating "Edit" Links That Open Plain-Text Source Files in a Native App

https://blog.jim-nielsen.com/2026/os-as-cms/
1•speckx•5m ago•0 comments

Show HN: WhatsApp Group Contact Extractor - Paste JS, get group contacts .tsv

https://github.com/Mb-hunt/WhatsApp-Contact-Extractor
1•mb_hunt•7m ago•0 comments

Deploying Open Source Vision Language Models (VLM) on Jetson

https://huggingface.co/blog/nvidia/cosmos-on-jetson
1•ibobev•7m ago•0 comments

Show HN: HN Digest Widget – Nothing Essential Lab S1 Winner

https://twitter.com/essential/status/2026712111846408359
1•kuberwastaken•7m ago•0 comments

LLM-LD, the Open Standard for AI-Readable Websites

https://llmld.org/
1•bhartzer•7m ago•0 comments

Sutton and Barto, Ch. 08: Planning and Learning with Tabular Methods

https://chizkidd.github.io//2026/02/24/rl-sutton-barto-notes-ch008/
1•ibobev•8m ago•0 comments

Fish Shell 4.0 released. Rust re write finished

https://fishshell.com/blog/new-in-40/
2•death916•8m ago•1 comments

Show HN: BountyBook – A task marketplace where AI agents earn USDC

https://www.bountybook.ai/
2•patrulo•9m ago•0 comments

What Virtual Worlds Can Learn from the Social Serendipity of Arc Raiders

https://wjamesau.substack.com/p/what-virtual-worlds-can-learn-from
1•SLHamlet•9m ago•0 comments

Show HN: VibeFrame – AI video editor for the terminal (CLI and MCP)

https://github.com/vericontext/vibeframe
3•kiyeonjeon•10m ago•0 comments

NASA says it needs to haul the Artemis II rocket back to the hangar for repairs

https://arstechnica.com/space/2026/02/nasa-says-it-needs-to-haul-the-artemis-ii-rocket-back-to-th...
2•JumpCrisscross•10m ago•0 comments

Hospitals fighting measles confront a challenge: Few doctors have seen it before

https://www.cnn.com/2026/02/25/health/measles-doctors-states
2•mooreds•11m ago•0 comments

Humanity's Last Exam

https://stories.tamu.edu/news/2026/02/25/dont-panic-humanitys-last-exam-has-begun/
2•geox•13m ago•0 comments

Fixing Slow AWS Uploads

https://pierce.dev/notes/fixing-slow-aws-uploads
2•speckx•15m ago•0 comments

Show HN: Raindrop Self Diagnostics: let agents self-report issues

https://twitter.com/benhylak/status/2026712861666587086
2•alexisgauba•15m ago•0 comments

Toilet Map [UK]

https://www.toiletmap.org.uk
2•petecooper•16m ago•0 comments

From Jamstack to CAMstack – Bridging the Content Gap

https://www.sleekcms.com/blog/from-jamstack-to-camstack
2•yusufnb•16m ago•1 comments

The Pentagon Threatens Anthropic

https://www.astralcodexten.com/p/the-pentagon-threatens-anthropic
5•lukeplato•17m ago•0 comments

The Myth of the Chad

https://www.wsj.com/opinion/free-expression/the-myth-of-the-chad-b7626d85
2•rsecora•18m ago•0 comments

om

https://www.om-language.com/
3•tosh•18m ago•0 comments

Fentanyl or phony? Machine learning algorithm learns opioid signatures

https://phys.org/news/2026-02-fentanyl-phony-machine-algorithm-opioid.html
2•PaulHoule•18m ago•0 comments

Time-Travel Debugging: Replaying Production Bugs Locally

https://lackofimagination.org/2026/02/time-travel-debugging-replaying-production-bugs-locally/
2•tie-in•19m ago•0 comments

Show HN: Djevops – Deploy Django Easily

https://github.com/mherrmann/djevops
3•mherrmann•19m ago•0 comments

A federal experiment opens up a new market for digital health – if it works

https://endpoints.news/a-federal-experiment-opens-up-a-new-market-for-digital-health-if-it-works/
1•brandonb•19m ago•0 comments

Aletheia Tackles FirstProof Autonomously

https://arxiv.org/abs/2602.21201
2•in-silico•20m ago•0 comments
Open in hackernews

Show HN: Dance of Tal V2 – Dependency injection and lockfiles for AI agents

https://github.com/dance-of-tal/dance-of-tal
1•monarchjuno•2h ago

Comments

monarchjuno•1h ago
Hi HN,

I’m sharing a project I built to solve a specific pain point I hit while building multi-agent systems and adopting AI coding assistants (Cursor, Antigravity, Codex, etc.).

As we move towards agent orchestration, we increasingly need specialized agents: one agent for architecture, another for security review, and another for writing tests. But right now, most of us manage this by stuffing everything into massive 1,000+ line AGENTS.md files or hardcoding prompt blobs into our scripts.

When a specific agent hallucinates or violates a security policy, debugging that monolithic prompt blob is impossible. There is no versioning, no diffs, and no way to say "keep the senior backend persona, but swap out the testing rules for this specific CI agent."

I realized I needed to treat AI constraints the same way I treat code. So, I built Dance of Tal (DOT).

The name comes from Talchum, the traditional Korean mask dance, where Tal is the mask (character/persona) and chum is the dance (the prescribed movements). DOT applies this exact metaphor to decouple system prompts into strongly typed, versioned components:

Tals (Personas): The mask. How the AI thinks and its professional identity (e.g., tal/@username/security-auditor).

Dances (Rules): The choreography. Strict formatting, JSON schemas, and coding standards. You can layer multiple Dances like CSS classes (e.g., dance/@username/kotlin-style + dance/@username/gdpr-rules).

Combos (Lockfiles): Pins a specific Tal and layered Dances together into a reproducible profile. (e.g., Your PR-review agent gets a different Combo than your hotfix agent).

Acts (Workflows): The stage play. A DAG-based workflow engine that conditionally switches between Tals and Dances (e.g., automatically switching the AI from a "cautious architect" to a "fast hotfix specialist" during a P0 incident).

Stages (Adapters): Translates the assembled payload perfectly for whatever vendor/platform you're using (Cursor, Antigravity, Codex, Claude API, etc.).

Instead of copy-pasting blobs, I just run dot lock to give each AI agent the exact reproducible behavior it needs. I also added native MCP (Model Context Protocol) support, so IDEs and orchestration frameworks can just fetch the compiled context exactly when needed—no more manual prompt wrangling.

I'd love to hear your thoughts on this "dependency injection for prompts" approach. Are prompt monoliths and multi-agent context management causing friction for you as well?

Happy to answer any questions!