frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Proposed Architecture for Next Generation Payment Infrastructure

https://zenodo.org/records/21991408
1•sangamdas•8m ago•0 comments

OpenAI and Anthropic in price war as Chinese AI rivals gain ground

https://www.ft.com/content/32a70a3c-7d28-40b4-808e-36edb58c7d01
1•mgh2•12m ago•1 comments

Arctype – An AI workspace that builds documents, apps, and handles email

https://arctype.org/
1•AdamNeto•14m ago•1 comments

Show HN: Roadmark – roadmaps that branch instead of overwriting the plan

https://yourroadmark.com
1•alekstret•15m ago•0 comments

When I worked at Apple, I remember seeing code that was 15 years old

https://twitter.com/sean_geiger/status/2089487682305216534
3•tosh•16m ago•0 comments

GenOffice fork that works with any local LLM instead of a cloud account

https://github.com/douglas168/open-genoffice
2•douglas168•18m ago•0 comments

I'm done coding with AI [video]

https://www.youtube.com/watch?v=2ZU3j4GQ4K8
1•mike-the-brain•18m ago•0 comments

What's behind the rise of teens spying for Russia?

https://mssv.net/2026/08/13/whats-behind-the-rise-of-teens-spying-for-russia/
1•adrianhon•22m ago•0 comments

Show HN: Dozenal – Daily Spatial Math Puzzle

https://dozenal.game
3•sarreph•22m ago•0 comments

Breakthrough as scientists use AI to predict how breast cancer could progress

https://www.independent.co.uk/news/health/breast-cancer-diagnosis-cure-ai-symptoms-b3034278.html
1•01-_-•23m ago•0 comments

GitHub runner related pages down

2•jahnu•25m ago•0 comments

Show HN: Phi – A browser-native and desktop game engine

https://github.com/float64co/Phi
1•LukeB42•25m ago•0 comments

Just Show Me the Prompt

https://www.leadinginproduct.com/p/just-show-me-the-prompt
1•benkan•30m ago•1 comments

The controversial story of the North American raccoons wreaking havoc in Germany

https://www.bbc.com/future/article/20260814-the-true-story-of-how-germany-became-overrun-with-nor...
2•t-3•31m ago•0 comments

Who Is Lucky?

https://www.politie.nl/nieuws/2026/augustus/17/een-heel-leven-maar-geen-naam-wie-herkent-deze-man...
1•bartkappenburg•34m ago•0 comments

Slag: Scriptable, hot-reloadable GPUI framework

https://tangled.org/liminal.rip/slag
1•nerdypepper•35m ago•0 comments

Screentime for kids not necessarily bad

https://www.sciencedaily.com/releases/2026/08/260815064803.htm
2•djdule•37m ago•2 comments

Show HN: Vianta Connect – file transfer and clipboard sync for Android and Mac

https://play.google.com/store/apps/details?id=com.vianta.android&hl=en_US
1•SUSHANTH_21•41m ago•0 comments

The defense revolving-door, Silicon Valley edition

https://thebulletin.org/2026/08/the-defense-revolving-door-silicon-valley-edition/
1•jonbaer•41m ago•0 comments

RL-based robot arm manipulation with Isaac Lab

https://www.hackster.io/agilexrobotics/sim2real-deployment-rl-based-grasping-using-piper-arm-8ae8bb
1•AGX_NERO•42m ago•0 comments

Elm for PostgreSQL

https://twitter.com/evancz/status/2089617868694421564
2•garyclarke27•44m ago•0 comments

Show HN: There are many factories, but this one's *yours

https://github.com/mikaelweiss/penguin
1•mikaelweiss•49m ago•0 comments

Decentralized Universal Computer

https://github.com/Skills03/c9
1•RIshabh235•49m ago•1 comments

What if the AI capex bubble may not be a bubble after all?

https://www.afr.com/technology/sam-altman-is-being-proved-right-about-the-economics-of-ai-2026081...
1•mnoorani•49m ago•1 comments

NASA's Starling Mission Opens New Frontiers in Space Navigation

https://www.nasa.gov/blogs/smallsatellites/2026/08/17/nasas-starling-mission-opens-new-frontiers-...
1•rbanffy•50m ago•0 comments

Paperwing

https://paperwing.dev/
1•tosh•52m ago•0 comments

Zotero 10

https://www.zotero.org/blog/zotero-10/
2•pretext•55m ago•0 comments

CartLens

https://www.cartlens.co/
1•watat83•1h ago•0 comments

Nvidia CMP170HX driver 64GB RAM unlocking patch

https://github.com/amoghmunikote/cmpunlocker
3•ValdikSS•1h ago•1 comments

Forced System

1•shencry•1h ago•0 comments
Open in hackernews

Show HN: There are many factories, but this one's *yours

https://github.com/mikaelweiss/penguin
1•mikaelweiss•49m ago
# There are many factories, but this one's yours

All coding harnesses and code factories have a few major flaws: 1. You don't get to pick the workflow - someone else decides the workflow for you 2. It's often unclear when the human is needed - is the agent done, or do you need to verify? 3. You're limited to prose and all it's downsides - nested logic and complex compesition is pretty much out of the question 4. We end up relying heavily on agents calling mcp's or cli's for things that should be deterministic calls

## You don't get to pick the workflow

Why should the guys at vercel, linear, factory, anthropic, or openai decide what workflow is best for you?

Penguin flips that:

YOU decide what workflow is best.

Three concepts: Workflows - what's run Adapters - a way to connect to the outside world Messages - async or sync sent between workflows and adapters

With these three primitives, you can build incredibly complex workflows including, but not limited to, software factories.

## It's often unclear when the human is needed

With Penguin, you can write deterministic pauses in workflow ("New messages from slack, would you like to pause implementing or read them after?")

When an agent stops it's either because the agent needs human input or because it is done. When done, the workflow moves on to the next step until a human is needed. There is clear separation between an agent finishing and human input needed.

## You're limited to prose and all it's downsides

If you want a workflow that runs another workflow that runs another workflow that runs several agents and it runs all those workflows in peralell, you just can't do that with prose very easily. Code is much more clear

The workflows and adapters all are written in TypeScript making it incredibly straightforward to build a new workflow or adapter.

## We end up relying heavily on agents calling mcp's or cli's for things that should be deterministic calls

When you implement a github issue, jira ticket, or review a PR, you are ALWAYS going to pull the info from those sources, and you can do this with a script. There's no need for the agent to use an MCP.

## Final notes

You can build a workflow that has steps, blockers, and all, without ever even calling an agent.

You can make workflows that respond to all kinds of triggers: Slack, GitHub, Jira, User, a webhook, anything you can bulid an adapter for

Penguin is the ultimately composable workflow builder

Install with: `npm install -g @mikaelweiss/penguin` https://github.com/mikaelweiss/penguin

Still early beta, but I've already started using Penguin at work as well as to build Penquin!