frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

California Public Technology Principles

https://argo-marketplace.github.io/future_of_california/
1•patwater10•1m ago•1 comments

Show HN: Conjure – 3D printed objects from text description only

https://conjure.tech
2•suchanekj•3m ago•1 comments

AI could help make society less selfish

https://techxplore.com/news/2026-02-ai-society-selfish.html
1•bikenaga•3m ago•0 comments

Travel North Tahoe Nevada ensures winter access

https://www.tahoedailytribune.com/news/travel-north-tahoe-nevada-ensures-winter-access-at-east-sh...
1•qualudeheart•3m ago•0 comments

Is It All over for Filmmakers?

https://www.shokunin.studio/blog/2026/2/18/is-it-all-over-for-filmmakers
1•SLHamlet•3m ago•1 comments

Show HN: Browser-based WebGL terrain editor with authoring mode and camera

https://playzafiro.com/isle-lab/
1•bartoszu_•4m ago•0 comments

The mechanics of autonomous software translation

https://alperenkeles.com/posts/autonomous-translations/
1•alpaylan•6m ago•0 comments

Pentagon officials send Anthropic best and final offer for military use of AI

https://www.cbsnews.com/news/pentagon-anthropic-offer-ai-unrestricted-military-use-sources/
2•rob•8m ago•0 comments

Durov Drama

https://substack.com/home/post/p-189273634
1•KyleVlaros•10m ago•0 comments

Show HN: I built a managed Claude AI and hosting service

https://codedoc.us
1•novatrope•11m ago•0 comments

Open Source in the Age of AI

https://john.onolan.org/open-source-in-the-age-of-ai/
1•Tomte•12m ago•0 comments

What I learned from the book 'Software Engineering at Google'

https://newsletter.techworld-with-milan.com/p/what-i-learned-at-swe-at-google-book
1•samspenc•14m ago•0 comments

Google Street View in 2026

https://tech.marksblogg.com/google-street-view-coverage.html
5•marklit•14m ago•0 comments

Show HN: I made a directory for Claude skills

https://skillsplayground.com/skills/
1•jackculpan•14m ago•0 comments

Kawasaki Corleo Electric Horse

https://global.kawasaki.com/en/corp/newsroom/news/detail/?f=20251211_7502
2•dabinat•15m ago•1 comments

Houston, we have a problem: Study points to clotting glitch in space

https://medicalxpress.com/news/2026-02-houston-problem-clotting-glitch-space.html
1•bikenaga•15m ago•1 comments

Show HN: Duck Talk – Real-time voice interface to talk to your Claude Code

https://github.com/dhuynh95/duck_talk
5•DanyWin•17m ago•0 comments

Thinking out loud: evolution and pretraining

https://hiranmay.com/blog/evolution-pretraining
1•hdarshane•17m ago•0 comments

OpenAI Has Poached Instagram's Celebrity Whisperer

https://www.vanityfair.com/news/story/openai-hires-charles-porch-instagram
1•herbertl•17m ago•0 comments

America Chose Not to Hold the Powerful to Account

https://www.theatlantic.com/ideas/2026/02/elite-accountability-powerful-impunity/686134/
14•JumpCrisscross•19m ago•0 comments

Self-Hosted LLMs Tier List

https://www.onyx.app/self-hosted-llm-leaderboard
1•RohoSwagger•19m ago•0 comments

Show HN: Depwire – Dependency graph and MCP tools so AI stops refactoring blind

https://github.com/depwire/depwire
2•atefataya•20m ago•2 comments

Show HN: Claude/Gemini/Codex 10-100x faster with pandō (CAD for code)

https://getpando.ai/
3•george_ciobanu•21m ago•2 comments

SynthID

https://deepmind.google/models/synthid/
3•tosh•24m ago•1 comments

Show HN: EK-1 – A local-first, sovereign AI agent built in Go and Rust

https://egokernel.com
1•felixche•24m ago•0 comments

Pacific Fusion finds a cheaper way to make its fusion reactor work

https://techcrunch.com/2026/02/05/pacific-fusion-finds-a-cheaper-way-to-make-its-fusion-reactor-w...
2•PaulHoule•26m ago•0 comments

Hanging with news-free friends preserves my sanity in a chaotic world

https://theishything.bearblog.dev/i-have-been-hanging-out-with-people-who-dont-watch-the-news/
1•speckx•26m ago•0 comments

NutriAI

https://nutriai.si/
1•domaisi•26m ago•1 comments

Claude Code Mexico breach: training safety failed ground truth layer

https://github.com/Mysticbirdie/hallucination-elimination-benchmark
1•MysticBirdie•27m ago•2 comments

Ask HN: Solo Founder Questions

1•newbeeguy•27m ago•0 comments
Open in hackernews

Show HN: DevSwarm 2.0, fix parallel Claude Code sprawl

5•mikebiglan•1h ago
Mike, cofounder of DevSwarm here.

I’ve been using Claude Code heavily for the last few months (multiple Max plans). Running sessions in parallel across git branches or worktrees is fast, but it breaks down quickly in practice because of sprawl. Terminals everywhere, editor windows everywhere, and you lose track of basics like which agent is on which branch and what is ready for review.

DevSwarm is what we built to solve that.

The core abstraction is simple: workspace equals branch. Each workspace runs its agent session(s) and keeps the state visible. In 2.0 we added a full VS Code IDE embedded in each workspace, so editing, terminals, diffs, and git controls stay in one window while you jump between parallel branches.

I’d love blunt feedback from people doing parallel workflows:

  • What breaks first for you past 2 parallel sessions?

  • What would you need for this to be production-grade? Tests, debugging, extensions, PR flow?
Video: https://www.youtube.com/watch?v=MqRkSRee6HE

Download: https://devswarm.ai/download

Comments

jcjmcclean•1h ago
Very cool. I'll definitely give this a try. I'd say code review is the most important part of a tool like this for me. How does it compare to Conductor?
trevordilley•1h ago
CTO Here!

Definitely lots of parallels with Conductor, here's where I think we differentiate specifically.

* The interface to interact with your AI is a full IDE (our minimal fork of vscode) with a focus on the CLI AI

* Further, each workspace gets their own IDE with all the functionality that implies

* We support a bunch of different CLI AI

* Since it's a vscode fork, you have access to the open source extension marketplace so you can even use the extension AI's like Roo Code in parallel (or your favorite CLI AI's extension like the Claude Code extension which you can see in our video!)

* I believe our take on running your app in parallel is a bit different (I may be wrong though!). We provide a means to name variables that will bind to ports so your parallel runs of your app don't fight over ports

* Github PR review right in DevSwarm, leave comments and approvals! We are definitely in the same space for sure, our aim with DevSwarm 2.0 was to make the transition to multi-task/parallel development less of a sheer cliff.

For many folks diving into AI First development multi-tasking with worktrees was really intuitive, but taking a step back it's a pretty huge ask to make that pivot. DevSwarm 2.0 we think really helps bridge that gap.

mikebiglan•1h ago
Yes, think Conductor meets Warp meets VS Code, all in one.

Plus full PR-mode support within. Full Jira integration.

bketelsen•1h ago
Looks slick. Linux version please!
mikebiglan•1h ago
In the works!!