fix: Homebrew install error and Discord channel listing (#3085) (#3144)

Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-authored-by: Steven Enamakel <enamakel@tinyhumans.ai>
This commit is contained in:
YellowSnnowmann
2026-06-01 22:03:18 -07:00
committed by GitHub
co-authored by Claude Sonnet 4.6 Steven Enamakel
parent 97ff4f53d3
commit e1a8f16778
3 changed files with 19 additions and 2 deletions
+1 -1
View File
@@ -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
+2 -1
View File
@@ -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
@@ -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 ────────────────────────────────────────────────────────