This repository was archived by the owner on Apr 19, 2026. It is now read-only.
fix: resilient setup for corporate Mac networks#8
Merged
Conversation
…table - docs/index.html: fix hero badge Apache 2.0 → MIT (footer already said MIT) - docs/architecture.md: swap Layer 2/3 labels to match index.html (Ollama = Layer 2, Agent Logic = Layer 3 — consistent bottom-up ordering) - config/ollama.ts: add JSDoc to OllamaRequest, OllamaResponse, generate(), isOllamaRunning(), listModels() - config/agent-config.ts: add JSDoc to AgentConfig, getAgent(), loadEnv() - README.md: add OLLAMA_HOST and AGENT_OUTPUT_DIR to config variable table Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
- Fix Ollama startup on macOS (open -a Ollama for desktop app) - Wait up to 20s for Ollama to become reachable - Add MIT LICENSE file Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
- Auto-install Ollama via brew --cask (no interactive prompt) - Homebrew CDN usually not blocked by corporate firewalls - Graceful fallback if model pull fails (lists available models) - Auto-switches to locally available model if default can't pull Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Makes setup.sh work on corporate Macs where download sites may be blocked:
brew install --cask ollama(Homebrew CDN, not ollama.com)open -a Ollamafor macOS desktop app launchMorning coffee test:
git clone && bash scripts/setup.sh && npm run report☕Co-authored-by: Copilot 223556219+Copilot@users.noreply.github.com