- Add comprehensive gRPC client guide with examples for grpcurl, Python,
Node.js, Go, and Swift clients including streaming and authentication
- Update macOS runner setup with instructions for connecting to local
Gitea instance running in Docker on Linux (network config, firewall,
DNS setup)
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- Restructure project into three targets:
- AppleIntelligenceCore: Shared gRPC service code
- AppleIntelligenceServer: CLI server
- AppleIntelligenceApp: Menu bar app
- Menu bar app features:
- Toggle server on/off from menu bar
- Chat window with streaming AI responses
- Settings: host, port, API key, auto-start, launch at login
- Proper window focus handling for menu bar apps
- Add build scripts for distribution:
- build-app.sh: Creates signed .app bundle
- create-dmg.sh: Creates distributable DMG
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
The grpc-swift library is transitioning from v2 to v3 API, causing
deprecation warnings for types like RegistrableRPCService, Metadata,
ServerTransport, etc. Suppress these until the library stabilizes.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Implements a Swift gRPC server that exposes Apple's Foundation Models
(Apple Intelligence) over the network for LAN access.
Features:
- Complete: Unary RPC for prompt/response
- StreamComplete: Server streaming RPC for token-by-token responses
- Health: Check model availability
- Optional API key authentication via gRPC metadata
- Configurable host/port via CLI args or environment variables
Requires macOS 26 (Tahoe) with Apple Intelligence enabled.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>