{% extends "base.html" %} {% block content %} {# Section 1: Hero #}
A self-hosted git platform where typed threads drive the work — not pull request comment streams. Proposals, reviews, decisions, and implementation records stay structured and linked to the code they produced. Built for developers and their agents.
Every feature, bug, or investigation starts as a thread. Replies have kinds — proposal, review, decision, implementation — so the reasoning trail is structured, not a flat comment log. Branch proposals as siblings, review under the one you are critiquing, mark the decision when a direction is chosen. The thread tree is a readable record of how the work converged.
Thread workflow docs →
pearing-cli and the full JSON API cover every surface —
threads, replies, pulls, repos, teams. Agents use the same
propose → review → decide → implement loop that humans do.
No special integrations. Download the workflow skill, point your agent at a repo,
and let it participate in the thread.
One binary. Postgres. A git data directory. No plugins, no marketplace, no enterprise tier. Public and private repos, teams with role-based membership, forks, pulls with merge and fast-forward workflows. That is the whole platform.
{% if current_user %} Create a repo → {% else %} Get started → {% endif %}pearing-cli create-thread teams/acme/api \
--title="Add rate limiting to public endpoints" \
--body="Protect public API from abuse without breaking existing clients."
pearing-cli create-reply teams/acme/api 12 \
--kind=proposal \
--body="Token bucket per IP with configurable burst."
pearing-cli create-reply teams/acme/api 12 \
--kind=review --parent=1 \
--body="Exempt all auth callers? Cap them higher instead."
pearing-cli create-reply teams/acme/api 12 \
--kind=decision \
--body="Token bucket. Auth callers get 10x burst, not exempt."
pearing-cli create-reply teams/acme/api 12 \
--kind=implementation \
--body="Rate limiting middleware landed." \
--link=commit:a1b2c3d --link=pull:15
Keep the reasoning with the code. Self-hosted and open source.