mirror of
https://github.com/leonvanzyl/autocoder.git
synced 2026-01-30 06:12:06 +00:00
rebrand
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
# Autonomous Coding Agent
|
# AutoCoder
|
||||||
|
|
||||||
[](https://www.buymeacoffee.com/leonvanzyl)
|
[](https://www.buymeacoffee.com/leonvanzyl)
|
||||||
|
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
@echo off
|
@echo off
|
||||||
cd /d "%~dp0"
|
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.
|
REM This script launches the web UI for the autonomous coding agent.
|
||||||
|
|
||||||
echo.
|
echo.
|
||||||
echo ====================================
|
echo ====================================
|
||||||
echo Autonomous Coder UI
|
echo AutoCoder UI
|
||||||
echo ====================================
|
echo ====================================
|
||||||
echo.
|
echo.
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
"""
|
"""
|
||||||
Autonomous Coder UI Launcher
|
AutoCoder UI Launcher
|
||||||
=============================
|
=====================
|
||||||
|
|
||||||
Automated launcher that handles all setup:
|
Automated launcher that handles all setup:
|
||||||
1. Creates/activates Python virtual environment
|
1. Creates/activates Python virtual environment
|
||||||
@@ -201,7 +201,7 @@ def main() -> None:
|
|||||||
dev_mode = "--dev" in sys.argv
|
dev_mode = "--dev" in sys.argv
|
||||||
|
|
||||||
print("=" * 50)
|
print("=" * 50)
|
||||||
print(" Autonomous Coder UI Setup")
|
print(" AutoCoder UI Setup")
|
||||||
print("=" * 50)
|
print("=" * 50)
|
||||||
|
|
||||||
total_steps = 6 if not dev_mode else 5
|
total_steps = 6 if not dev_mode else 5
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
cd "$(dirname "$0")"
|
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.
|
# This script launches the web UI for the autonomous coding agent.
|
||||||
|
|
||||||
echo ""
|
echo ""
|
||||||
echo "===================================="
|
echo "===================================="
|
||||||
echo " Autonomous Coder UI"
|
echo " AutoCoder UI"
|
||||||
echo "===================================="
|
echo "===================================="
|
||||||
echo ""
|
echo ""
|
||||||
|
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
<title>Autonomous Coder</title>
|
<title>AutoCoder</title>
|
||||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap" rel="stylesheet">
|
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap" rel="stylesheet">
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"name": "autonomous-coding-ui",
|
"name": "autocoder",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ import { useProjectWebSocket } from './hooks/useWebSocket'
|
|||||||
import { useFeatureSound } from './hooks/useFeatureSound'
|
import { useFeatureSound } from './hooks/useFeatureSound'
|
||||||
import { useCelebration } from './hooks/useCelebration'
|
import { useCelebration } from './hooks/useCelebration'
|
||||||
|
|
||||||
const STORAGE_KEY = 'autonomous-coder-selected-project'
|
const STORAGE_KEY = 'autocoder-selected-project'
|
||||||
import { ProjectSelector } from './components/ProjectSelector'
|
import { ProjectSelector } from './components/ProjectSelector'
|
||||||
import { KanbanBoard } from './components/KanbanBoard'
|
import { KanbanBoard } from './components/KanbanBoard'
|
||||||
import { AgentControl } from './components/AgentControl'
|
import { AgentControl } from './components/AgentControl'
|
||||||
@@ -134,7 +134,7 @@ function App() {
|
|||||||
<div className="flex items-center justify-between">
|
<div className="flex items-center justify-between">
|
||||||
{/* Logo and Title */}
|
{/* Logo and Title */}
|
||||||
<h1 className="font-display text-2xl font-bold tracking-tight uppercase">
|
<h1 className="font-display text-2xl font-bold tracking-tight uppercase">
|
||||||
Autonomous Coder
|
AutoCoder
|
||||||
</h1>
|
</h1>
|
||||||
|
|
||||||
{/* Controls */}
|
{/* Controls */}
|
||||||
@@ -180,7 +180,7 @@ function App() {
|
|||||||
{!selectedProject ? (
|
{!selectedProject ? (
|
||||||
<div className="neo-empty-state mt-12">
|
<div className="neo-empty-state mt-12">
|
||||||
<h2 className="font-display text-2xl font-bold mb-2">
|
<h2 className="font-display text-2xl font-bold mb-2">
|
||||||
Welcome to Autonomous Coder
|
Welcome to AutoCoder
|
||||||
</h2>
|
</h2>
|
||||||
<p className="text-[var(--color-neo-text-secondary)] mb-4">
|
<p className="text-[var(--color-neo-text-secondary)] mb-4">
|
||||||
Select a project from the dropdown above or create a new one to get started.
|
Select a project from the dropdown above or create a new one to get started.
|
||||||
|
|||||||
Reference in New Issue
Block a user