Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

langgraph-studio 0.0.28 (new cask) #189169

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
24 changes: 24 additions & 0 deletions Casks/l/langgraph-studio.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Documentation: https://docs.brew.sh/Cask-Cookbook
# https://docs.brew.sh/Adding-Software-to-Homebrew#cask-stanzas
# PLEASE REMOVE ALL GENERATED COMMENTS BEFORE SUBMITTING YOUR PULL REQUEST!
aaditkamat marked this conversation as resolved.
Show resolved Hide resolved
cask "langgraph-studio" do
version "0.0.28"
sha256 "c518591bd2ae3c6aa37d9fa4fd3e713ca7b570377f78619997d4b36ed6dbfca2"

url "https://github.com/langchain-ai/langgraph-studio/releases/download/v#{version}/LangGraph-Studio-#{version}-universal.dmg"
aaditkamat marked this conversation as resolved.
Show resolved Hide resolved
name "langgraph-studio"
aaditkamat marked this conversation as resolved.
Show resolved Hide resolved
desc "Desktop app for prototyping and debugging LangGraph applications locally"
homepage "https://github.com/langchain-ai/langgraph-studio/"
aaditkamat marked this conversation as resolved.
Show resolved Hide resolved

# Documentation: https://docs.brew.sh/Brew-Livecheck
livecheck do
url :homepage
strategy :github_latest
end

Comment on lines +11 to +16
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
# Documentation: https://docs.brew.sh/Brew-Livecheck
livecheck do
url :homepage
strategy :github_latest
end

We can use the default Git strategy here, by omitting the livecheck block (see documentation).

depends_on macos: ">= :catalina"

app "LangGraph Studio.app"

# No zap stanza required
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please try to add a zap stanza. The linked documentation provides some recommended methods to create it.

end
Loading