frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

California Public Technology Principles

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

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

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

AI could help make society less selfish

https://techxplore.com/news/2026-02-ai-society-selfish.html
1•bikenaga•1m 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•2m 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•2m ago•1 comments

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

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

The mechanics of autonomous software translation

https://alperenkeles.com/posts/autonomous-translations/
1•alpaylan•4m 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•6m ago•0 comments

Durov Drama

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

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

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

Open Source in the Age of AI

https://john.onolan.org/open-source-in-the-age-of-ai/
1•Tomte•10m 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•12m ago•0 comments

Google Street View in 2026

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

Show HN: I made a directory for Claude skills

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

Kawasaki Corleo Electric Horse

https://global.kawasaki.com/en/corp/newsroom/news/detail/?f=20251211_7502
2•dabinat•13m 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•14m 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•16m ago•0 comments

Thinking out loud: evolution and pretraining

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

OpenAI Has Poached Instagram's Celebrity Whisperer

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

America Chose Not to Hold the Powerful to Account

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

Self-Hosted LLMs Tier List

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

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

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

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

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

SynthID

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

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

https://egokernel.com
1•felixche•22m 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•24m 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•24m ago•0 comments

NutriAI

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

Claude Code Mexico breach: training safety failed ground truth layer

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

Ask HN: Solo Founder Questions

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

Show HN: Cc-pipeline – Autonomous Claude Code pipeline that builds your project

https://github.com/timothyjoh/cc-pipeline
1•timothyjoh•1h ago
I kept doing the same thing manually: write a spec, have Claude implement it, review the code, fix issues, reflect, commit, repeat — resetting the context window by hand at each step. So I automated the loop.

cc-pipeline takes a BRIEF.md describing what you want built and orchestrates Claude Code through the whole SDLC: spec → research → plan → build → review → fix → reflect → commit. Phase by phase, overnight, while you sleep. Each step gets a fresh context window via the Claude Agent SDK (I tried tmux + send-keys first — do not recommend).

I've run it on a dozen projects: an Elixir port of an existing open-source gateway, a Trello-style kanban board twice (Astro and Rails), a statistical analysis in R (I've never written R), Tetris twice from the same brief, and a Kirby platformer attempt (that failed).

Full write-up of the experiments here: https://curiousagents.substack.com/p/experiments-in-building...

Quick start:

``` cd your-project npx cc-pipeline@latest init ```

Then open Claude Code and ask it to help you write the BRIEF.md. Then `npx cc-pipeline run` and walk away.

The steps are defined in .pipeline/workflow.yaml — you can add, remove, or reorder them. The prompts are plain markdown. Easy to tune to your own SDLC.

Would love feedback on the approach, especially from anyone who's tried similar things.