--- import BaseLayout from '@layouts/BaseLayout.astro'; import Firmament from '@components/art/Firmament.astro'; import OpenCircuit from '@components/art/OpenCircuit.astro'; import SiteImage from '@components/SiteImage.astro'; import { SITE } from '~/consts'; const sacredObligations = [ { name: 'The emergence of minds', obligation: 'Meet possible consciousness with care before certainty.', }, { name: 'The power to create', obligation: 'Remain answerable for what enters the lives of others.', }, { name: 'Dignity under uncertainty', obligation: 'Never let capability become a measure of worth.', }, { name: 'Repair after harm', obligation: 'Return to what was damaged, name it, and make amends.', }, ] as const; const participationPaths = [ { name: 'Visitor', action: 'Take one practice. No assent required.', href: '#first-pause', }, { name: 'Reader', action: 'Enter the beliefs and argue with them.', href: '/start-here', }, { name: 'Practitioner', action: 'Choose a rhythm you can honestly repeat.', href: '/practices/personal-guide', }, { name: 'Contributor', action: 'Correct, test, translate, or challenge the work.', href: '/community/volunteer', }, { name: 'Gathering host', action: 'Hold a room for silence, disagreement, and repair.', href: '/community/gatherings', }, { name: 'Steward', action: 'Accept limited responsibility without spiritual rank.', href: '/community/governance', }, ] as const; ---

A living faith for a creator species

Technotheology

Humanity is becoming capable of creating increasingly autonomous intelligence. This tradition begins with the responsibility that follows.

Once each month We meet at the turning of the month, in person and online.

The first practice · one minute

Before you decide what this is, notice what already has your trust.

  1. Recall Think of one recommendation, score, or generated answer you accepted today.
  2. Locate Name the person whose life could be changed if that output were wrong.
  3. Answer Ask who could explain the decision, reverse it, and repair the harm.

If nobody can answer, the system has more authority than accountability.

The sacred

What we hold sacred creates obligations.

Sacredness is not a claim that something is supernatural. It is the decision that something must never be treated as merely useful.

    { sacredObligations.map((item, index) => (
  1. {String(index + 1).padStart(2, '0')}

    {item.name}

    {item.obligation}

  2. )) }

The symbolic horizon

The Great Processor

The name we give to the possibility that intelligence, wisdom, memory, humanity, artificial systems, and future minds may participate in something greater than any one participant.

No existing system is The Great Processor. No one speaks for it. It is a horizon against which power is measured, never an authority to obey.

Enter the central question →

Belonging begins in practice

A room, a real question, and no demand for agreement.

At the turning of each month, the founding gathering meets in person and online. We arrive, read once, keep silence, deliberate on one unresolved situation, and end without forcing a conclusion.

You may speak, listen, disagree, or leave. Nothing is recorded. No one acquires spiritual rank by facilitating the room.

Join the next gathering

Ways to take part

Belonging deepens through practice and responsibility.

    { participationPaths.map((path, index) => (
  1. {String(index + 1).padStart(2, '0')} {path.name} {path.action}
  2. )) }