diff --git a/README.md b/README.md index 8027acc..a5f6231 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Autonomous Coding Agent +# AutoCoder [![Buy Me A Coffee](https://img.shields.io/badge/Buy%20Me%20A%20Coffee-FFDD00?style=flat&logo=buy-me-a-coffee&logoColor=black)](https://www.buymeacoffee.com/leonvanzyl) diff --git a/start_ui.bat b/start_ui.bat index ff3cab9..d412101 100644 --- a/start_ui.bat +++ b/start_ui.bat @@ -1,11 +1,11 @@ @echo off cd /d "%~dp0" -REM Autonomous Coder UI Launcher for Windows +REM AutoCoder UI Launcher for Windows REM This script launches the web UI for the autonomous coding agent. echo. echo ==================================== -echo Autonomous Coder UI +echo AutoCoder UI echo ==================================== echo. diff --git a/start_ui.py b/start_ui.py index 648a64a..bbb1881 100644 --- a/start_ui.py +++ b/start_ui.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 """ -Autonomous Coder UI Launcher -============================= +AutoCoder UI Launcher +===================== Automated launcher that handles all setup: 1. Creates/activates Python virtual environment @@ -201,7 +201,7 @@ def main() -> None: dev_mode = "--dev" in sys.argv print("=" * 50) - print(" Autonomous Coder UI Setup") + print(" AutoCoder UI Setup") print("=" * 50) total_steps = 6 if not dev_mode else 5 diff --git a/start_ui.sh b/start_ui.sh index f00c5ab..33adea0 100644 --- a/start_ui.sh +++ b/start_ui.sh @@ -1,11 +1,11 @@ #!/bin/bash cd "$(dirname "$0")" -# Autonomous Coder UI Launcher for Unix/Linux/macOS +# AutoCoder UI Launcher for Unix/Linux/macOS # This script launches the web UI for the autonomous coding agent. echo "" echo "====================================" -echo " Autonomous Coder UI" +echo " AutoCoder UI" echo "====================================" echo "" diff --git a/ui/index.html b/ui/index.html index 67b7ff2..e566b9a 100644 --- a/ui/index.html +++ b/ui/index.html @@ -4,7 +4,7 @@ - Autonomous Coder + AutoCoder diff --git a/ui/package.json b/ui/package.json index a558f1e..5b36ec7 100644 --- a/ui/package.json +++ b/ui/package.json @@ -1,5 +1,5 @@ { - "name": "autonomous-coding-ui", + "name": "autocoder", "private": true, "version": "1.0.0", "type": "module", diff --git a/ui/src/App.tsx b/ui/src/App.tsx index 96066b2..794c5a2 100644 --- a/ui/src/App.tsx +++ b/ui/src/App.tsx @@ -4,7 +4,7 @@ import { useProjectWebSocket } from './hooks/useWebSocket' import { useFeatureSound } from './hooks/useFeatureSound' import { useCelebration } from './hooks/useCelebration' -const STORAGE_KEY = 'autonomous-coder-selected-project' +const STORAGE_KEY = 'autocoder-selected-project' import { ProjectSelector } from './components/ProjectSelector' import { KanbanBoard } from './components/KanbanBoard' import { AgentControl } from './components/AgentControl' @@ -134,7 +134,7 @@ function App() {
{/* Logo and Title */}

- Autonomous Coder + AutoCoder

{/* Controls */} @@ -180,7 +180,7 @@ function App() { {!selectedProject ? (

- Welcome to Autonomous Coder + Welcome to AutoCoder

Select a project from the dropdown above or create a new one to get started.