-
-
Notifications
You must be signed in to change notification settings - Fork 13.9k
prime-agent 0.7.0 (new formula) #297372
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
Open
kennethnym
wants to merge
1
commit into
Homebrew:main
Choose a base branch
from
kennethnym:prime-agent
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
prime-agent 0.7.0 (new formula) #297372
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,36 @@ | ||
| class PrimeAgent < Formula | ||
| desc "Self-improving RLM agent for coding workflows and long-running autonomous tasks" | ||
| homepage "https://github.com/PrimeIntellect-ai/prime-agent" | ||
| url "https://github.com/PrimeIntellect-ai/prime-agent/releases/download/v0.7.0/prime-agent-0.7.0.tgz" | ||
| sha256 "88b6578518c72cd51a825bc80f28e0fef9a64c67de4a7d6fd7afd7ca1b34da0b" | ||
| license "MIT" | ||
|
|
||
| depends_on "node" | ||
|
|
||
| def install | ||
| system "npm", "install", *std_npm_args | ||
|
|
||
| node_modules = libexec/"lib/node_modules/prime-agent/node_modules" | ||
| os = OS.mac? ? "darwin" : "linux" | ||
| arch = Hardware::CPU.intel? ? "x64" : "arm64" | ||
|
|
||
| koffi = node_modules/"koffi/build/koffi" | ||
| koffi.children.each { |dir| rm_r(dir) if dir.basename.to_s != "#{os}_#{arch}" } | ||
|
|
||
| zeromq = node_modules/"zeromq/build" | ||
| zeromq.children.each { |entry| rm_r(entry) if entry.directory? && entry.basename.to_s != os } | ||
| (zeromq/os).children.each { |dir| rm_r(dir) if dir.basename.to_s != arch } | ||
| (zeromq/os/arch/"node").children.each { |dir| rm_r(dir) if dir.basename.to_s.start_with?("musl") } if OS.linux? | ||
|
|
||
| if OS.mac? | ||
| universal = Dir[node_modules/"@mariozechner/clipboard-darwin-universal/*.node"] | ||
| deuniversalize_machos(*universal) if universal.any? | ||
| end | ||
|
|
||
| bin.install_symlink Dir["#{libexec}/bin/*"] | ||
| end | ||
|
|
||
| test do | ||
| assert_match version.to_s, shell_output("#{bin}/prime-agent --version") | ||
| end | ||
| end | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can this not use the zeromq formula?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
unfortunately no. the
zeromqpackage vendors its own libzmq inside the npm tarball itself. the library currently does not provide a way to point the library to a shared installation of zeromq, so even ifzeromqis declared as a dependency here, it won't be consumed at runtime.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you file an issue for it, because this currently violates https://docs.brew.sh/Acceptable-Formulae#vendored-dependencies
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done! it is now linked here. thanks for the initial review!