diff --git a/packages/homebrew-core/openhuman.rb.in b/packages/homebrew-core/openhuman.rb.in index 29280f56a..a635a4f6c 100644 --- a/packages/homebrew-core/openhuman.rb.in +++ b/packages/homebrew-core/openhuman.rb.in @@ -18,7 +18,7 @@ class Openhuman < Formula ENV["OPENSSL_NO_VENDOR"] = "1" if OS.linux? system "cargo", "install", "--bin", "openhuman-core", *std_cargo_args - bin.install_symlink bin/"openhuman-core" => "openhuman" + bin.install_symlink "openhuman-core" => "openhuman" end test do diff --git a/packages/homebrew/openhuman.rb b/packages/homebrew/openhuman.rb index 54fbac6c5..c8c2c61de 100644 --- a/packages/homebrew/openhuman.rb +++ b/packages/homebrew/openhuman.rb @@ -30,7 +30,8 @@ class Openhuman < Formula end def install - bin.install "openhuman-core" => "openhuman" + bin.install "openhuman-core" + mv bin/"openhuman-core", bin/"openhuman" end test do diff --git a/src/openhuman/memory_sync/composio/providers/catalogs_messaging.rs b/src/openhuman/memory_sync/composio/providers/catalogs_messaging.rs index 23ec48a7a..31a7c3d96 100644 --- a/src/openhuman/memory_sync/composio/providers/catalogs_messaging.rs +++ b/src/openhuman/memory_sync/composio/providers/catalogs_messaging.rs @@ -145,6 +145,22 @@ pub const DISCORD_CURATED: &[CuratedTool] = &[ slug: "DISCORD_LIST_MY_CONNECTIONS", scope: ToolScope::Read, }, + CuratedTool { + slug: "DISCORD_LIST_GUILD_CHANNELS", + scope: ToolScope::Read, + }, + CuratedTool { + slug: "DISCORD_GET_CHANNEL", + scope: ToolScope::Read, + }, + CuratedTool { + slug: "DISCORD_SEND_MESSAGE", + scope: ToolScope::Write, + }, + CuratedTool { + slug: "DISCORD_CREATE_MESSAGE", + scope: ToolScope::Write, + }, ]; // ── telegram ────────────────────────────────────────────────────────