Stories
27
Sources
6
Topics
7
For You lens
17 stories in this edition match your reader profile.
Reader signals
3
Searches
0
Matches
17
Top score
103
Search Intent
typescript
This query becomes a recent For You signal, so matching stories can move up on the next personalized pass.
Edition Index
Topic, entity, and source map
Topics
Entities
Lead Story
OpenHands/OpenHands is trending in AI open source
OpenHands/OpenHands is a GitHub AI repository with 87,757 stars. ๐ OpenHands: AI-Driven Development
Hacker News AI / 5:20 AM
Veryfront Code โ Full-Stack AI Apps and Agents with TypeScript and React
HN 3 pts ยท 0 comments
Simon Willison LLMs / 3:37 PM
A shot-scraper-style JSON API on Bun 1.4's new Bun.WebView
Research: A shot-scraper-style JSON API on Bun 1.4's new Bun.WebView Today saw the long awaited release of Bun 1.4 , the first stable version since the infamous Rust rewrite a few months ago . Interestingly, the Rust rewrite was downplayed in the release notes, which introduced a bewildering array of new features and claimed 2,900 additional bug fixes: Bun 1.4 adds +1,517 tests from the Node.js test suite - our biggest jump in Node.js compatibility since Bun 1.0. Bun v1.4 also fixes over 2,900 issues. It reduces idle CPU usage by 5x, reduces memory usage by up to 35%, and starts 50% faster on Linux. It adds Bun.Image , Bun.WebView , Bun.markdown , Bun.cron() , Bun.Terminal , bun run --parallel , bun test --parallel , bun audit fix , bun dedupe , and bun prune . And it rewrites Bun from Zig to Rust. Of these the one that most caught my eye was Bun.WebView , which adds first class support for browser automation to Bun core using either macOS WebKit or control of a local Chromium process via the Chrome DevTools Protocol (CDP). I had Claude Code for web build a prototype of a web API providing the ability to load a web page and then execute JavaScript against it, inspired by my shot-scraper javascript CLI tool - partly to see how much RAM would be needed by such a service. Here's that TypeScript server implementation , which appears to need a 192MB-256MB container to run a full Chrome against complex web pages - tested using cgroups. Tags: browsers , javascript , ai , rust , typescript , generative-ai , llms , coding-agents , bun
GitHub Trending AI / 7:30 AM
simstudioai/sim is trending in AI open source
simstudioai/sim is a GitHub AI repository with 29,626 stars. Sim is the collaborative workspace to build, deploy, and monitor AI agents and workflows. Used by 100,000+ builders.
GitHub Trending AI / 6:41 AM
yamadashy/repomix is trending in AI open source
yamadashy/repomix is a GitHub AI repository with 28,326 stars. ๐ฆ Repomix is a powerful tool that packs your entire repository into a single, AI-friendly file. Perfect for when you need to feed your codebase to Large Language Models (LLMs) or other AI tools like Claude, ChatGPT, DeepSeek, Perplexity, Gemini, Gemma, Llama, Grok, and more.
GitHub Trending AI / 10:27 PM
vercel/ai is trending in AI open source
vercel/ai is a GitHub AI repository with 26,717 stars. The AI Toolkit for TypeScript. From the creators of Next.js, the AI SDK is a free open-source library for building AI-powered applications and agents
Cloudflare AI Blog / 1:00 PM
Run CI/CD for millions of repos โ on your platform, on Cloudflare
Learn how to build customizable, sandboxed CI/CD pipelines natively on Cloudflare using Workflows, Artifacts, and the CI SDK. We walk through replacing complex YAML configurations with TypeScript workflow steps and self-healing AI agents.
Product Hunt AI / 8:30 PM
Arkor
Fine-tune and Deploy Open-weight Models in TypeScript Discussion | Link
Simon Willison LLMs / 11:57 PM
Rewriting Bun in Rust
Rewriting Bun in Rust Jarred Sumner has been promising this blog post ( since May 9th ) about his Zig to Rust rewrite of Bun for significantly longer than it took him to finish the rewrite. Honestly, it was worth the wait. This is a detailed description of an extremely sophisticated piece of agentic engineering, featuring dynamic workflows, trial runs, adversarial review and all sorts of other interesting tricks. Jarred spends the first half of the post praising Zig for getting Bun this far. Then we get to a core idea in the piece, emphasis mine: Our bugfix list felt bad and I was tired of going to sleep worrying about crashes in Bun. I don't blame Zig for that - other users of Zig don't have the bugs we had, and mixing GC with manually-managed memory is an uncommon enough thing for software to need that no language really designs for it. We wouldn't have gotten this far if not for Zig, and I'll always be grateful. Until very recently, programming language choice was a one-way decision for a project like Bun. Everyone knows you should never stop the world and rewrite a large piece of software from the ground up. Joel Spolsky highlighted that in Things You Should Never Do, Part I back in April 2000! Coding agents powered by today's frontier models change that equation. Why pick Rust? It all came down to those challenges with memory management: A large percentage of bugs from that list are use-after-free, double-free, and "forgot to free" in an error path. In safe Rust, these are compiler errors and RAII-like automatic cleanup with Drop . A crucial enabling factor for the rewrite was that the Bun test suite was written in TypeScript, which meant it could act as a conformance suite . This allowed an agent harness to automate much of the initial port from Bun to Rust, initially as an experiment to try out an earlier version of the model we now have access to as Mythos/Fable. At first, I didn't expect it to work. A few days in, a high % of the test suite started passing and I saw how much the new Rust code matched up with the original Zig codebase. My opinion went from "this is worth trying" to "I'm going to merge this". [...] For most of those 11 days (and after), I monitored workflows - manually reading the outputs to check for issues and bugs, and prompting Claude to edit the loop to fix things. How do you review a PR with +1 million lines added? How do you start to build the confidence needed to responsibly merge large quantities of LLM-authored code? A language-independent test suite with a million assertions, adversarial code review and when something does go wrong, fixing the process that generates the code instead of hand-fixing the code. The new implementation of Bun has been live in Claude Code for nearly a month now: Claude Code v2.1.181 (released June 17th) and later use the Rust port of Bun. Startup got 10% faster on Linux but otherwise, barely anyone noticed. Boring is good. A perk of working at Anthropic is that you don't have to pay for your tokens - handy when the estimated cost is $165,000! Pre-merge, this took 5.9 billion uncached input tokens, 690 million output tokens, and 72 billion cached input token reads โ around $165,000 at API pricing. This whole thing is a fascinating case study in taking on wildly ambitious projects with the help of coordinated parallel agents. Via Hacker News Tags: ai , rust , zig , generative-ai , llms , ai-assisted-programming , anthropic , bun , conformance-suites , agentic-engineering , claude-mythos-fable , jarred-sumner
Product Hunt AI / 12:31 PM
Mozaik
TypeScript runtime for self-organizing AI agents Discussion | Link
LangChain Blog / 1:01 AM
Interpreter Skills: Building Workflows for Agents
Interpreter skills extend agent skills with a TypeScript module the agent can import and run. This lets you build more capable workflows with your agents.
Hacker News AI / 5:05 PM
Hacker News discussion: Show HN: VernLLM โ The AI resilience layer for TypeScript
Hacker News readers are discussing "Show HN: VernLLM โ The AI resilience layer for TypeScript" with 2 points and 0 comments.
Hacker News AI / 11:03 AM
Hacker News discussion: Axon, a TypeScript framework for agent development
Hacker News readers are discussing "Axon, a TypeScript framework for agent development" with 3 points and 0 comments.
GitHub Trending AI / 10:27 AM
f/prompts.chat is trending in AI open source
f/prompts.chat is a GitHub AI repository with 170,230 stars. f.k.a. Awesome ChatGPT Prompts. Share, discover, and collect prompts from the community. Free and open source โ self-host for your organization with complete privacy.
GitHub Trending AI / 2:12 PM
ItzCrazyKns/Vane is trending in AI open source
ItzCrazyKns/Vane is a GitHub AI repository with 36,720 stars. Vane is an AI-powered answering engine.
Hacker News AI / 5:28 PM
Best TypeScript AI Agent Frameworks for Next.js
HN 3 pts ยท 0 comments
GitHub Trending AI / 12:38 PM
FlowiseAI/Flowise is trending in AI open source
FlowiseAI/Flowise is a GitHub AI repository with 55,399 stars. Build AI Agents, Visually
Hacker News AI / 9:30 PM
Show HN: Keep batch LLM jobs from starving interactive traffic (TypeScript)
HN 1 pts ยท 0 comments
Hacker News AI / 12:20 PM
Show HN: OneRingAI v1 โ TypeScript agents with integrations and graph memory
HN 2 pts ยท 0 comments
Hacker News AI / 5:30 PM
Hacker News discussion: A stricter TypeScript for a world where AI writes most of the code
Hacker News readers are discussing "A stricter TypeScript for a world where AI writes most of the code" with 1 points and 0 comments.
Hacker News AI / 7:56 PM
Hacker News discussion: Show HN: Rememori โ agent memory in pure TypeScript, zero dependencies
Hacker News readers are discussing "Show HN: Rememori โ agent memory in pure TypeScript, zero dependencies" with 1 points and 0 comments.
Hacker News AI / 8:01 AM
Hacker News discussion: Agent solves problem in JavaScript but fails in TypeScript
Hacker News readers are discussing "Agent solves problem in JavaScript but fails in TypeScript" with 2 points and 0 comments.
GitHub Trending AI / 6:28 AM
dyad-sh/dyad is trending in AI open source
dyad-sh/dyad is a GitHub AI repository with 21,000 stars. Local, open-source AI app builder for power users โจ v0 / Lovable / Replit / Bolt alternative ๐ Star if you like it!
Hacker News AI / 1:06 PM
Hacker News discussion: Show HN: A TypeScript repo where AI agents can't break the architecture
Hacker News readers are discussing "Show HN: A TypeScript repo where AI agents can't break the architecture" with 2 points and 1 comments.
Hacker News AI / 12:58 PM
Hacker News discussion: Show HN: Sfotty Pie โ A browser-based Atari 8-bit emulator in TypeScript
Hacker News readers are discussing "Show HN: Sfotty Pie โ A browser-based Atari 8-bit emulator in TypeScript" with 2 points and 2 comments.
Latest story in this edition: 6:00 PM
Back to front page