Prepare v1.0.0 stable release

- Update version to 1.0.0
- Add comprehensive changelog for stable release
- Mark project as production-ready

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Peter Steinberger 2025-06-08 20:34:56 +01:00
parent 41fafd6d9f
commit 1a2a817822
4 changed files with 39 additions and 4 deletions

View file

@ -7,6 +7,41 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [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
### Requirements
- macOS 13.0 or later
- 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.25] - 2025-01-08
### Fixed

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "@steipete/peekaboo-mcp",
"version": "1.0.0-beta.25",
"version": "1.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@steipete/peekaboo-mcp",
"version": "1.0.0-beta.25",
"version": "1.0.0",
"hasInstallScript": true,
"license": "MIT",
"os": [

View file

@ -1,6 +1,6 @@
{
"name": "@steipete/peekaboo-mcp",
"version": "1.0.0-beta.25",
"version": "1.0.0",
"description": "A macOS utility exposed via Node.js MCP server for advanced screen captures, image analysis, and window management",
"type": "module",
"main": "dist/index.js",

View file

@ -1,4 +1,4 @@
// This file is auto-generated by the build script. Do not edit manually.
enum Version {
static let current = "1.0.0-beta.24"
static let current = "1.0.0-beta.25"
}