--- title: Tangled docs author: The Tangled Contributors date: 21 Sun, Dec 2025 abstract: | Tangled is a decentralized code hosting and collaboration platform. Every component of Tangled is open-source and self-hostable. [tangled.org](https://tangled.org) also provides hosting and CI services that are free to use. There are several models for decentralized code collaboration platforms, ranging from ActivityPub’s (Forgejo) federated model, to Radicle’s entirely P2P model. Our approach attempts to be the best of both worlds by adopting the AT Protocol—a protocol for building decentralized social applications with a central identity Our approach to this is the idea of “knots”. Knots are lightweight, headless servers that enable users to host Git repositories with ease. Knots are designed for either single or multi-tenant use which is perfect for self-hosting on a Raspberry Pi at home, or larger “community” servers. By default, Tangled provides managed knots where you can host your repositories for free. The appview at tangled.org acts as a consolidated "view" into the whole network, allowing users to access, clone and contribute to repositories hosted across different knots seamlessly. --- # Quick start guide ## Login or sign up You can [login](https://tangled.org) by using your AT Protocol account. If you are unclear on what that means, simply head to the [signup](https://tangled.org/signup) page and create an account. By doing so, you will be choosing Tangled as your account provider (you will be granted a handle of the form `user.tngl.sh`). In the AT Protocol network, users are free to choose their account provider (known as a "Personal Data Service", or PDS), and login to applications that support AT accounts. You can think of it as "one account for all of the atmosphere"! If you already have an AT account (you may have one if you signed up to Bluesky, for example), you can login with the same handle on Tangled (so just use `user.bsky.social` on the login page). ## Add an SSH key Once you are logged in, you can start creating repositories and pushing code. Tangled supports pushing git repositories over SSH. First, you'll need to generate an SSH key if you don't already have one: ```bash ssh-keygen -t ed25519 -C "foo@bar.com" ``` When prompted, save the key to the default location (`~/.ssh/id_ed25519`) and optionally set a passphrase. Copy your public key to your clipboard: ```bash # on X11 cat ~/.ssh/id_ed25519.pub | xclip -sel c # on wayland cat ~/.ssh/id_ed25519.pub | wl-copy # on macos cat ~/.ssh/id_ed25519.pub | pbcopy ``` Now, navigate to 'Settings' -> 'Keys' and hit 'Add Key', paste your public key, give it a descriptive name, and hit save. ## Create a repository Once your SSH key is added, create your first repository: 1. Hit the green `+` icon on the topbar, and select repository 2. Enter a repository name 3. Add a description 4. Choose a knotserver to host this repository on 5. Hit create Knots are self-hostable, lightweight Git servers that can host your repository. Unlike traditional code forges, your code can live on any server. Read the [Knots](TODO) section for more. ## Configure SSH To ensure Git uses the correct SSH key and connects smoothly to Tangled, add this configuration to your `~/.ssh/config` file: ``` Host tangled.org Hostname tangled.org User git IdentityFile ~/.ssh/id_ed25519 AddressFamily inet ``` This tells SSH to use your specific key when connecting to Tangled and prevents authentication issues if you have multiple SSH keys. Note that this configuration only works for knotservers that are hosted by tangled.org. If you use a custom knot, refer to the [Knots](TODO) section. ## Push your first repository Initialize a new Git repository: ```bash mkdir my-project cd my-project git init echo "# My Project" > README.md ``` Add some content and push! ```bash git add README.md git commit -m "Initial commit" git remote add origin git@tangled.org:user.tngl.sh/my-project git push -u origin main ``` That's it! Your code is now hosted on Tangled. ## Migrating an existing repository Moving your repositories from GitHub, GitLab, Bitbucket, or any other Git forge to Tangled is straightforward. You'll simply change your repository's remote URL. At the moment, Tangled does not have any tooling to migrate data such as GitHub issues or pull requests. First, create a new repository on tangled.org as described in the [Quick Start Guide](#create-a-repository). Navigate to your existing local repository: ```bash cd /path/to/your/existing/repo ``` You can inspect your existing Git remote like so: ```bash git remote -v ``` You'll see something like: ```bash origin git@github.com:username/my-project.git (fetch) origin git@github.com:username/my-project.git (push) ``` Update the remote URL to point to tangled: ```bash git remote set-url origin git@tangled.org:user.tngl.sh/my-project ``` Verify the change: ```bash git remote -v ``` You should now see: ```bash origin git@tangled.org:user.tngl.sh/my-project (fetch) origin git@tangled.org:user.tngl.sh/my-project (push) ``` Push all your branches and tags to Tangled: ```bash git push -u origin --all git push -u origin --tags ``` Your repository is now migrated to Tangled! All commit history, branches, and tags have been preserved. ## Mirroring a repository to Tangled If you want to maintain your repository on multiple forges simultaneously, for example, keeping your primary repository on GitHub while mirroring to Tangled for backup or redundancy, you can do so by adding [multiple remotes](https://git-scm.com/docs/git-push#_remotes). You can configure your local repository to push to both Tangled and, say, GitHub. You may already have the following setup: ```bash $ git remote -v origin git@github.com:username/my-project.git (fetch) origin git@github.com:username/my-project.git (push) ``` Now add Tangled as an additional push URL to the same remote: ```bash git remote set-url --add --push origin git@tangled.org:user.tngl.sh/my-project ``` You also need to re-add the original URL as a push destination (Git will now use the original URL to fetch only): ```bash git remote set-url --add --push origin git@github.com:username/my-project.git ``` Verify your configuration: ```bash $ git remote -v origin git@github.com:username/my-project.git (fetch) origin git@tangled.org:user.tngl.sh/my-project (push) origin git@github.com:username/my-project.git (push) ``` Notice that there's one fetch URL (the primary remote) and two push URLs. Now, whenever you push, Git will automatically push to both remotes: ```bash git push origin main ``` This single command pushes your `main` branch to both GitHub and Tangled simultaneously. To push all branches and tags: ```bash git push origin --all git push origin --tags ``` If you prefer more control over which remote you push to, you can maintain separate remotes: ```bash git remote add github git@github.com:username/my-project.git git remote add tangled git@tangled.org:user.tngl.sh/my-project ``` Then push to each explicitly: ```bash git push github main git push tangled main ``` # Hosting websites on Tangled You can serve static websites directly from your git repositories on Tangled. If you've used GitHub Pages or Codeberg Pages, this should feel familiar. ## Overview Every user gets a sites domain. If you signed up through Tangled's own PDS (`tngl.sh`), your sites domain is automatically `.tngl.sh` no setup needed. Otherwise, you can claim a `.tngl.io` domain from your settings. You can serve multiple sites per domain: - One **index site** served at the root of your domain (e.g. `alice.tngl.sh`) - Any number of **sub-path sites** served under the repository name (e.g. `alice.tngl.sh/my-project`) ## Claiming a domain If you don't have a `tngl.sh` handle, you need to claim a domain before publishing sites: 1. Go to **Settings → Sites** 2. Enter a subdomain (e.g. `alice` to claim `alice.tngl.io`) 3. Click **claim** You can only hold one domain at a time. Releasing a domain puts it in a 30-day cooldown before anyone else can claim it. ## Configuring a site for a repository 1. Navigate to your repository 2. Go to **Settings → Sites** 3. Choose a **branch** to deploy from 4. Set the **deploy directory** — the path within the repository containing your `index.html`. Use `/` for the root, or a subdirectory like `/docs` or `/public` 5. Choose the **site type**: - **Index site** — served at the root of your domain (e.g. `alice.tngl.sh`) - **Sub-path site** — served under the repository name (e.g. `alice.tngl.sh/my-project`) 6. Click **save** The site will be deployed automatically. You can see the status of your previous deploys in the **Recent Deploys** section at the bottom of the page. Sites are redeployed automatically on every push to the configured branch. ## Custom domains Tangled currently doesn't support custom domains for sites. This will be added in a future update. ## Deploy directory The deploy directory is the path within your repository that Tangled serves as the site root. It must contain an `index.html`. | Deploy directory | Result | |---|---| | `/` | Serves the repository root | | `/docs` | Serves the `docs/` subdirectory | | `/public` | Serves the `public/` subdirectory | Directories are served with automatic `index.html` resolution -- a request to `/about` will serve `/about/index.html` if it exists. ## Site types | Type | URL | |---|---| | Index site | `alice.tngl.sh` | | Sub-path site | `alice.tngl.sh/my-project` | Only one repository can be the index site for a given domain at a time. If another repository already holds the index site, you will see a notice in the settings and only the sub-path option will be available. ## Deploy triggers A deployment is triggered automatically when: - You push to the configured branch - You change the site configuration (branch, deploy directory, or site type) ## Disabling a site To stop serving a site, go to **Settings → Sites** in your repository and click **Disable**. This removes the site configuration and stops serving the site. The deployed files are also deleted from storage. Releasing your domain from **Settings → Sites** at the account level will disable all sites associated with it and delete their files. # Knot self-hosting guide So you want to run your own knot server? Great! Here are a few prerequisites: 1. A server of some kind (a VPS, a Raspberry Pi, etc.). Preferably running a Linux distribution of some kind. 2. A (sub)domain name. People generally use `knot.example.com`. 3. A valid SSL certificate for your domain. ## NixOS Refer to the [knot module](https://tangled.org/tangled.org/core/blob/master/nix/modules/knot.nix) for a full list of options. Sample configurations: - [The test VM](https://tangled.org/tangled.org/core/blob/master/nix/vm.nix#L85) - [@pyrox.dev/nix](https://tangled.org/pyrox.dev/nix/blob/c2b644c214d278af12523618de952ee2eab1af3d/hosts/marvin/services/tangled.nix#L15-26) ## Docker Refer to [@tangled.org/knot-docker](https://tangled.org/@tangled.org/knot-docker). Note that this is community maintained. ## Manual setup First, clone this repository: ``` git clone https://tangled.org/@tangled.org/core ``` Then, build the `knot` CLI. This is the knot administration and operation tool. For the purpose of this guide, we're only concerned with these subcommands: - `knot server`: the main knot server process, typically run as a supervised service - `knot guard`: handles role-based access control for git over SSH (you'll never have to run this yourself) - `knot keys`: fetches SSH keys associated with your knot; we'll use this to generate the SSH `AuthorizedKeysCommand` ``` cd core export CGO_ENABLED=1 go build -o knot ./cmd/knot ``` Next, move the `knot` binary to a location owned by `root` -- `/usr/local/bin/` is a good choice. Make sure the binary itself is also owned by `root`: ``` sudo mv knot /usr/local/bin/knot sudo chown root:root /usr/local/bin/knot ``` This is necessary because SSH `AuthorizedKeysCommand` requires [really specific permissions](https://stackoverflow.com/a/27638306). The `AuthorizedKeysCommand` specifies a command that is run by `sshd` to retrieve a user's public SSH keys dynamically for authentication. Let's set that up. ``` sudo tee /etc/ssh/sshd_config.d/authorized_keys_command.conf < /home/git/motd ``` Note that you should add a newline at the end if setting a non-empty message since the knot won't do this for you. ## Secure Mode Secure Mode isolates each `git` subprocess to the repository it is operating on, using two mechanisms: - **Linux Landlock** restricts the filesystem paths the subprocess can access -- it can only read/write its own repository and the system directories it needs to run. - **UID isolation** runs each subprocess as a virtual UID assigned to the repository owner, so that repositories belonging to different owners are isolated from each other at the OS level even if Landlock were somehow bypassed. Secure Mode requires: - Linux kernel >= 5.19 (Landlock V2). This is the minimum needed for `git push` to work, because receive-pack's quarantine migration uses cross-directory rename which requires the Landlock `REFER` access right (added in V2). Kernels 5.13-5.18 support Landlock V1 and clones will work, but pushes will fail with cross-device link errors. On kernels without any Landlock support (< 5.13), the sandbox call is a no-op: UID isolation still applies but no filesystem restriction is enforced. - `CAP_SETUID`, `CAP_SETGID`, and `CAP_CHOWN` available to the knot process. The NixOS module grants these automatically; for manual setups see the `setcap` step below. ### NixOS Add `server.secureMode = true;` to your knot module configuration: ```nix services.tangled.knot = { server.secureMode = true; # ... other options }; ``` The NixOS module handles everything else automatically: - Grants the required capabilities to the knot service via `AmbientCapabilities` in the systemd unit. - Installs a capability-bearing wrapper at `/run/wrappers/bin/knot` via `security.wrappers`, so that SSH-invoked git operations (pushes) also run under the correct UID without requiring the service to run as root. - Runs `knot migrate-isolation` at service start to chown existing repositories to their virtual UIDs. ### Manual setup **Step 1.** Grant the required capabilities to the knot binary. This allows the knot process to switch to virtual UIDs at runtime without running as root. You will need to repeat this step whenever the binary is updated. ``` sudo setcap cap_setuid,cap_setgid,cap_chown+eip /usr/local/bin/knot ``` **Step 2.** Run the migration tool to assign virtual UIDs to all existing repositories and set their filesystem permissions. This must be run as root: ``` sudo knot migrate-isolation \ --git-dir /home/git \ --db /home/git/knotserver.db \ --internal-api 127.0.0.1:5444 ``` You can re-run this at any time with `--force` to reapply permissions (e.g. after a manual repair or after updating the binary). **Step 2a.** Ensure the home directory is traversable by non-group users. Git subprocesses run as virtual UIDs that are not in the git group, and they need to resolve `$HOME/.config/git/config` to load the global config: ``` sudo chmod o+x /home/git ``` This adds only the execute bit, not read -- the virtual UIDs can traverse to known paths but cannot list directory contents. **Step 3.** Enable Secure Mode in your environment file: ``` KNOT_SERVER_SECURE_MODE=true ``` Or pass it as a flag: ``` knot server --secure-mode ``` **Step 4.** Regenerate the `AuthorizedKeysCommand` with the `-secure-mode` flag. This causes `knot keys` to emit guard command lines that include `-secure-mode`, so SSH pushes also get UID isolation: ``` sudo tee /etc/ssh/sshd_config.d/authorized_keys_command.conf < **Note:** the server will refuse to start in Secure Mode if any > repositories have not yet been isolation-migrated. Re-run > `migrate-isolation` if you see this error. ## Troubleshooting If you run your own knot, you may run into some of these common issues. You can always join the [IRC](https://web.libera.chat/#tangled) or [Discord](https://chat.tangled.org/) if this section does not help. ### Unable to push If you are unable to push to your knot or repository: 1. First, ensure that you have added your SSH public key to your account 2. Check to see that your knot has synced the key by running `knot keys` 3. Check to see if git is supplying the correct private key when pushing: `GIT_SSH_COMMAND="ssh -v" git push ...` 4. Check to see if `sshd` on the knot is rejecting the push for some reason: `journalctl -xeu ssh` (or `sshd`, depending on your machine). These logs are unavailable if using docker. 5. Check to see if the knot itself is rejecting the push, depending on your setup, the logs might be in one of the following paths: - `/tmp/knotguard.log` - `/home/git/log` - `/home/git/guard.log` # Spindles ## Pipelines Spindle workflows allow you to write CI/CD pipelines in a simple format. They're located in the `.tangled/workflows` directory at the root of your repository, and are defined using YAML. A workflow has a set of common fields that apply no matter which engine you pick: - [Trigger](#trigger): A **required** field that defines when a workflow should be triggered. - [Engine](#engine): A **required** field that defines which engine a workflow should run on. - [Clone options](#clone-options): An **optional** field that defines how the repository should be cloned. - [Environment](#environment): An **optional** field that allows you to define environment variables. - [Steps](#steps): An **optional** field that allows you to define what steps should run in the workflow. On top of these, each engine has its own options for things like dependencies and images. See [Engines](#engines) for the per-engine fields. ### Trigger The first thing to add to a workflow is the trigger, which defines when a workflow runs. This is defined using a `when` field, which takes in a list of conditions. Each condition has the following fields: - `event`: This is a **required** field that defines when your workflow should run. It's a list that can take one or more of the following values: - `push`: The workflow should run every time a commit is pushed to the repository. - `pull_request`: The workflow should run every time a pull request is made or updated. - `manual`: The workflow can be triggered manually. - `branch`: Defines which branches the workflow should run for. If used with the `push` event, commits to the branch(es) listed here will trigger the workflow. If used with the `pull_request` event, updates to pull requests targeting the branch(es) listed here will trigger the workflow. This field has no effect with the `manual` event. Supports glob patterns using `*` and `**` (e.g., `main`, `develop`, `release-*`). Either `branch` or `tag` (or both) must be specified for `push` events. - `tag`: Defines which tags the workflow should run for. Only used with the `push` event - when tags matching the pattern(s) listed here are pushed, the workflow will trigger. This field has no effect with `pull_request` or `manual` events. Supports glob patterns using `*` and `**` (e.g., `v*`, `v1.*`, `release-**`). Either `branch` or `tag` (or both) must be specified for `push` events. For example, if you'd like to define a workflow that runs when commits are pushed to the `main` and `develop` branches, or when pull requests that target the `main` branch are updated, or manually, you can do so with: ```yaml when: - event: ["push", "manual"] branch: ["main", "develop"] - event: ["pull_request"] branch: ["main"] ``` You can also trigger workflows on tag pushes. For instance, to run a deployment workflow when tags matching `v*` are pushed: ```yaml when: - event: ["push"] tag: ["v*"] ``` You can even combine branch and tag patterns in a single constraint (the workflow triggers if either matches): ```yaml when: - event: ["push"] branch: ["main", "release-*"] tag: ["v*", "stable"] ``` To skip CI for a push, pass a Git push option: ```sh git push -o skip-ci ``` `ci-skip` is also accepted. ### Engine Next is the engine on which the workflow should run, defined using the **required** `engine` field. The currently supported engines are: - `nixery`: This uses an instance of [Nixery](https://nixery.dev) to run steps, which allows you to add [dependencies](#dependencies) from Nixpkgs (https://github.com/NixOS/nixpkgs). You can search for packages on https://search.nixos.org, and there's a pretty good chance the package(s) you're looking for will be there. See [Nixery engine](#nixery-engine). - `microvm`: Runs the whole workflow inside its own microVM. Has configuration features for NixOS images that will let you enable services, do Docker-in-VM, etc. See [microVM engine](#microvm-engine). Example: ```yaml engine: "nixery" ``` Each engine also adds its own workflow fields (dependencies, images, services, and so on). These are documented under [Engines](#engines). ### Clone options When a workflow starts, the first step is to clone the repository. You can customize this behavior using the **optional** `clone` field. It has the following fields: - `skip`: Setting this to `true` will skip cloning the repository. This can be useful if your workflow is doing something that doesn't require anything from the repository itself. This is `false` by default. - `depth`: This sets the number of commits, or the "clone depth", to fetch from the repository. For example, if you set this to 2, the last 2 commits will be fetched. By default, the depth is set to 1, meaning only the most recent commit will be fetched, which is the commit that triggered the workflow. - `submodules`: If you use Git submodules (https://git-scm.com/book/en/v2/Git-Tools-Submodules) in your repository, setting this field to `true` will recursively fetch all submodules. This is `false` by default. The default settings are: ```yaml clone: skip: false depth: 1 submodules: false ``` ### Environment The `environment` field allows you define environment variables that will be available throughout the entire workflow. **Do not put secrets here, these environment variables are visible to anyone viewing the repository. You can add secrets for pipelines in your repository's settings.** Example: ```yaml environment: GOOS: "linux" GOARCH: "arm64" NODE_ENV: "production" MY_ENV_VAR: "MY_ENV_VALUE" ``` By default, the following environment variables are set: - `CI` - Always set to `true` to indicate a CI environment - `TANGLED_PIPELINE_ID` - The AT URI of the current pipeline - `TANGLED_PIPELINE_KIND` - One of `push`, `pull_request` or `manual` - `TANGLED_REPO_KNOT` - The repository's knot hostname - `TANGLED_REPO_DID` - The DID of the repository owner - `TANGLED_REPO_NAME` - The name of the repository - `TANGLED_REPO_DEFAULT_BRANCH` - The default branch of the repository - `TANGLED_REPO_URL` - The full URL to the repository These variables are only available when the pipeline is triggered by a push: - `TANGLED_REF` - The full git reference (e.g., `refs/heads/main` or `refs/tags/v1.0.0`) - `TANGLED_REF_NAME` - The short name of the reference (e.g., `main` or `v1.0.0`) - `TANGLED_REF_TYPE` - The type of reference, either `branch` or `tag` - `TANGLED_SHA` - The commit SHA that triggered the pipeline - `TANGLED_COMMIT_SHA` - Alias for `TANGLED_SHA` These variables are only available when the pipeline is triggered by a pull request: - `TANGLED_PR_SOURCE_BRANCH` - The source branch of the pull request - `TANGLED_PR_TARGET_BRANCH` - The target branch of the pull request - `TANGLED_PR_SOURCE_SHA` - The commit SHA of the source branch ### Steps The `steps` field allows you to define what steps should run in the workflow. It's a list of step objects, each with the following fields: - `name`: This field allows you to give your step a name. This name is visible in your workflow runs, and is used to describe what the step is doing. - `command`: This field allows you to define a command to run in that step. The step is run in a Bash shell, and the logs from the command will be visible in the pipelines page on the Tangled website. Any dependencies you added in your engine's section (see [Engines](#engines)) will be available to use here. - `environment`: Similar to the global [environment](#environment) config, this **optional** field is a key-value map that allows you to set environment variables for the step. **Do not put secrets here, these environment variables are visible to anyone viewing the repository. You can add secrets for pipelines in your repository's settings.** Example: ```yaml steps: - name: "Build backend" command: "go build" environment: GOOS: "darwin" GOARCH: "arm64" - name: "Build frontend" command: "npm run build" environment: NODE_ENV: "production" ``` ## Engines The common fields above apply to every workflow. Each engine then adds its own fields on top. Pick an engine with the [`engine`](#engine) field and use the matching section below. ### Nixery engine #### Dependencies When you're running a workflow you'll usually need additional dependencies. The `dependencies` field lets you define which dependencies to get, and from where. It's a key-value map, with the key being the registry to fetch dependencies from, and the value being the list of dependencies to fetch. The registry URL syntax can be found [on the nix manual](https://nix.dev/manual/nix/2.18/command-ref/new-cli/nix3-registry-add). Say you want to fetch Node.js and Go from `nixpkgs`, and a package called `my_pkg` you've made from your own registry at your repository at `https://tangled.org/@example.com/my_pkg`. You can define those dependencies like so: ```yaml dependencies: # nixpkgs nixpkgs: - nodejs - go # unstable nixpkgs/nixpkgs-unstable: - bun # custom registry git+https://tangled.org/@example.com/my_pkg: - my_pkg ``` Now these dependencies are available to use in your workflow! #### Complete nixery workflow ```yaml # .tangled/workflows/build.yml when: - event: ["push", "manual"] branch: ["main", "develop"] - event: ["pull_request"] branch: ["main"] engine: "nixery" # using the default values clone: skip: false depth: 1 submodules: false dependencies: # nixpkgs nixpkgs: - nodejs - go # custom registry git+https://tangled.org/@example.com/my_pkg: - my_pkg environment: GOOS: "linux" GOARCH: "arm64" NODE_ENV: "production" MY_ENV_VAR: "MY_ENV_VALUE" steps: - name: "Build backend" command: "go build" environment: GOOS: "darwin" GOARCH: "arm64" - name: "Build frontend" command: "npm run build" environment: NODE_ENV: "production" ``` If you want another example of a workflow, you can look at the one [Tangled uses to build the project](https://tangled.org/@tangled.org/core/blob/master/.tangled/workflows/build.yml). ### microVM engine #### Image A workflow picks the image to boot with the top-level `image` field: ```yaml engine: microvm image: nixos ``` There are two flavours of images: - **NixOS images** (e.g. `nixos`): the whole guest is built with Nix, so you can configure it from the workflow file itself. The `dependencies`, `services`, `virtualisation`, `registry` and `caches` fields below are all understood here, and the guest builds and activates that configuration before any of your steps run. - **Non-NixOS images** (e.g. `alpine`): there's no NixOS to configure, so the workflow-level config fields above have no effect. You still get a full machine to run steps in. The available image names depend on what the spindle operator has installed. `nixos` and `alpine` are examples. If `image` is omitted, the spindle's configured default image is used. #### Dependencies On the microVM engine, `dependencies` is a flat list of packages that are made available to every step. This field only applies to **NixOS images**; for other images you can use the package manager included in a step. The guest builds a [`nix develop`](https://nix.dev/manual/nix/2.18/command-ref/new-cli/nix3-develop)-style devshell from your dependencies and uses it for each step, so you can, for example, add `pkg-config` and `openssl` and have the `openssl-sys` crate while compiling a Rust project just work. A bare name like `go` is looked up in nixpkgs. You can also point at any flake with the `flakeref#attr` syntax, so `github:nixos/nixpkgs#hello` pulls `hello` straight out of that flake. ```yaml dependencies: - go - github:nixos/nixpkgs#hello ``` #### Registry The `registry` field remaps flake references, the same way `nix registry` does. This lets you pin or alias the flakes used by `dependencies`. For example, pin `nixpkgs` to `nixos-unstable` so that the bare `go` above resolves from unstable, and alias your own flake so you can use `myflake#tool` in `dependencies`: ```yaml registry: nixpkgs: github:nixos/nixpkgs/nixos-unstable myflake: github:me/x ``` #### Caches The `caches` field is a map of Nix binary cache URL to its trusted public key. These are fed into the spindle's read proxy, so the guest can substitute prebuilt paths from them instead of building everything from scratch. ```yaml caches: https://nix-community.cachix.org: "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" ``` #### Services and virtualisation The `services` and `virtualisation` fields are passed straight through to NixOS. Anything you could write under `services.*` or `virtualisation.*` in a NixOS configuration, you can write here, and it's brought up before any of your steps run. As a convenience, `true` works as shorthand for `.enable = true` anywhere an `enable` option exists (e.g. `virtualisation.docker: true`). ```yaml services: postgresql: enable: true ensureDatabases: ["spindle-workflow"] ensureUsers: - name: spindle-workflow ensureDBOwnership: true virtualisation: docker: true ``` #### Recipes ##### Lint, test and build a Node project ```yaml when: - event: ["push", "pull_request"] branch: ["main"] engine: microvm image: nixos dependencies: - pnpm steps: - name: "Install dependencies" command: pnpm install --frozen-lockfile - name: "Lint and test" command: | pnpm run lint pnpm test - name: "Build" command: pnpm run build ``` ##### Check formatting ```yaml when: - event: ["push", "pull_request"] branch: ["main"] engine: microvm image: alpine # slimmer image for checking the formatting steps: - name: "Install go" command: apk add go - name: "Check formatting" command: test -z $(gofmt -l .) ``` ##### Build a Rust project that links OpenSSL ```yaml when: - event: ["push", "pull_request"] branch: ["main"] engine: microvm image: nixos dependencies: - gcc - cargo - rustc - clippy - rustfmt - pkg-config # exports PKG_CONFIG_PATH for the libraries below - openssl # the C library + headers openssl-sys links against steps: - name: "Check formatting" command: cargo fmt --check - name: "Clippy" command: cargo clippy --all-targets -- -D warnings - name: "Test" command: cargo test --all - name: "Release build" command: cargo build --release ``` ##### Run migrations and integration tests against PostgreSQL ```yaml when: - event: ["push", "pull_request"] branch: ["main"] engine: microvm image: nixos environment: DATABASE_URL: "postgresql:///spindle-workflow?host=/run/postgresql" dependencies: - gcc - cargo - rustc - pkg-config - openssl - sqlx-cli services: postgresql: enable: true # has to be same name as the user for peer auth to work automatically ensureDatabases: ["spindle-workflow"] ensureUsers: - name: spindle-workflow ensureDBOwnership: true steps: - name: "Run migrations" command: sqlx migrate run - name: "Integration tests" command: cargo test --all ``` ##### Build and push a Docker image on tag ```yaml when: - event: ["push"] tag: ["v*"] engine: microvm image: nixos virtualisation: docker: true steps: - name: "Build and push to ghcr.io" command: | set -euo pipefail echo "$REGISTRY_TOKEN" | docker login ghcr.io -u "$REGISTRY_USER" --password-stdin image="ghcr.io/$REGISTRY_USER/myapp:$TANGLED_REF_NAME" docker build -t "$image" -t "ghcr.io/$REGISTRY_USER/myapp:latest" . docker push "$image" docker push "ghcr.io/$REGISTRY_USER/myapp:latest" ``` ##### Deploy to Cloudflare Workers on tag ```yaml # .tangled/workflows/deploy.yml when: - event: ["push"] tag: ["v*"] engine: microvm image: nixos dependencies: - pnpm steps: - name: "Install dependencies" command: pnpm install --frozen-lockfile - name: "Deploy worker" # `wrangler` picks up `CLOUDFLARE_API_TOKEN` from the env. # set it under **Settings → Secrets**. command: pnpm exec wrangler deploy ``` ##### Publish a release artifact ```yaml when: - event: ["push"] tag: ["v*"] # trigger on versions engine: microvm image: nixos dependencies: - go steps: - name: "Build release binary" command: | mkdir -p dist CGO_ENABLED=0 go build -trimpath -ldflags "-s -w" -o dist/myapp ./cmd/myapp - name: "Publish artifact record" command: | set -euo pipefail # change this if you're not on `tngl.sh` PDS="https://tngl.sh" # also update this to your handle or did ATP_IDENTIFIER="user.tngl.sh" ARTIFACT_PATH="dist/myapp" ARTIFACT_NAME="myapp" # set `ATP_APP_PASSWORD` under **Settings → Secrets** session=$(curl -fsS -X POST "$PDS/xrpc/com.atproto.server.createSession" \ -H "Content-Type: application/json" \ -d "{\"identifier\":\"$ATP_IDENTIFIER\",\"password\":\"$ATP_APP_PASSWORD\"}") jwt=$(echo "$session" | jq -r .accessJwt) did=$(echo "$session" | jq -r .did) # upload the binary as a blob blob=$(curl -fsS -X POST "$PDS/xrpc/com.atproto.repo.uploadBlob" \ -H "Authorization: Bearer $jwt" \ -H "Content-Type: application/octet-stream" \ --data-binary @"$ARTIFACT_PATH") # note that this requires an annotated tag (`git tag -a v1.0.0 -m ...`) tag_hash=$(git rev-parse "$TANGLED_REF_NAME^{tag}") tag_bytes=$(printf '%s' "$tag_hash" | xxd -r -p | base64 | tr -d '=') # the sh.tangled.repo.artifact record for your artifact record=$(jq -n \ --arg did "$did" \ --arg tag "$tag_bytes" \ --arg name "$ARTIFACT_NAME" \ --arg repo "$TANGLED_REPO_URL" \ --arg created "$(date -Iseconds)" \ --argjson blob "$(echo "$blob" | jq .blob)" '{ repo: $did, collection: "sh.tangled.repo.artifact", validate: false, record: { "$type": "sh.tangled.repo.artifact", tag: {"$bytes": $tag}, name: $name, repo: $repo, artifact: $blob, createdAt: $created } }') # create the record on the PDS curl -fsS -X POST "$PDS/xrpc/com.atproto.repo.createRecord" \ -H "Authorization: Bearer $jwt" \ -H "Content-Type: application/json" \ -d "$record" ``` ## Self-hosting guide ### Prerequisites - Go - For the **nixery** engine: Docker (or Podman with Docker compatibility enabled). - For the **microVM** engine: a Linux host with KVM, plus the microVM host dependencies described in [Running microVM workflows](#running-microvm-workflows). ### Configuration Spindle is configured using environment variables. The following environment variables are available: - `SPINDLE_SERVER_LISTEN_ADDR`: The address the server listens on (default: `"0.0.0.0:6555"`). - `SPINDLE_SERVER_DB_PATH`: The path to the SQLite database file (default: `"spindle.db"`). - `SPINDLE_SERVER_HOSTNAME`: The hostname of the server (required). - `SPINDLE_SERVER_JETSTREAM_ENDPOINT`: The endpoint of the Jetstream server (default: `"wss://jetstream1.us-west.bsky.network/subscribe"`). - `SPINDLE_SERVER_DEV`: A boolean indicating whether the server is running in development mode (default: `false`). - `SPINDLE_SERVER_OWNER`: The DID of the owner (required). - `SPINDLE_SERVER_LOG_DIR`: The directory to store workflow logs (default: `"/var/log/spindle"`). - `SPINDLE_SERVER_DOCKER_SOCKET`: Path to Docker socket to expose to invoked Spindle containers (default: `""`). - `SPINDLE_PIPELINES_NIXERY`: The Nixery URL (default: `"nixery.tangled.sh"`). - `SPINDLE_PIPELINES_WORKFLOW_TIMEOUT`: The default workflow timeout (default: `"5m"`). For the microVM engine, the following are also available (prefix `SPINDLE_MICROVM_PIPELINES_`): - `SPINDLE_MICROVM_PIPELINES_IMAGE_DIR`: Directory containing microVM images (**required** to use the engine). See [Running microVM workflows](#running-microvm-workflows). - `SPINDLE_MICROVM_PIPELINES_DEFAULT_IMAGE`: Image used when a workflow doesn't set `image` (default: `"nixos-x86_64"`). - `SPINDLE_MICROVM_PIPELINES_OVERLAY_DIR`: Where per-workflow temporary disks are created (default: the system temp dir). - `SPINDLE_MICROVM_PIPELINES_ENABLE_KVM`: Use KVM hardware acceleration (default: `true`). Without KVM, guests fall back to slow software emulation. - `SPINDLE_MICROVM_PIPELINES_WORKFLOW_TIMEOUT`: Default workflow timeout (default: `"5m"`). Optional resource limits (a value of `0` disables that limit). The limits cap usage across all running microVM workflows: - `SPINDLE_MICROVM_PIPELINES_MAX_TOTAL_MEMORY_MIB` - `SPINDLE_MICROVM_PIPELINES_MAX_TOTAL_VCPUS` - `SPINDLE_MICROVM_PIPELINES_MAX_TOTAL_DISK_MIB` Optional cgroup enforcement: - `SPINDLE_MICROVM_PIPELINES_ENABLE_CGROUPS`: Place each workflow's QEMU and slirp4netns in a per-workflow cgroup= (default: `false`). - `SPINDLE_MICROVM_PIPELINES_CGROUP_PARENT`: Parent cgroup; `self` resolves the spindle service's own cgroup (default: `"self"`). - `SPINDLE_MICROVM_PIPELINES_CGROUP_PIDS_MAX`: Max processes per workflow cgroup (default: `4096`). - `SPINDLE_MICROVM_PIPELINES_CGROUP_SWAP_MAX_MIB`: Max swap per workflow cgroup (default: `0`, no swap). - `SPINDLE_MICROVM_PIPELINES_CGROUP_SUPERVISOR_MEMORY_MIN_MIB`: Memory protected for spindle itself so it isn't OOM-killed before the workflows (default: `512`). To push paths built inside microVMs back to a shared Nix cache (and read from it), configure the cache (prefix `SPINDLE_NIX_CACHE_`): - `SPINDLE_NIX_CACHE_READ_URLS`: Comma-separated binary cache URLs the guest reads from. - `SPINDLE_NIX_CACHE_TRUSTED_PUBLIC_KEYS`: Comma-separated trusted public keys for those caches. - `SPINDLE_NIX_CACHE_UPLOAD_URL`: Cache URL that paths built in the guest are uploaded to. ### Running spindle 1. **Set the environment variables.** For example: ```shell export SPINDLE_SERVER_HOSTNAME="your-hostname" export SPINDLE_SERVER_OWNER="your-did" ``` 2. **Build the Spindle binary.** ```shell cd core go mod download go build -o cmd/spindle/spindle cmd/spindle/main.go ``` 3. **Create the log directory.** ```shell sudo mkdir -p /var/log/spindle sudo chown $USER:$USER -R /var/log/spindle ``` 4. **Run the Spindle binary.** ```shell ./cmd/spindle/spindle ``` Spindle will now start, connect to the Jetstream server, and begin processing pipelines. ### Running microVM workflows The microVM engine needs a few extra things on the host, and it needs images to boot. #### Host dependencies microVM workflows depend on a handful of host tools and devices. spindle checks for the ones an image needs right before it launches, so a missing dependency surfaces as a clear error. You'll need: - `qemu`: the runner. The QEMU binary for the image's arch must be present (e.g. `qemu-system-x86_64`). - `mkfs.ext4` (from `e2fsprogs`): to format the per-workflow writable volumes. - [`slirp4netns`](https://github.com/rootless-containers/slirp4netns#install), `ip` (from `iproute2`), `mount` and `unshare` (from `util-linux`): used to sandbox guest networking. - `/dev/kvm`: for hardware acceleration (unless you disable KVM with `SPINDLE_MICROVM_PIPELINES_ENABLE_KVM=false`). - `/dev/vhost-vsock`: used by QEMU to enable guest-to-host vsock communication. - `/dev/vsock`: used by spindle on the host to listen on vsock ports and accept guest agent connections. - `/dev/net/tun`: required by `slirp4netns` to set up tap devices for sandboxed guest networking. On NixOS, the [spindle module](https://tangled.org/tangled.org/core/blob/master/nix/modules/spindle.nix) puts `qemu`, `e2fsprogs`, `slirp4netns`, `iproute2` and `util-linux` on the service's `PATH` for you. #### Container virtualization Running `spindle` inside a container (e.g., Docker, Podman, or LXD) requires passing host device nodes into the container and granting the runtime additional privileges. Because spindle uses nested namespaces (`unshare`) and helper tools (`slirp4netns`), the container configuration will require: - `/dev/vsock`, `/dev/vhost-vsock`, `/dev/kvm`, and `/dev/net/tun` mapped from the host. - `NET_ADMIN` and `SYS_ADMIN` capabilities to manage network namespaces and mounts inside the container. - Relaxed seccomp filters (e.g., `seccomp=unconfined`) and SELinux/AppArmor containment if they restrict namespace creation or device access. #### Building images Images are built with Nix. The flake exposes packages for the two stock images (use the `-tarball` prefixed ones for a gzipped tarball you can copy to another host): ```shell # a NixOS image nix build .#spindle-nixos-image # an Alpine image nix build .#spindle-alpine-image ``` #### Installing images Spindle looks for images in `SPINDLE_MICROVM_PIPELINES_IMAGE_DIR`. An image is resolved by the name a workflow puts in its `image` field, matched literally against what's on disk: 1. a directory `/` containing a `spec.json` (next to the kernel/initrd/store-disk), or 2. a flat `.json` self-contained spec. Resolution depends only on the name and what's on disk, never on the host doing the resolving, so the same workflow resolves to the same image on every spindle. If you keep multiple arches side by side, you can name them `-` (e.g. `nixos-x86_64`, `alpine-aarch64`); the suffix is just part of the name. To make a name like `nixos` work if you are hosting multiple arches, you can use symlinks. On NixOS, you'll most likely want to use `systemd.tmpfiles.rules` to set these up declaratively. ## Architecture Spindle is a small CI runner service. Here's a high-level overview of how it operates: - Listens for [`sh.tangled.spindle.member`](/lexicons/spindle/member.json) and [`sh.tangled.repo`](/lexicons/repo.json) records on the Jetstream. - When a new repo record comes through (typically when you add a spindle to a repo from the settings), spindle then resolves the underlying knot and subscribes to repo events (see: [`sh.tangled.pipeline`](/lexicons/pipeline.json)). - The spindle engine then handles execution of the pipeline, with results and logs beamed on the spindle event stream over WebSocket ### The engines Spindle has two execution backends, picked per-workflow with the [`engine`](#engine) field: - **nixery**: executes each step in a fresh Docker container (Podman works too, if Docker compatibility is enabled so that `/run/docker.sock` is created), with state persisted across steps within the `/tangled/workspace` directory. The base image for the container is constructed on the fly using [Nixery](https://nixery.dev), which is/rhandy for caching layers for frequently used packages. - **microvm**: runs the whole workflow inside its own microVM, supporting different images, with extra configuration for NixOS images (e.g. services in workflow file) See the [engine README](https://tangled.org/tangled.org/core/blob/master/spindle/engines/microvm/README.md) for the architecture in depth. The pipeline manifest is [specified here](https://docs.tangled.org/spindles.html#pipelines). ## Secrets with openbao This document covers setting up spindle to use OpenBao for secrets management via OpenBao Proxy instead of the default SQLite backend. ### Overview Spindle now uses OpenBao Proxy for secrets management. The proxy handles authentication automatically using AppRole credentials, while spindle connects to the local proxy instead of directly to the OpenBao server. This approach provides better security, automatic token renewal, and simplified application code. ### Installation Install OpenBao from Nixpkgs: ```bash nix shell nixpkgs#openbao # for a local server ``` ### Setup The setup process can is documented for both local development and production. #### Local development Start OpenBao in dev mode: ```bash bao server -dev -dev-root-token-id="root" -dev-listen-address=127.0.0.1:8201 ``` This starts OpenBao on `http://localhost:8201` with a root token. Set up environment for bao CLI: ```bash export BAO_ADDR=http://localhost:8200 export BAO_TOKEN=root ``` #### Production You would typically use a systemd service with a configuration file. Refer to [@tangled.org/infra](https://tangled.org/@tangled.org/infra) for how this can be achieved using Nix. Then, initialize the bao server: ```bash bao operator init -key-shares=1 -key-threshold=1 ``` This will print out an unseal key and a root key. Save them somewhere (like a password manager). Then unseal the vault to begin setting it up: ```bash bao operator unseal ``` All steps below remain the same across both dev and production setups. #### Configure openbao server Create the spindle KV mount: ```bash bao secrets enable -path=spindle -version=2 kv ``` Set up AppRole authentication and policy: Create a policy file `spindle-policy.hcl`: ```hcl # Full access to spindle KV v2 data path "spindle/data/*" { capabilities = ["create", "read", "update", "delete"] } # Access to metadata for listing and management path "spindle/metadata/*" { capabilities = ["list", "read", "delete", "update"] } # Allow listing at root level path "spindle/" { capabilities = ["list"] } # Required for connection testing and health checks path "auth/token/lookup-self" { capabilities = ["read"] } ``` Apply the policy and create an AppRole: ```bash bao policy write spindle-policy spindle-policy.hcl bao auth enable approle bao write auth/approle/role/spindle \ token_policies="spindle-policy" \ token_ttl=1h \ token_max_ttl=4h \ bind_secret_id=true \ secret_id_ttl=0 \ secret_id_num_uses=0 ``` Get the credentials: ```bash # Get role ID (static) ROLE_ID=$(bao read -field=role_id auth/approle/role/spindle/role-id) # Generate secret ID SECRET_ID=$(bao write -f -field=secret_id auth/approle/role/spindle/secret-id) echo "Role ID: $ROLE_ID" echo "Secret ID: $SECRET_ID" ``` #### Create proxy configuration Create the credential files: ```bash # Create directory for OpenBao files mkdir -p /tmp/openbao # Save credentials echo "$ROLE_ID" > /tmp/openbao/role-id echo "$SECRET_ID" > /tmp/openbao/secret-id chmod 600 /tmp/openbao/role-id /tmp/openbao/secret-id ``` Create a proxy configuration file `/tmp/openbao/proxy.hcl`: ```hcl # OpenBao server connection vault { address = "http://localhost:8200" } # Auto-Auth using AppRole auto_auth { method "approle" { mount_path = "auth/approle" config = { role_id_file_path = "/tmp/openbao/role-id" secret_id_file_path = "/tmp/openbao/secret-id" } } # Optional: write token to file for debugging sink "file" { config = { path = "/tmp/openbao/token" mode = 0640 } } } # Proxy listener for spindle listener "tcp" { address = "127.0.0.1:8201" tls_disable = true } # Enable API proxy with auto-auth token api_proxy { use_auto_auth_token = true } # Enable response caching cache { use_auto_auth_token = true } # Logging log_level = "info" ``` #### Start the proxy Start OpenBao Proxy: ```bash bao proxy -config=/tmp/openbao/proxy.hcl ``` The proxy will authenticate with OpenBao and start listening on `127.0.0.1:8201`. #### Configure spindle Set these environment variables for spindle: ```bash export SPINDLE_SERVER_SECRETS_PROVIDER=openbao export SPINDLE_SERVER_SECRETS_OPENBAO_PROXY_ADDR=http://127.0.0.1:8201 export SPINDLE_SERVER_SECRETS_OPENBAO_MOUNT=spindle ``` On startup, spindle will now connect to the local proxy, which handles all authentication automatically. ### Production setup for proxy For production, you'll want to run the proxy as a service: Place your production configuration in `/etc/openbao/proxy.hcl` with proper TLS settings for the vault connection. ### Verifying setup Test the proxy directly: ```bash # Check proxy health curl -H "X-Vault-Request: true" http://127.0.0.1:8201/v1/sys/health # Test token lookup through proxy curl -H "X-Vault-Request: true" http://127.0.0.1:8201/v1/auth/token/lookup-self ``` Test OpenBao operations through the server: ```bash # List all secrets bao kv list spindle/ # Add a test secret via the spindle API, then check it exists bao kv list spindle/repos/ # Get a specific secret bao kv get spindle/repos/your_repo_path/SECRET_NAME ``` ### How it works - Spindle connects to OpenBao Proxy on localhost (typically port 8200 or 8201) - The proxy authenticates with OpenBao using AppRole credentials - All spindle requests go through the proxy, which injects authentication tokens - Secrets are stored at `spindle/repos/{sanitized_repo_path}/{secret_key}` - Repository paths like `did:plc:alice/myrepo` become `did_plc_alice_myrepo` - The proxy handles all token renewal automatically - Spindle no longer manages tokens or authentication directly ### Troubleshooting **Connection refused**: Check that the OpenBao Proxy is running and listening on the configured address. **403 errors**: Verify the AppRole credentials are correct and the policy has the necessary permissions. **404 route errors**: The spindle KV mount probably doesn't exist—run the mount creation step again. **Proxy authentication failures**: Check the proxy logs and verify the role-id and secret-id files are readable and contain valid credentials. **Secret not found after writing**: This can indicate policy permission issues. Verify the policy includes both `spindle/data/*` and `spindle/metadata/*` paths with appropriate capabilities. Check proxy logs: ```bash # If running as systemd service journalctl -u openbao-proxy -f # If running directly, check the console output ``` Test AppRole authentication manually: ```bash bao write auth/approle/login \ role_id="$(cat /tmp/openbao/role-id)" \ secret_id="$(cat /tmp/openbao/secret-id)" ``` # Webhooks Webhooks allow you to receive HTTP POST notifications when events occur in your repositories. This enables you to integrate Tangled with external services, trigger CI/CD pipelines, send notifications, or automate workflows. ## Overview Webhooks send HTTP POST requests to URLs you configure whenever specific events happen. Currently, Tangled supports push events, with more event types coming soon. ## Configuring webhooks To set up a webhook for your repository: 1. Navigate to your repository 2. Go to **Settings → Hooks** 3. Click **new webhook** 4. Configure your webhook: - **Payload URL**: The endpoint that will receive the webhook POST requests - **Secret**: An optional secret key for verifying webhook authenticity (leave blank to send unsigned webhooks) - **Events**: Select which events trigger the webhook (currently only push events) - **Active**: Toggle whether the webhook is enabled ## Webhook payload ### Push When a push event occurs, Tangled sends a POST request with a JSON payload of the format: ```json { "after": "7b320e5cbee2734071e4310c1d9ae401d8f6cab5", "before": "c04ddf64eddc90e4e2a9846ba3b43e67a0e2865e", "pusher": { "did": "did:plc:hwevmowznbiukdf6uk5dwrrq" }, "ref": "refs/heads/main", "repository": { "clone_url": "https://tangled.org/did:plc:hwevmowznbiukdf6uk5dwrrq/some-repo", "created_at": "2025-09-15T08:57:23Z", "description": "an example repository", "fork": false, "full_name": "did:plc:hwevmowznbiukdf6uk5dwrrq/some-repo", "html_url": "https://tangled.org/did:plc:hwevmowznbiukdf6uk5dwrrq/some-repo", "name": "some-repo", "open_issues_count": 5, "owner": { "did": "did:plc:hwevmowznbiukdf6uk5dwrrq" }, "ssh_url": "ssh://git@tangled.org/did:plc:hwevmowznbiukdf6uk5dwrrq/some-repo", "stars_count": 1, "updated_at": "2025-09-15T08:57:23Z" } } ``` ## HTTP headers Each webhook request includes the following headers: - `Content-Type: application/json` - `User-Agent: Tangled-Hook/` — User agent with short SHA of the commit - `X-Tangled-Event: push` — The event type - `X-Tangled-Hook-ID: ` — The webhook ID - `X-Tangled-Delivery: ` — Unique delivery ID - `X-Tangled-Signature-256: sha256=` — HMAC-SHA256 signature (if secret configured) ## Verifying webhook signatures If you configured a secret, you should verify the webhook signature to ensure requests are authentic. For example, in Go: ```go package main import ( "crypto/hmac" "crypto/sha256" "encoding/hex" "io" "net/http" "strings" ) func verifySignature(payload []byte, signatureHeader, secret string) bool { // Remove 'sha256=' prefix from signature header signature := strings.TrimPrefix(signatureHeader, "sha256=") // Compute expected signature mac := hmac.New(sha256.New, []byte(secret)) mac.Write(payload) expected := hex.EncodeToString(mac.Sum(nil)) // Use constant-time comparison to prevent timing attacks return hmac.Equal([]byte(signature), []byte(expected)) } func webhookHandler(w http.ResponseWriter, r *http.Request) { // Read the request body payload, err := io.ReadAll(r.Body) if err != nil { http.Error(w, "Bad request", http.StatusBadRequest) return } // Get signature from header signatureHeader := r.Header.Get("X-Tangled-Signature-256") // Verify signature if signatureHeader != "" && verifySignature(payload, signatureHeader, yourSecret) { // Webhook is authentic, process it processWebhook(payload) w.WriteHeader(http.StatusOK) } else { http.Error(w, "Invalid signature", http.StatusUnauthorized) } } ``` ## Delivery retries Webhooks are automatically retried on failure: - **3 total attempts** (1 initial + 2 retries) - **Exponential backoff** starting at 1 second, max 10 seconds - **Retried on**: - Network errors - HTTP 5xx server errors - **Not retried on**: - HTTP 4xx client errors (bad request, unauthorized, etc.) ### Timeouts Webhook requests timeout after 30 seconds. If your endpoint needs more time: 1. Respond with 200 OK immediately 2. Process the webhook asynchronously in the background ## Example integrations ### Discord notifications ```javascript app.post("/webhook", (req, res) => { const payload = req.body; fetch("https://discord.com/api/webhooks/...", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ content: `New push to ${payload.repository.full_name}`, embeds: [ { title: `${payload.pusher.did} pushed to ${payload.ref}`, url: payload.repository.html_url, color: 0x00ff00, }, ], }), }); res.status(200).send("OK"); }); ``` # Migrating knots and spindles Sometimes, non-backwards compatible changes are made to the knot/spindle XRPC APIs. If you host a knot or a spindle, you will need to follow this guide to upgrade. Typically, this only requires you to deploy the newest version. This document is laid out in reverse-chronological order. Newer migration guides are listed first, and older guides are further down the page. ## Upgrading to v1.16.0-alpha Starting with v1.16.0-alpha, spindles own CI pipeline data directly. The appview no longer stores pipeline runs or follows spindle event streams for pipeline history. Instead, it asks the configured spindle for pipeline lists, single pipeline details, workflow logs, retries, and cancellations over XRPC. This means that existing pipeline logs / runs won't appear after you upgrade. Existing pipeline history from the appview cannot be automatically migrated. If you want to migrate your data, you can reach out to us and we will send you an SQL file that'll add the data into your spindle. - Upgrade to the latest tag (v1.16.0 or above) - Head to the [spindle dashboard](https://tangled.org/settings/spindles) and hit the "retry" button to verify your spindle ## Upgrading to v1.15.0-alpha With v1.15.0-alpha, a knot itself owns its members and per-repo collaborators directly. Previously this data was sourced from PDS records (`sh.tangled.knot.member` and `sh.tangled.repo.collaborator`) that the appview and the knot both read off the firehose. The knot is now the source of truth and serves them over XRPC instead: - `sh.tangled.knot.addMember`, `sh.tangled.knot.removeMember`, `sh.tangled.knot.listMembers` - `sh.tangled.repo.addCollaborator`, `sh.tangled.repo.removeCollaborator`, `sh.tangled.repo.listCollaborators` Until your knot is upgraded, the appview keeps reading its members and collaborators from the old firehose-sourced records. Upgrade to move your knot onto knot-owned access control. - Upgrade to the latest tag (v1.15.0 or above) - Head to the [knot dashboard](https://tangled.org/settings/knots) and hit the "retry" button to verify your knot ## Upgrading to v1.14.0-alpha Starting with v1.14.0-alpha, the fully knot uses the repoDID as its canonical handle for repositories. This unlocks repository renames from the appview UI and changes the wire format for the following lexicons (`sh.tangled.repo.pull`, `sh.tangled.repo.collaborator`, `sh.tangled.repo.issue`, `sh.tangled.git.refUpdate`). Knots that have not been upgraded may silently drop new push events, pull requests, issues, and collaborator invites for repositories they host until upgraded. So upgrade please!!! - Upgrade to the latest tag (v1.14.0 or above) - Head to the [knot dashboard](https://tangled.org/settings/knots) and hit the "retry" button to verify your knot ## Upgrading to v1.13.0-alpha Starting with v1.13.0-alpha, every repository on a knot is assigned a DID. This makes repositories stable across renames and transfers. When you upgrade your knot to this version, the server will automatically mint DIDs for all existing repositories on startup. This is a one-time process and you may see additional log output during the first boot as DIDs are assigned. - Upgrade to the latest tag (v1.13.0 or above) - Head to the [knot dashboard](https://tangled.org/settings/knots) and hit the "retry" button to verify your knot ## Upgrading from v1.8.x After v1.8.2, the HTTP API for knots and spindles has been deprecated and replaced with XRPC. Repositories on outdated knots will not be viewable from the appview. Upgrading is straightforward however. For knots: - Upgrade to the latest tag (v1.9.0 or above) - Head to the [knot dashboard](https://tangled.org/settings/knots) and hit the "retry" button to verify your knot For spindles: - Upgrade to the latest tag (v1.9.0 or above) - Head to the [spindle dashboard](https://tangled.org/settings/spindles) and hit the "retry" button to verify your spindle ## Upgrading from v1.7.x After v1.7.0, knot secrets have been deprecated. You no longer need a secret from the appview to run a knot. All authorized commands to knots are managed via [Inter-Service Authentication](https://atproto.com/specs/xrpc#inter-service-authentication-jwt). Knots will be read-only until upgraded. Upgrading is quite easy, in essence: - `KNOT_SERVER_SECRET` is no more, you can remove this environment variable entirely - `KNOT_SERVER_OWNER` is now required on boot, set this to your DID. You can find your DID in the [settings](https://tangled.org/settings) page. - Restart your knot once you have replaced the environment variable - Head to the [knot dashboard](https://tangled.org/settings/knots) and hit the "retry" button to verify your knot. This simply writes a `sh.tangled.knot` record to your PDS. If you use the nix module, simply bump the flake to the latest revision, and change your config block like so: ```diff services.tangled.knot = { enable = true; server = { - secretFile = /path/to/secret; + owner = "did:plc:foo"; }; }; ``` # Bobbin Bobbin is an API appview for Tangled records. It serves XRPC endpoints for `sh.tangled.*`, with it you can get repos, issues, pulls, comments, follows, stars, labels, pipelines, and profiles. It is read-only, there is no auth, since that should all be handled direct-to-PDS and knot respectively. **Bobbin has no permanent storage**. It is only a glorified edge index, in the graph theory sense. Additionally it has a record cache, re-filled on demand. All other data that Bobbin serves comes live from PDSes & knots. ## What Bobbin needs The way that Bobbin is able to pull off being so stateless is by moving state upstream. Primarily it depends on an instance of [Hydrant](https://tangled.org/did:plc:6v3ul2ptnqctyxwkz5ti4amn) , which is the service that gives an event stream for Bobbin to quickly backfill from on every restart. Backfilling ought to take less than a couple of minutes maximum. If the upstream instance of Hydrant fails while Bobbin is live, its list/count endpoints stop advancing and report a stale cursor. Single-lookups will continue working, due to the second dependency: [Slingshot](https://tangled.org/did:plc:c7mc2fn47ihdihul4vjwsuy3/tree/main/slingshot). Slingshot fetches individual records & resolves identities. If the upstream instance of Slingshot fails, single-lookups will fail with a `502` error. There are some aggregation endpoints that use Slingshot for hydrating, which will also fail. A soft dependency that ought to exist for Bobbin to operate correctly is simply the plethora of knots that are out there, that Bobbin talks to directly for git data and, for knots at v1.15+, members & collaborators. ## Building Bobbin Bobbin is under [Tangled's core monorepo, under bobbin/](https://tangled.org/did:plc:j5hmlfdrwkvtxm7cjmu7j2is/tree/master/bobbin). Here's an easy local debug-build: ```sh cargo build -p bobbin ``` Bobbin loves being in a container. When using `bobbin/containerfiles/bobbin.Containerfile`, it runs `cargo build --release --bin bobbin --package bobbin` within a little Debian runtime, exposing port 8090. ## Configuration The best way to configure Bobbin is via a toml config file. There's an `example.toml` in [Bobbin's subdir](https://tangled.org/did:plc:j5hmlfdrwkvtxm7cjmu7j2is/blob/master/bobbin/example.toml). Every value is overridable by a `BOBBIN_*` env var. The load order is env, then `--config `, then `/etc/bobbin/config.toml`, then built-in defaults. Load and check a config without starting the server: ```sh bobbin --config config.toml validate ``` Minimal config is the two upstream URLs. The hydrant URL takes `ws://` or `wss://`. An `http://` or `https://` URL is rewritten to the matching websocket scheme at connection-time. ```toml [server] binds = ["127.0.0.1:8090"] # Loopback-only & can leave empty to disable debug introspection. debug_bind = "127.0.0.1:8091" [hydrant] url = "https://hydrant.example.com" [slingshot] url = "https://slingshot.example.com" ``` > 🦪 Lewis > > At time of writing, we (Tangled) don't host public > instances of Hydrant or Slingshot. You will have to > find public instances or spin these up yourself! :P Take a gander in the project's example.toml for an exhaustive list of things to configure. You will discover fun things such as a configurable adaptive loop that watches the cgroup memory limit & throttles heavy requests under pressure. It only works if it detects a cgroup limit is present. The config for that is in the `[backpressure]` block of the config template. ## Running Bobbin Start the server using a config toml: ```bash bobbin --config config.toml ``` Bobbin wakes up in a cold sweat and immediately gets to work: 1. It binds its listeners, connects to the Hydrant stream in the background. 2. It serves requests from the first moment it's alive, even before the Hydrant stream connects or finishes catching up. Having a cold Hydrant itself costs only latency and approximate counts. ## The API **Single lookups** take a record's AT-URI. - `getRepo` takes the repo URI: ```sh curl "$BOBBIN/xrpc/sh.tangled.repo.getRepo?repo=at://did:plc:boltless/sh.tangled.repo/squid" ``` ```json { "uri": "at://did:plc:boltless/sh.tangled.repo/squid", "cid": "bafyrei...", "value": { "$type": "sh.tangled.repo", "knot": "knot1.tangled.sh", "description": "...", "createdAt": "..." } } ``` - `getProfile` takes the full profile record URI, so a bare handle or DID will not resolve: ```sh curl "$BOBBIN/xrpc/sh.tangled.actor.getProfile?actor=at://did:plc:boltless/sh.tangled.actor.profile/self" ``` - If Slingshot cannot serve the record, the response is `502`: ```json { "error": "UpstreamFailed", "message": "upstream unavailable: ..." } ``` **Aggregation** endpoints come in `list*` and `count*` pairs, each with a `*By` sibling, and require a `subject` query param. - `listRepos` and `countRepos` key on the owner DID: ```sh curl "$BOBBIN/xrpc/sh.tangled.repo.countRepos?subject=did:plc:boltless" ``` ```json { "count": 7, "distinctAuthors": 1 } ``` ```sh curl "$BOBBIN/xrpc/sh.tangled.repo.listRepos?subject=did:plc:boltless&limit=3" ``` ```json { "items": [ { "uri": "at://did:plc:boltless/sh.tangled.repo/squid", "cid": "bafyrei...", "value": { } } ], "cursor": null } ``` - Bobbin validates the subject per collection. Here a repo URI is passed where a bare DID is required, so the call returns a `400`: ```sh curl "$BOBBIN/xrpc/sh.tangled.graph.listFollows?subject=at://did:plc:boltless/sh.tangled.repo/squid" ``` ```json { "error": "InvalidRequest", "message": "invalid request: subject must be a bare did, got at-uri with collection sh.tangled.repo" } ``` **Search** is a single endpoint over an in-mem full-text index: ```sh curl "$BOBBIN/xrpc/sh.tangled.search.query?q=tangled&limit=2" ``` ```json { "hits": [ { "uri": "at://...", "cid": "...", "nsid": "sh.tangled.repo", "score": 27.1, "value": { } } ], "cursor": null } ``` **Git data** such as blob, tree, diff, log, and archive proxies straight to the repo's knot, streamed back without caching. ## Coverage and warm-up - While the edge index is catching up from Hydrant, the aggregation count is a lower bound & may still climb. - One endpoint reports how far along the backfill it is: ```sh curl "$BOBBIN/xrpc/sh.tangled.bobbin.getCoverage" ``` While warming up: ```json { "ready": false, "eventsProcessed": 45588, "lastCursor": 51658 } ``` Once caught up, Bobbin flips to ready: ```json { "ready": true, "eventsProcessed": 106085, "lastCursor": 116527 } ``` If starting up Hydrant for the first time, Hydrant itself will take a decent while (a couple of hours) to backfill from PDSes. Hydrant stores its backfill on disk. Bobbin restart reaches `ready` in minutes by replaying event from an already-populated Hydrant. If your Hydrant is new, expect Bobbin to backfill in that same couple of hours that Hydrant takes. ## Loose ends and not-gonna-impl - **No coverage signal for per-knot rosters yet.** Coverage tracks the hydrant stream only. A v1.15 knot that is unreachable serves a stale or empty member set with nothing to flag it. - **Knot eventstream fan-out isn't pooled.** Bobbin opens one websocket per v1.15 knot on top of the hydrant subscription. A network with thousands of knots wants pooling or a shared subscription. - **No sequential issue or PR numbers.** bobbin returns rkeys, not `#42` style ids like the web appview. A client deriving a display number does it from creation order. But why bother? rkeys are the IDs. # Hacking on Tangled We highly recommend [installing Nix](https://nixos.org/download/) (the package manager) before working on the codebase. The Nix flake provides a lot of helpers to get started and most importantly, builds and dev shells are entirely deterministic. To set up your dev environment: ```bash nix develop ``` Non-Nix users can look at the `devShell` attribute in the `flake.nix` file to determine necessary dependencies. ## Running the appview The appview requires Redis and OAuth JWKs. Start these first, before launching the appview itself. ```bash # OAuth JWKs should already be set up by the Nix devshell: echo $TANGLED_OAUTH_CLIENT_SECRET z42ty4RT1ovnTopY8B8ekz9NuziF2CuMkZ7rbRFpAR9jBqMc echo $TANGLED_OAUTH_CLIENT_KID 1761667908 # if not, you can set it up yourself: goat key generate -t P-256 Key Type: P-256 / secp256r1 / ES256 private key Secret Key (Multibase Syntax): save this securely (eg, add to password manager) z42tuPDKRfM2mz2Kv953ARen2jmrPA8S9LX9tRq4RVcUMwwL Public Key (DID Key Syntax): share or publish this (eg, in DID document) did:key:zDnaeUBxtG6Xuv3ATJE4GaWeyXM3jyamJsZw3bSPpxx4bNXDR # the secret key from above export TANGLED_OAUTH_CLIENT_SECRET="z42tuP..." # Run Redis in a new shell to store OAuth sessions redis-server ``` The Nix flake exposes a few `app` attributes (run `nix flake show` to see a full list of what the flake provides), one of the apps runs the appview with the `air` live-reloader: ```bash TANGLED_DEV=true nix run .#watch-appview # TANGLED_DB_PATH might be of interest to point to # different sqlite DBs # in a separate shell, you can live-reload tailwind nix run .#watch-tailwind ``` ## Running knots and spindles An end-to-end knot setup requires setting up a machine with `sshd`, `AuthorizedKeysCommand`, and a Git user, which is quite cumbersome. So the Nix flake provides a `nixosConfiguration` to do so.
macOS users will have to set up a Nix Builder first In order to build Tangled's dev VM on macOS, you will first need to set up a Linux Nix builder. The recommended way to do so is to run a [`darwin.linux-builder` VM](https://nixos.org/manual/nixpkgs/unstable/#sec-darwin-builder) and to register it in `nix.conf` as a builder for Linux with the same architecture as your Mac (`linux-aarch64` if you are using Apple Silicon). If you're on nix-darwin, you can simply add ``` nix.linux-builder.enable = true; ``` to your host's `configuration.nix`. Alternatively, you can use any other method to set up a Linux machine with Nix installed that you can `sudo ssh` into (in other words, root user on your Mac has to be able to ssh into the Linux machine without entering a password) and that has the same architecture as your Mac. See [remote builder instructions](https://nix.dev/manual/nix/2.28/advanced-topics/distributed-builds.html#requirements) for how to register such a builder in `nix.conf`. > WARNING: If you'd like to use > [`nixos-lima`](https://github.com/nixos-lima/nixos-lima) or > [Orbstack](https://orbstack.dev/), note that setting them up so that `sudo ssh` works can be tricky. It seems to be [possible with > Orbstack](https://github.com/orgs/orbstack/discussions/1669).
To begin, grab your DID from http://localhost:3000/settings. Then, set `TANGLED_VM_KNOT_OWNER` and `TANGLED_VM_SPINDLE_OWNER` to your DID. You can now start a lightweight NixOS VM like so: ```bash nix run --impure .#vm # type `poweroff` at the shell to exit the VM ``` This starts a knot on port 6444, a spindle on port 6555 with `ssh` exposed on port 2222. Once the services are running, head to http://localhost:3000/settings/knots and hit "Verify". It should verify the ownership of the services instantly if everything went smoothly. You can push repositories to this VM with this ssh config block on your main machine: ```bash Host nixos-shell Hostname localhost Port 2222 User git IdentityFile ~/.ssh/my_tangled_key ``` Set up a remote called `local-dev` on a git repo: ```bash git remote add local-dev git@nixos-shell:user/repo git push local-dev main ``` The above VM should already be running a spindle on `localhost:6555`. Head to http://localhost:3000/settings/spindles and hit "Verify". You can then configure each repository to use this spindle and run CI jobs. Of interest when debugging spindles: ``` # Service logs from journald: journalctl -xeu spindle # CI job logs from disk: ls /var/log/spindle # Debugging spindle database: sqlite3 /var/lib/spindle/spindle.db # litecli has a nicer REPL interface: litecli /var/lib/spindle/spindle.db ``` If for any reason you wish to disable either one of the services in the VM, modify [nix/vm.nix](/nix/vm.nix) and set `services.tangled.spindle.enable` (or `services.tangled.knot.enable`) to `false`. # Contribution guide ## Commit guidelines We follow a commit style similar to the Go project. Please keep commits: - **atomic**: each commit should represent one logical change - **descriptive**: the commit message should clearly describe what the change does and why it's needed ### Message format ``` /: Optional longer description can go here, if necessary. Explain what the change does and why, especially if not obvious. Reference relevant issues or PRs when applicable. These can be links for now since we don't auto-link issues/PRs yet. ``` Here are some examples: ``` appview/state: fix token expiry check in middleware The previous check did not account for clock drift, leading to premature token invalidation. ``` ``` knotserver/git/service: improve error checking in upload-pack ``` ### General notes - PRs get merged "as-is" (fast-forward)—like applying a patch-series using `git am`. At present, there is no squashing—so please author your commits as they would appear on `master`, following the above guidelines. - If there is a lot of nesting, for example "appview: pages/templates/repo/fragments: ...", these can be truncated down to just "appview: repo/fragments: ...". If the change affects a lot of subdirectories, you may abbreviate to just the top-level names, e.g. "appview: ..." or "knotserver: ...". - Keep commits lowercased with no trailing period. - Use the imperative mood in the summary line (e.g., "fix bug" not "fixed bug" or "fixes bug"). - Try to keep the summary line under 72 characters, but we aren't too fussed about this. - Follow the same formatting for PR titles if filled manually. - Don't include unrelated changes in the same commit. - Avoid noisy commit messages like "wip" or "final fix"—rewrite history before submitting if necessary. ## Code formatting We use a variety of tools to format our code, and multiplex them with [`treefmt`](https://treefmt.com). All you need to do to format your changes is run `nix run .#fmt` (or just `treefmt` if you're in the devshell). ## Proposals for bigger changes Small fixes like typos, minor bugs, or trivial refactors can be submitted directly as PRs. For larger changes—especially those introducing new features, significant refactoring, or altering system behavior—please open a proposal first. This helps us evaluate the scope, design, and potential impact before implementation. Create a new issue titled: ``` proposal: : ``` In the description, explain: - What the change is - Why it's needed - How you plan to implement it (roughly) - Any open questions or tradeoffs We'll use the issue thread to discuss and refine the idea before moving forward. ## Developer Certificate of Origin (DCO) We require all contributors to certify that they have the right to submit the code they're contributing. To do this, we follow the [Developer Certificate of Origin (DCO)](https://developercertificate.org/). By signing your commits, you're stating that the contribution is your own work, or that you have the right to submit it under the project's license. This helps us keep things clean and legally sound. To sign your commit, just add the `-s` flag when committing: ```sh git commit -s -m "your commit message" ``` This appends a line like: ``` Signed-off-by: Your Name ``` We won't merge commits if they aren't signed off. If you forget, you can amend the last commit like this: ```sh git commit --amend -s ``` If you're submitting a PR with multiple commits, make sure each one is signed. For [jj](https://jj-vcs.github.io/jj/latest/) users, you can run the following command to make it sign off commits in the tangled repo: ```shell # Safety check, should say "No matching config key..." jj config list templates.commit_trailers # The command below may need to be adjusted if the command above returned something. jj config set --repo templates.commit_trailers "format_signed_off_by_trailer(self)" ``` Refer to the [jujutsu documentation](https://jj-vcs.github.io/jj/latest/config/#commit-trailers) for more information. # Troubleshooting guide ## Login issues Owing to the distributed nature of OAuth on AT Protocol, you may run into issues with logging in. If you run a self-hosted PDS: - You may need to ensure that your PDS is timesynced using NTP: - Enable the `ntpd` service - Run `ntpd -qg` to synchronize your clock - You may need to increase the default request timeout: `NODE_OPTIONS="--network-family-autoselection-attempt-timeout=500"` ## Empty punchcard For Tangled to register commits that you make across the network, you need to setup one of following: - The committer email should be a verified email associated to your account. You can add and verify emails on the settings page. - Or, the committer email should be set to your account's DID: `git config user.email "did:plc:foobar"`. You can find your account's DID on the settings page ## Commit is not marked as verified Tangled only supports SSH commit signatures. Ensure the SSH public key you use for signing is uploaded to Tangled. To sign commits using an SSH key with git: ``` git config --global gpg.format ssh git config --global user.signingkey ~/.ssh/tangled-key ``` To sign commits using an SSH key with jj, add this to your config: ``` [signing] behavior = "own" backend = "ssh" key = "~/.ssh/tangled-key" ``` ## Self-hosted knot issues If you need help troubleshooting a self-hosted knot, check out the [knot troubleshooting guide](/knot-self-hosting-guide.html#troubleshooting).