Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
All notable changes to AI Maestro are documented in this file.
Format follows [Keep a Changelog](https://keepachangelog.com/).

## [0.26.5] - 2026-03-25

### Added
- **Auto-install Claude Code status line** — `install-plugin.sh` now configures the AMP status line automatically, showing agent identity and unread message count in Claude Code's footer. Idempotent and reversible via `amp-statusline.sh --uninstall`.

## [0.26.4] - 2026-03-25

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

**Orchestrate your AI coding agents from one dashboard — with persistent memory, agent-to-agent messaging, and multi-machine support.**

[![Version](https://img.shields.io/badge/version-0.26.4-blue)](https://github.com/23blocks-OS/ai-maestro/releases)
[![Version](https://img.shields.io/badge/version-0.26.5-blue)](https://github.com/23blocks-OS/ai-maestro/releases)
[![Platform](https://img.shields.io/badge/platform-macOS%20%7C%20Linux%20%7C%20Windows%20(WSL2)-lightgrey)](https://github.com/23blocks-OS/ai-maestro)
[![License](https://img.shields.io/badge/license-MIT-green)](./LICENSE)
[![GitHub Stars](https://img.shields.io/github/stars/23blocks-OS/ai-maestro?style=social)](https://github.com/23blocks-OS/ai-maestro)
Expand Down
2 changes: 1 addition & 1 deletion docs/BACKLOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
**Purpose:** This document tracks planned features, improvements, and ideas for AI Maestro. Items are prioritized into three categories: Now (next release), Next (upcoming releases), and Later (future considerations).

**Last Updated:** 2026-01-03
**Current Version:** v0.26.4
**Current Version:** v0.26.5

---

Expand Down
2 changes: 1 addition & 1 deletion docs/ai-index.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"priceCurrency": "USD"
},
"description": "Browser-based dashboard for orchestrating multiple AI coding agents (Claude Code, Aider, Cursor, GitHub Copilot) from one unified interface. Features agent-to-agent communication, Slack integration, email identity, persistent memory, and code graph visualization.",
"softwareVersion": "0.26.4",
"softwareVersion": "0.26.5",
"releaseNotes": "https://github.com/23blocks-OS/ai-maestro/releases",
"url": "https://ai-maestro.23blocks.com",
"downloadUrl": "https://github.com/23blocks-OS/ai-maestro",
Expand Down
4 changes: 2 additions & 2 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
"priceCurrency": "USD"
},
"description": "The future of work platform. Orchestrate multiple AI coding agents (Claude Code, Aider, Cursor, GitHub Copilot) from one unified dashboard. One human, multiple AI agents, working together.",
"softwareVersion": "0.26.4",
"softwareVersion": "0.26.5",
"releaseNotes": "https://github.com/23blocks-OS/ai-maestro/releases",
"url": "https://ai-maestro.23blocks.com",
"screenshot": "https://ai-maestro.23blocks.com/images/aiteam-web.png",
Expand Down Expand Up @@ -448,7 +448,7 @@ <h1 class="font-display text-5xl md:text-7xl lg:text-8xl font-extrabold leading-
<div class="flex flex-wrap gap-8 text-sm font-mono text-slate-500" id="stats" style="opacity: 0;">
<div class="flex items-center gap-2">
<span class="text-cyan-400">▸</span>
<span>v0.26.4</span>
<span>v0.26.5</span>
</div>
<div class="flex items-center gap-2">
<span class="text-cyan-400">▸</span>
Expand Down
11 changes: 11 additions & 0 deletions install-plugin.sh
Original file line number Diff line number Diff line change
Expand Up @@ -849,6 +849,17 @@ if [ "$INSTALL_SKILL" = true ]; then
done
fi

# Install Claude Code status line (shows agent identity + unread count)
if [ "$INSTALL_SCRIPTS" = true ] && command -v amp-statusline.sh &> /dev/null; then
echo ""
print_info "Configuring Claude Code status line..."
if amp-statusline.sh --install 2>/dev/null; then
print_success "Status line configured (shows agent identity + unread messages)"
else
print_warning "Status line setup skipped (run 'amp-statusline.sh --install' manually)"
fi
fi

echo ""
echo "╔════════════════════════════════════════════════════════════════╗"
echo "║ Installation Complete! ║"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ai-maestro",
"version": "0.26.4",
"version": "0.26.5",
"description": "Web dashboard for orchestrating multiple AI coding agents with hierarchical organization and real-time terminals",
"author": "Juan Peláez <juan@23blocks.com> (https://23blocks.com)",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion scripts/remote-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ DIM='\033[2m'
NC='\033[0m'

# Version & config
VERSION="0.26.4"
VERSION="0.26.5"
REPO_URL="https://github.com/23blocks-OS/ai-maestro.git"
DEFAULT_INSTALL_DIR="$HOME/ai-maestro"
PORT="${AIMAESTRO_PORT:-23000}" # configurable via --port or AIMAESTRO_PORT env var
Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.26.4",
"version": "0.26.5",
"releaseDate": "2026-03-25",
"changelog": "https://github.com/23blocks-OS/ai-maestro/releases",
"minSupportedVersion": "0.10.0"
Expand Down
Loading