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
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/maca/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def display_welcome(orch=None):
" - [bold magenta]/model <name>[/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)
Expand Down
Loading