From 782d54ad80f878aca90c3c9b8277103990c8a2af Mon Sep 17 00:00:00 2001 From: GSSwain <12575773+GSSwain@users.noreply.github.com> Date: Sat, 13 Jun 2026 09:04:14 +1000 Subject: [PATCH] Adds version alpha to indicate it is WIP --- README.md | 4 ++++ pyproject.toml | 2 +- src/maca/main.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 463c76c..41e2da9 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,9 @@ # Multi-Agent Coding Assistant (MACA) +> [!WARNING] +> **MACA is currently in active development and is in the ALPHA stage.** +> You may encounter bugs, breaking changes, or unfinished features. + MACA is a **local-first, hybrid AI coding assistant** that routes work by complexity and coordinates planning, coding, and review agents directly in your workspace. > **Why it matters:** simple tasks stay on your machine, while more demanding work can use powerful cloud models only when they are truly needed. diff --git a/pyproject.toml b/pyproject.toml index 165dc9f..e4674dc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "maca-ai" -version = "1.0.0" +version = "1.0.0a0" description = "MACA: A Multi-Agent Coding Assistant utilizing local Gemma and remote Gemini" readme = "README.md" requires-python = ">=3.9" diff --git a/src/maca/main.py b/src/maca/main.py index 4a4395e..9a1cebd 100644 --- a/src/maca/main.py +++ b/src/maca/main.py @@ -25,7 +25,7 @@ def display_welcome(orch=None): " - [bold magenta]/model [/bold magenta]: Override default model (options: gemma, gemini, auto)\n" " - [bold magenta]/help[/bold magenta]: Show this help message" ) - console.print(Panel(welcome_text, title="[bold white]MACA CLI v1.0.0[/bold white]", border_style="cyan")) + console.print(Panel(welcome_text, title="[bold white]MACA CLI v1.0.0-alpha[/bold white]", border_style="cyan")) if orch: print_backends_status(orch, run_handshakes=False)