mirror of
https://github.com/samsonjs/Peekaboo.git
synced 2026-04-27 15:07:41 +00:00
Release v1.0.0 🎉
First stable release of Peekaboo MCP with: - macOS 14.0+ support (lowered from 15.0) - Swift 6 with strict concurrency - Complete async/await implementation - Robust error handling - Universal binary for Intel and Apple Silicon 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
5d4a656fa7
commit
8d8d9cb5f9
3 changed files with 38 additions and 2 deletions
36
CHANGELOG.md
36
CHANGELOG.md
|
|
@ -7,6 +7,42 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [1.0.0] - 2025-01-08
|
||||||
|
|
||||||
|
### 🎉 First Stable Release
|
||||||
|
|
||||||
|
Peekaboo MCP is now production-ready! This release marks the culmination of extensive development, testing, and refinement to create a robust macOS screen capture and window management tool for AI agents.
|
||||||
|
|
||||||
|
### Key Features
|
||||||
|
- **Advanced Screen Capture**: Capture entire screens, specific windows, or all windows of an application
|
||||||
|
- **AI-Powered Image Analysis**: Analyze captured or existing images using multiple AI providers (Ollama, OpenAI)
|
||||||
|
- **Window Management**: List running applications and their windows with detailed metadata
|
||||||
|
- **Flexible Output Options**: Save to file or return Base64-encoded data inline
|
||||||
|
- **Swift 6 Compatibility**: Fully migrated to Swift 6 with strict concurrency for maximum reliability
|
||||||
|
- **Universal Binary**: Supports both Apple Silicon and Intel Macs
|
||||||
|
|
||||||
|
### Recent Improvements (from beta releases)
|
||||||
|
- Fixed critical MCP server error handling for edge cases
|
||||||
|
- Complete Swift 6 migration with proper async/await patterns
|
||||||
|
- Enhanced error messages and debugging capabilities
|
||||||
|
- Improved window matching with fuzzy search
|
||||||
|
- Better handling of multi-display setups
|
||||||
|
- Robust permission handling for Screen Recording and Accessibility
|
||||||
|
- Lowered macOS requirement from 15.0 to 14.0 (Sonoma)
|
||||||
|
|
||||||
|
### Requirements
|
||||||
|
- macOS 14.0 or later (Sonoma)
|
||||||
|
- Node.js 18 or later
|
||||||
|
- Screen Recording permission (for capture features)
|
||||||
|
- Accessibility permission (optional, for foreground window detection)
|
||||||
|
|
||||||
|
### Getting Started
|
||||||
|
```bash
|
||||||
|
npm install -g @steipete/peekaboo-mcp
|
||||||
|
```
|
||||||
|
|
||||||
|
For detailed documentation, visit: https://github.com/steipete/Peekaboo
|
||||||
|
|
||||||
## [1.0.0-beta.26] - 2025-01-08
|
## [1.0.0-beta.26] - 2025-01-08
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@steipete/peekaboo-mcp",
|
"name": "@steipete/peekaboo-mcp",
|
||||||
"version": "1.0.0-beta.26",
|
"version": "1.0.0",
|
||||||
"description": "A macOS utility exposed via Node.js MCP server for advanced screen captures, image analysis, and window management",
|
"description": "A macOS utility exposed via Node.js MCP server for advanced screen captures, image analysis, and window management",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// This file is auto-generated by the build script. Do not edit manually.
|
// This file is auto-generated by the build script. Do not edit manually.
|
||||||
enum Version {
|
enum Version {
|
||||||
static let current = "1.0.0-beta.26"
|
static let current = "1.0.0"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue