observal-cli 0.7.0 (new formula)#284024
Open
Apoorvgarg-creator wants to merge 1 commit into
Open
Conversation
botantony
reviewed
May 21, 2026
Comment on lines
+30
to
+33
| resource "certifi" do | ||
| url "https://files.pythonhosted.org/packages/f3/ce/ee2ecad540810a79593028e88299baeae54d346cc7a0d94b6199988b89b1/certifi-2026.5.20.tar.gz" | ||
| sha256 "69dea482ab64caa7b9f6aba1c6bf48bb6a5448d1c0f1b17ab42ad8c763a5344d" | ||
| end |
Member
There was a problem hiding this comment.
replace with formula:
depends_on "certifi" => :no_linkage
pypi_packages exclude_packages: "certifi"|
|
||
| depends_on "rust" => :build # asyncpg has a small C+Rust build step on non-wheel installs | ||
| depends_on "libyaml" # pyyaml | ||
| depends_on "python@3.13" |
Comment on lines
+135
to
+139
| output = shell_output("#{bin}/observal --version") | ||
| assert_match(/observal/i, output) | ||
|
|
||
| help_output = shell_output("#{bin}/observal --help") | ||
| assert_match "Usage", help_output |
Member
There was a problem hiding this comment.
Suggested change
| output = shell_output("#{bin}/observal --version") | |
| assert_match(/observal/i, output) | |
| help_output = shell_output("#{bin}/observal --help") | |
| assert_match "Usage", help_output | |
| assert_match version.to_s, shell_output("#{bin}/observal --version") |
Homebrew requires a simple test that checks if a program can do basic stuff correctly. From Formula Cookbook:
We want tests that don’t require any user input and test the basic functionality of the application. For example
foo build-foo input.foois a good test and (despite their widespread use)foo --versionandfoo --helpare bad tests. However, a bad test is better than no test at all.
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
HOMEBREW_NO_INSTALL_FROM_API=1 brew install --build-from-source observal-cli?brew test observal-cli?brew audit --strict observal-cli(after doingHOMEBREW_NO_INSTALL_FROM_API=1 brew install --build-from-source observal-cli)? If this is a new formula, does it passbrew audit --new observal-cli?AI disclosure
Claude (Anthropic) was used as a pair-programming assistant to scaffold the formula and the resource blocks. Specifically:
url,sha256, everyresourceblock) was machine-derived from a cleanpip install observal-cli==0.7.0in a throwawayuv venv, then each(url, sha256)pair was fetched directly fromhttps://pypi.org/pypi/<name>/<version>/json. No values were generated from model memory.octodns.rbandharlequin.rb.brew style observal-cli→ no offenses.brew audit --strict --online --new --formula observal-cli→ exit 0.HOMEBREW_NO_INSTALL_FROM_API=1 brew install --build-from-source observal-cli→ installs from sdist cleanly.brew test observal-cli→ exit 0.observal --versionfrom the brew prefix printsobserval 0.7.0.ruby -c Formula/o/observal-cli.rbis clean.What is
observal-cli?observal-cliis the command-line interface for Observal, an open-source (AGPL-3.0) self-hosted AI agent registry with built-in observability. The CLI lets users:Upstream is at https://github.com/BlazeUp-AI/Observal (1,100+ stars, 140+ forks, AGPL-3.0-only, stable Beta — the 0.7.0 sdist published to PyPI carries
Classifier: Development Status :: 4 - Beta).Notes
Language::Python::Virtualenv. The only system deps arerust(build-time, forasyncpg's small native shim when wheels aren't preferred) andlibyaml(forpyyaml).[migrate]extra (which addspyarrowfor Parquet export/import) is deliberately omitted from the formula; users who need the migration commands can install viapip install 'observal-cli[migrate]'oruv tool install 'observal-cli[migrate]'separately. This avoids dragging Apache Arrow into a default install.headis wired to the upstreammainbranch for HEAD installs.homebrew-core.