frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Claude.ai Down Again?

14•zh_code•46m ago•14 comments

Ask HN: Anyone feel like they're just opting out of tech these days?

10•moomoo11•3h ago•6 comments

Increase in Claude Code speed bumps?

3•jesse_dot_id•5h ago•0 comments

Ask HN: Hosted Fossil for small teams – interesting, or wrong call?

7•ragelink•5h ago•3 comments

Tell HN: An update from the new Tindie team

77•altairprime•17h ago•48 comments

Ask HN: Is it still worth it to try to get a job in IT

7•morpheos137•11h ago•12 comments

Tell HN: An app is silently installing itself on my iPhone every day

585•_-x-_•4d ago•187 comments

SYNQ – Give ChatGPT and Claude permanent, local memory

2•Tamatarr•4h ago•0 comments

Ask HN: If coding gets faster, where should architecture happen?

4•karlosh•14h ago•2 comments

Ask HN: Anyone else suddenly have Brawls Stars on their iPhone?

4•realberkeaslan•14h ago•2 comments

Ask HN: Is it just me or is Claude Code getting worse?

28•e-nouri•1d ago•18 comments

Tell HN: One Medical Is a Nightmare

31•rincebrain•2d ago•6 comments

Tell HN: Claude 4.7 is ignoring stop hooks

108•LatencyKills•5d ago•88 comments

Ask HN: When might we not have to do laundry or fold clothes or cook

23•samarthv•1d ago•18 comments

Why don't AI coding tools like REST?

16•sshadmand•1d ago•4 comments

Ask HN: Anyone want to collaborate on a local-first AI-based research assistant

24•venkatram-s•3d ago•9 comments

Ask HN: Do you read differently now that anything could be AI generated?

33•dwa3592•4d ago•31 comments

Ask HN: Will hardware ever be cheap again?

30•bjourne•2d ago•8 comments

Ask HN: How do solo devs protect their work in the age of vibe coding?

56•langs•6d ago•18 comments

You've reached the end!

Open in hackernews

Ask HN: Hosted Fossil for small teams – interesting, or wrong call?

7•ragelink•5h ago
I've been working on a hosted Fossil SCM service for a few months and I genuinely don't know if it's a good idea. The "We need a federation of forges" thread on the front page today made me think it's worth posting.

What I'm building: a hosted home for Fossil repos. Same onramp feel as a code host, but each project is a single self-contained SQLite file you can clone, email, or walk away with. The open source omnibus (Django + Postgres + Redis + Caddy + Litestream-to-S3) is at fossilrepo.io. The hosted version will be in private beta soon.

My rough thesis: 1. Fossil is already federated by design. Every clone is the entire project: issues, wiki, forum, history, code. That's the federation discussion happening on the front page right now, just with a 15+ year-old tool the SQLite project itself uses. If fossil clone works between any two hosts, lock-in basically dies.

2. AI agents need integrated context. A Fossil repo is one queryable SQLite file. An agent reads code + tickets + wiki + history with SELECT * instead of 47-odd GraphQL calls. RAG and MCP setups become trivial. Also has a cli tool thats super easy to use.

3. Small-but-serious teams are underserved. Git+GitHub won the macro market and that's not changing. But the 1-50 person team where the spec, the tickets, the wiki, and the code all belong in the same place... the integrated model is just better/easier.

Things I'm worried about: - Network effect — a repo isn't very useful if nobody else can find it - Inertia — Git muscle memory is hard to break - Codeberg / Forgejo / Gitea are all credible — what's the right wedge, if any? is this a solution that anyone wants?

I'd rather hear it from HN now than after we launch. Three honest questions: - Is this interesting, or am I solving a problem nobody has? - What would make you actually switch? - What am I missing?

Also stuck on the name. Both domains land on the same page, so vote whichever you'd actually use: https://fossilforge.io or https://fossilhub.io (I also have the .ai versions but .io feels more developer-y)

Comments

jdw64•4h ago
I think this will probably fail if it is positioned as a GitHub replacement.

As you said, Fossil may provide a more unified context for AI. But GitHub’s biggest advantage is that it effectively functions as a developer portfolio.

Federation is not really a buying reason for most developers. The core question is exposure. Git itself is distributed, so why did everything centralize around GitHub? The same thing happened with npm. Centralization is, in practice, something users often want.

So I think the real opportunity is not simply “GitHub should be replaced.” It is to target moments when there is already public pressure or momentum for teams to leave GitHub, and then focus on larger projects or teams that might actually move.

I suppose this is a kind of herd effect. Honestly, my main concern is whether the large teams capable of moving others will actually overcome GitHub’s inertia.

The idea is good, but I do not believe that the better technical solution necessarily wins. Also, from what I have observed, many open-source teams are actually hostile to the idea of AI context, so advertising the AI angle too strongly might even hurt adoption.

I think the killer feature matters more. If this is simply “hosted Fossil,” then the question becomes: what concrete problem does it solve?

At least from my perspective, your target audience and your proposed killer feature, AI-friendly context, do not seem fully aligned.

ragelink•2h ago
Thanks for the thoughtful feedback, looks like I have some more thinking about how to frame this.
luiskarlos•1h ago
This is a nice improvement over GitHub, especially in the context of agents. Having code, issues, history, documentation, and discussion in a more self-contained and structured project format seems like it could make it much easier for agents to understand and work with the full context of a project.