Skip to content

Commit 141f651

Browse files
committed
🎨 BRANDING: rename vibeauracle to vibe auracle in docs and CLI
1 parent 1a04d4f commit 141f651

14 files changed

Lines changed: 33 additions & 35 deletions

File tree

ARCHITECTURE.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 🏗️ vibeauracle: The Alpha & Omega Architecture
1+
# 🏗️ vibe auracle: The Alpha & Omega Architecture
22

33
> **Status:** Active / Pre-Alpha
44
> **Maintainer:** @nathfavour
@@ -8,7 +8,7 @@
88

99
## 1. 🌌 The Vision
1010

11-
**vibeauracle** is not just a CLI tool; it is a **Distributed, System-Intimate AI Engineering Ecosystem**.
11+
**vibe auracle** is not just a CLI tool; it is a **Distributed, System-Intimate AI Engineering Ecosystem**.
1212
It is designed to be the "God-tier" replacement for the fragmented developer workflow. It unifies the terminal, the IDE, and the AI assistant into a single, keyboard-centric interface that is:
1313

1414
1. **System Aware:** It knows your hardware constraints (Arch Linux/KDE focus) before acting.
@@ -101,7 +101,7 @@ The `vibe-brain` module does not just "chat." It implements a recursive agentic
101101

102102
### 4.3 Data Persistence
103103
* **Vector Store:** Local embedded `sqlite-vec` or `chroma` for RAG.
104-
* **KV Store:** `BadgerDB` for task logs and conversation history (stored in `~/.local/share/vibeauracle/`).
104+
* **KV Store:** `BadgerDB` for task logs and conversation history (stored in `~/.local/share/vibe auracle/`).
105105
* **Secrets:** Native OS Keychain via `vibe-vault`. Never store API keys in plain text files.
106106

107107
---

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Contributing to vibeauracle 🌌
1+
# Contributing to vibe auracle 🌌
22

3-
First off, thank you for considering contributing to **vibeauracle**! We want this to be the most fluid, "God-tier" developer experience, and that only happens with your input.
3+
First off, thank you for considering contributing to **vibe auracle**! We want this to be the most fluid, "God-tier" developer experience, and that only happens with your input.
44

55
We have a **Zero Friction Policy**. Whether you're fixing a typo, optimizing a cognitive loop, or adding a completely new "Vibe," your contribution is welcome.
66

@@ -16,7 +16,7 @@ We have a **Zero Friction Policy**. Whether you're fixing a typo, optimizing a c
1616

1717
## 🎭 Creating Your Own "Vibe" (Plugins)
1818

19-
A **Vibe** is a community-contributed module that adds specialized skills to the vibeauracle brain. Adding one is easy:
19+
A **Vibe** is a community-contributed module that adds specialized skills to the vibe auracle brain. Adding one is easy:
2020

2121
### 1. Create your Vibe directory
2222
Navigate to the `vibes/` directory and create a new folder for your project:

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<div align="center">
2-
<img src="./assets/vibeaura.png" width="128" alt="Vibeauracle Logo" />
2+
<img src="./assets/vibeaura.png" width="128" alt="Vibe Auracle Logo" />
33

4-
# vibeauracle
4+
# vibe auracle
55
**Distributed, System-Intimate AI Engineering Ecosystem**
66

77
[![Stable](https://img.shields.io/badge/Stable-ec1de87-10B981?style=for-the-badge&logo=git&logoColor=white)](https://github.com/nathfavour/vibeauracle/tree/release)
@@ -13,7 +13,7 @@
1313
---
1414

1515
## 🌌 The Vision
16-
**vibeauracle** unifies the terminal, the IDE, and the AI assistant into a single, keyboard-centric interface. It's built for engineers who value **system-intimacy**—where the AI isn't just a chatbot, but a co-pilot with deep access to your hardware, configuration, and environment.
16+
**vibe auracle** unifies the terminal, the IDE, and the AI assistant into a single, keyboard-centric interface. It's built for engineers who value **system-intimacy**—where the AI isn't just a chatbot, but a co-pilot with deep access to your hardware, configuration, and environment.
1717

1818
## ⚡ Core Features
1919
- **Keyboard-Centric**: Designed for speed and fluid terminal workflows.

VIBES.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# 🌀 VIBES: The Extension API
22

3-
**Vibes** are the soul of vibeauracle's extensibility. They are natural-language-powered, markdown-defined extensions that can modify, extend, or completely redefine any aspect of the system—from UI colors to update schedules to agent behavior.
3+
**Vibes** are the soul of vibe auracle's extensibility. They are natural-language-powered, markdown-defined extensions that can modify, extend, or completely redefine any aspect of the system—from UI colors to update schedules to agent behavior.
44

5-
> **Philosophy:** Treat vibeauracle like a microkernel. The core provides primitives; Vibes provide policy.
5+
> **Philosophy:** Treat vibe auracle like a microkernel. The core provides primitives; Vibes provide policy.
66
77
---
88

@@ -200,7 +200,7 @@ binary:
200200

201201
```
202202
┌─────────────────────────────────────────────────────────┐
203-
VIBEAURACLE CORE
203+
VIBE AURACLE CORE
204204
│ ┌──────────┐ ┌──────────┐ ┌──────────┐ ┌──────────┐ │
205205
│ │ Brain │ │ Watcher │ │ Scheduler│ │ Config │ │
206206
│ └────┬─────┘ └────┬─────┘ └────┬─────┘ └────┬─────┘ │

cmd/vibeaura/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ func init() {
5959
var rootCmd = &cobra.Command{
6060
Use: "vibeaura",
6161
Version: Version,
62-
Short: "vibeauracle - Distributed, System-Intimate AI Engineering Ecosystem",
63-
Long: `vibeauracle is a keyboard-centric interface that unifies the terminal,
62+
Short: "vibe auracle - Distributed, System-Intimate AI Engineering Ecosystem",
63+
Long: `vibe auracle is a keyboard-centric interface that unifies the terminal,
6464
the IDE, and the AI assistant into a single system-aware experience.`,
6565
PersistentPreRun: func(cmd *cobra.Command, args []string) {
6666
// Ensure the tool is installed in a standard system directory

cmd/vibeaura/uninstall.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ var uninstallCmd = &cobra.Command{
1717
By default, the application data directory (~/.vibeauracle) is preserved.
1818
Use the --clean flag to wipe everything.`,
1919
Run: func(cmd *cobra.Command, args []string) {
20-
printTitle("🗑️", "UNINSTALL VIBEAURACLE")
20+
printTitle("🗑️", "UNINSTALL VIBE AURACLE")
2121

2222
// 1. Get binary path
2323
exePath, err := os.Executable()

cmd/vibeaura/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ var versionCmd = &cobra.Command{
1111
Use: "version",
1212
Short: "Print detailed version information",
1313
Run: func(cmd *cobra.Command, args []string) {
14-
printTitle("✨", "VIBEAURACLE")
14+
printTitle("✨", "VIBE AURACLE")
1515
printKeyValueHighlight("Version ", Version)
1616
printKeyValue("Commit ", Commit)
1717
printKeyValue("Built ", BuildDate)

docs/docusaurus.config.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
import {themes as prismThemes} from 'prism-react-renderer';
2-
import type {Config} from '@docusaurus/types';
1+
import { themes as prismThemes } from 'prism-react-renderer';
2+
import type { Config } from '@docusaurus/types';
33
import type * as Preset from '@docusaurus/preset-classic';
44

55
// This runs in Node.js - Don't use client-side code here (browser APIs, JSX...)
66

77
const config: Config = {
8-
title: 'vibeauracle',
8+
title: 'vibe auracle',
99
tagline: 'Distributed, System-Intimate AI Engineering Ecosystem',
1010
favicon: 'img/favicon.ico',
1111

@@ -76,9 +76,9 @@ const config: Config = {
7676
respectPrefersColorScheme: true,
7777
},
7878
navbar: {
79-
title: 'vibeauracle',
79+
title: 'vibe auracle',
8080
logo: {
81-
alt: 'vibeauracle Logo',
81+
alt: 'vibe auracle Logo',
8282
src: 'img/logo.svg',
8383
},
8484
items: [
@@ -88,7 +88,7 @@ const config: Config = {
8888
position: 'left',
8989
label: 'Tutorial',
9090
},
91-
{to: '/blog', label: 'Blog', position: 'left'},
91+
{ to: '/blog', label: 'Blog', position: 'left' },
9292
{
9393
href: 'https://github.com/nathfavour/vibeauracle',
9494
label: 'GitHub',
@@ -139,7 +139,7 @@ const config: Config = {
139139
],
140140
},
141141
],
142-
copyright: `Copyright © ${new Date().getFullYear()} vibeauracle. Built with Docusaurus.`,
142+
copyright: `Copyright © ${new Date().getFullYear()} vibe auracle. Built with Docusaurus.`,
143143
},
144144
prism: {
145145
theme: prismThemes.github,

install.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# vibeauracle Windows Installer
1+
# vibe auracle Windows Installer
22
# Usage: iex (irm https://raw.githubusercontent.com/nathfavour/vibeauracle/release/install.ps1)
33

44
$ErrorActionPreference = "Stop"
@@ -47,6 +47,6 @@ if ($env:Path -notlike "*$InstallDir*") {
4747
$env:Path += ";$InstallDir"
4848
}
4949

50-
Write-Host "Successfully installed vibeauracle to $ExePath" -ForegroundColor Green
50+
Write-Host "Successfully installed vibe auracle to $ExePath" -ForegroundColor Green
5151
Write-Host "You may need to restart your terminal for changes to take effect." -ForegroundColor Yellow
5252
& "$ExePath" --help

install.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
# vibeauracle Universal Installer
3+
# vibe auracle Universal Installer
44
# Usage: curl -fsSL https://raw.githubusercontent.com/nathfavour/vibeauracle/release/install.sh | bash
55

66
set -e
@@ -58,7 +58,7 @@ fi
5858
if [ -z "$LATEST_TAG" ]; then
5959
# Fallback to API if git failed or wasn't found
6060
TMP_ERR=$(mktemp)
61-
TAG_DATA=$(curl -fsSL -H "User-Agent: vibeauracle-installer" "https://api.github.com/repos/$REPO/releases" 2>"$TMP_ERR" || true)
61+
TAG_DATA=$(curl -fsSL -H "User-Agent: vibe-auracle-installer" "https://api.github.com/repos/$REPO/releases" 2>"$TMP_ERR" || true)
6262

6363
if [ -n "$TAG_DATA" ]; then
6464
LATEST_TAG=$(echo "$TAG_DATA" | grep -oE '"tag_name": *"[^"]+"' | head -n 1 | cut -d'"' -f4)
@@ -128,7 +128,7 @@ else
128128
fi
129129

130130
chmod +x "$INSTALL_DIR/vibeaura"
131-
echo "Successfully installed vibeauracle to $INSTALL_DIR/vibeaura"
131+
echo "Successfully installed vibe auracle to $INSTALL_DIR/vibeaura"
132132

133133
# Auto-add to PATH
134134
SHELL_RC=""
@@ -145,7 +145,7 @@ fi
145145
if [ -n "$SHELL_RC" ]; then
146146
if ! grep -q "$INSTALL_DIR" "$SHELL_RC" 2>/dev/null; then
147147
echo "" >> "$SHELL_RC"
148-
echo "# vibeauracle path" >> "$SHELL_RC"
148+
echo "# vibe auracle path" >> "$SHELL_RC"
149149
echo "export PATH=\"\$PATH:$INSTALL_DIR\"" >> "$SHELL_RC"
150150
echo "Added $INSTALL_DIR to $SHELL_RC"
151151
fi

0 commit comments

Comments
 (0)