npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@llm-dev-ops/llm-orchestrator-darwin-x64

v0.1.5

Published

LLM Orchestrator CLI - macOS x64 binary

Readme

@llm-dev-ops/llm-orchestrator-darwin-x64


📦 What is this package?

This package contains the pre-compiled native binary of LLM Orchestrator specifically built for macOS systems with Intel processors (x86_64). It is automatically installed as an optional dependency when you install @llm-dev-ops/llm-orchestrator on a compatible Intel-based Mac.

Intel vs Apple Silicon

If you have a Mac with an M1, M2, M3, or M4 chip, you should use @llm-dev-ops/llm-orchestrator-darwin-arm64 instead for better performance.


🚀 Installation

Automatic (Recommended)

Simply install the main package - this platform package will be installed automatically:

npm install -g @llm-dev-ops/llm-orchestrator

Manual (Advanced)

If you need to install this package directly:

npm install @llm-dev-ops/llm-orchestrator-darwin-x64

⚙️ System Requirements

| Requirement | Minimum | Recommended | |------------|---------|-------------| | OS | macOS 10.15 (Catalina) | macOS 13+ (Ventura) | | Processor | Intel Core i5 or better | Intel Core i7/i9 | | RAM | 4 GB | 8 GB+ | | Disk Space | 50 MB | 100 MB | | Architecture | x86_64 | x86_64 |

Compatible Devices

  • MacBook Pro - 2013-2020 (Intel models)
  • MacBook Air - 2013-2020 (Intel models)
  • iMac - 2013-2020 (Intel models)
  • iMac Pro - All models
  • Mac mini - 2014-2020 (Intel models)
  • Mac Pro - 2013-2020

🔍 Check Your Mac's Processor

Not sure if you have an Intel or Apple Silicon Mac?

# Check processor type
uname -m

# Intel Mac outputs: x86_64
# Apple Silicon outputs: arm64

# Alternative check
sysctl -n machdep.cpu.brand_string
# Intel shows: "Intel(R) Core(TM) ..."
# Apple Silicon shows: "Apple M1/M2/M3..."

Or check via System Information:

  1. Click Apple menu () → About This Mac
  2. Look for Processor or Chip
    • Intel Mac: Shows "Intel Core i5/i7/i9"
    • Apple Silicon: Shows "Apple M1/M2/M3/M4"

🎯 Use Cases

Perfect for:

  • Development Machines - Intel-based MacBook Pro/Air
  • CI/CD - macOS Intel runners (GitHub Actions, GitLab CI)
  • Testing - Cross-platform compatibility testing
  • Legacy Systems - Pre-2020 Mac hardware

📊 Package Contents

@llm-dev-ops/llm-orchestrator-darwin-x64/
├── bin/
│   └── llm-orchestrator          # Native x64 binary (~12 MB)
├── package.json
└── README.md

🔧 Verification

Verify the installation and check the binary:

# Check installation
npm list -g @llm-dev-ops/llm-orchestrator-darwin-x64

# Verify binary architecture
file $(which llm-orchestrator)
# Output: Mach-O 64-bit executable x86_64

# Check version
llm-orchestrator --version

# Verify CPU architecture
uname -m
# Output: x86_64

🚨 Security Note

Gatekeeper & Notarization

The binary is signed and notarized for macOS Gatekeeper. If you encounter security warnings:

# Clear quarantine attribute
xattr -d com.apple.quarantine $(which llm-orchestrator)

# Verify signature
codesign -dv $(which llm-orchestrator)

💡 Performance Notes

Rosetta 2 on Apple Silicon

If you're running this Intel binary on an Apple Silicon Mac via Rosetta 2:

⚠️ Warning: You'll experience degraded performance (approximately 70-80% of native speed).

Recommendation: Install the native ARM64 version instead:

npm uninstall -g @llm-dev-ops/llm-orchestrator
arch -arm64 npm install -g @llm-dev-ops/llm-orchestrator

📚 Documentation

For complete usage documentation, see the main package:


🐛 Troubleshooting

This is a macOS Gatekeeper warning. To bypass:

# Option 1: Remove quarantine attribute
xattr -d com.apple.quarantine $(which llm-orchestrator)

# Option 2: Allow in System Preferences
# System Preferences → Security & Privacy → General
# Click "Allow Anyway" next to the blocked message

Ensure npm's bin directory is in your PATH:

# Add to ~/.zshrc or ~/.bash_profile
export PATH="$(npm bin -g):$PATH"

# Reload shell
source ~/.zshrc  # or source ~/.bash_profile

You're likely running the Intel binary via Rosetta 2. Install the native ARM64 version:

# Check if running via Rosetta
sysctl sysctl.proc_translated
# 1 = Running via Rosetta, 0 = Native

# Install native version
npm uninstall -g @llm-dev-ops/llm-orchestrator
arch -arm64 npm install -g @llm-dev-ops/llm-orchestrator

Ensure Xcode Command Line Tools are installed:

xcode-select --install

🔗 Related Packages

| Package | Platform | npm | |---------|----------|-----| | Main Package | All platforms | @llm-dev-ops/llm-orchestrator | | Linux x64 | Linux x64 | @llm-dev-ops/llm-orchestrator-linux-x64 | | Linux ARM64 | Linux ARM64 | @llm-dev-ops/llm-orchestrator-linux-arm64 | | macOS Apple Silicon | macOS ARM64 | @llm-dev-ops/llm-orchestrator-darwin-arm64 |


📄 License

MIT OR Apache-2.0


⬆ back to top

Part of the LLM Orchestrator project