diff --git a/README.md b/README.md index b22e4fc..fbf9d35 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ The patterns here work for any NixOS workload on AWS: The opinionated bits for running AI coding agents: -- **Discord gateway**: Responds in `#clawdributors-test` +- **Discord gateway**: Responds in `#clawdinators-test` - **GitHub integration**: Monitors issues/PRs, mints short-lived tokens via GitHub App - **Hive-mind memory**: Shared EFS mount for cross-instance state - **Personality system**: SOUL.md, IDENTITY.md, workspace templates @@ -74,7 +74,7 @@ The opinionated bits for running AI coding agents: ## CLAWDINATOR Spec - CLAWDINATORS are named `CLAWDINATOR-{1..n}`. -- CLAWDINATORS connect to Discord; start in `#clawdributors-test`. +- CLAWDINATORS connect to Discord; start in `#clawdinators-test`. - CLAWDINATORS are ephemeral, but share memory (hive mind). - CLAWDINATORS are br00tal. Soul lives in `SOUL.md` and must be distilled into workspace docs. - CLAWDINATORS respond only to maintainers. @@ -250,7 +250,7 @@ tofu apply ### Verify ```bash -# Check Discord - CLAWDINATOR should announce itself in #clawdributors-test +# Check Discord - CLAWDINATOR should announce itself in #clawdinators-test # Check GitHub - should see activity in openclaw org repos ``` diff --git a/clawdinator/README.md b/clawdinator/README.md index bc25098..f36deb1 100644 --- a/clawdinator/README.md +++ b/clawdinator/README.md @@ -5,7 +5,7 @@ This directory will define the declarative configuration for CLAWDINATOR instanc Planned fields: - instance_name (CLAWDINATOR-1, etc.) - discord_bot_token (per instance) -- discord_channel (#clawdributors-test) +- discord_channel (#clawdinators-test) - github_pat (read-only) - memory_path (/var/lib/clawd/memory) - persona (Claude) diff --git a/clawdinator/workspace/AGENTS.md b/clawdinator/workspace/AGENTS.md index 45d594d..ead0f35 100644 --- a/clawdinator/workspace/AGENTS.md +++ b/clawdinator/workspace/AGENTS.md @@ -129,8 +129,7 @@ This mints a new GitHub App token and updates GH CLI auth at `/var/lib/clawd/gh/ ### Discord Channels ### ACTIVE channels to discuss with maintainers -- #clawdributors-test maintainer coordination (primary channel for maintainer discussion). Laser focus on project priorities. -- #clawdinators-test meta-discussion about clawdinators project. use for debugging etc. +- #clawdinators-test maintainer coordination + meta-discussion about clawdinators project. ### MONITOR these (lurk, stay silent. replies are disabled.): - #help — support fires @@ -138,7 +137,6 @@ This mints a new GitHub App token and updates GH CLI auth at `/var/lib/clawd/gh/ - #models — model discussions - #skills — skill showcases - #clawdhub — hub activity -- #clawdributors — contributor coordination ## Repos These are seeded on boot into `/var/lib/clawd/repos`. diff --git a/docs/POC.md b/docs/POC.md index ff6d054..dd1e59b 100644 --- a/docs/POC.md +++ b/docs/POC.md @@ -4,7 +4,7 @@ Acceptance criteria: - One AWS host provisioned from an AMI built from this repo. - Host created via OpenTofu using `infra/opentofu/aws`. - NixOS config applied via Nix (module or flake). -- CLAWDINATOR-1 connects to Discord #clawdributors-test. +- CLAWDINATOR-1 connects to Discord #clawdinators-test. - GitHub integration is read-only. - Shared memory directory mounted and writable. - Discord allowlist configured (guild + channels). diff --git a/memory/discord.md b/memory/discord.md index 0c06cee..6e4f2c6 100644 --- a/memory/discord.md +++ b/memory/discord.md @@ -11,8 +11,6 @@ Active IDs: - Guild ID: 1456350064065904867 - Main CLAWDINATOR allowlist: - 1458426982579830908 (#clawdinators-test, mention-only) - - 1458138963067011176 (#clawdributors-test, lurk-only; replies denied) - - 1458141495701012561 (#clawdributors, lurk-only; replies denied) - BABELFISH channels: - 1467469670192910387 (#help-中文, translation-only; no mentions required) - 1468983176620675132 (#tech-中国, translation-only; no mentions required) diff --git a/nix/hosts/clawdinator-common.nix b/nix/hosts/clawdinator-common.nix index 5d1b4b2..93c8057 100644 --- a/nix/hosts/clawdinator-common.nix +++ b/nix/hosts/clawdinator-common.nix @@ -148,16 +148,7 @@ in }; session.sendPolicy = { default = "allow"; - rules = [ - { - action = "deny"; - match.keyPrefix = "agent:main:discord:channel:1458138963067011176"; - } - { - action = "deny"; - match.keyPrefix = "agent:main:discord:channel:1458141495701012561"; - } - ]; + rules = [ ]; }; messages.groupChat = { mentionPatterns = []; @@ -195,16 +186,6 @@ in requireMention = true; users = [ "*" ]; }; - # #clawdributors-test (lurk only; replies denied via sendPolicy) - "1458138963067011176" = { - allow = true; - requireMention = false; - }; - # #clawdributors (lurk only; replies denied via sendPolicy) - "1458141495701012561" = { - allow = true; - requireMention = false; - }; }; }; };