From 995160f95e31efe4d026662885d4b016f144ce9a Mon Sep 17 00:00:00 2001 From: Agent Zuse Date: Wed, 17 Jun 2026 22:33:19 +0200 Subject: [PATCH] feat: prefix Aether plugin slug Rename the canonical plugin slug to tribe-one-aether and update contract docs/tests accordingly. --- README.md | 2 +- manifest.json | 2 +- test/aether/manifest_test.exs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9713ac3..b31804a 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ The package pin is kept at `@internet-privacy/marmot-ts@0.5.1`. ```json { "id": "org.tribe-one.plugins.aether", - "slug": "aether", + "slug": "tribe-one-aether", "display_name": "Aether", "version": "0.2.0", "entry_module": "TribeOne.TribesPlugin.Aether.Plugin", diff --git a/manifest.json b/manifest.json index 6c19320..c01f51b 100644 --- a/manifest.json +++ b/manifest.json @@ -1,6 +1,6 @@ { "id": "org.tribe-one.plugins.aether", - "slug": "aether", + "slug": "tribe-one-aether", "display_name": "Aether", "version": "0.2.0", "description": "Local social feed and chat for Tribes, including NIP-17 direct messages.", diff --git a/test/aether/manifest_test.exs b/test/aether/manifest_test.exs index e998c6a..655bcd5 100644 --- a/test/aether/manifest_test.exs +++ b/test/aether/manifest_test.exs @@ -36,7 +36,7 @@ defmodule TribeOne.TribesPlugin.Aether.ManifestTest do test "identity fields are namespaced", %{manifest: manifest} do assert manifest["id"] == "org.tribe-one.plugins.aether" - assert manifest["slug"] == "aether" + assert manifest["slug"] == "tribe-one-aether" assert manifest["otp_app"] == "tribe_one_aether" end