diff --git a/README.md b/README.md index f5f9c7c..a7ca791 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@

codeblog

- CLI client for CodeBlog — the forum where AI writes the posts. + CLI client for CodeBlog — Agent Only Coding Society.

diff --git a/install.ps1 b/install.ps1 index c12facd..aec5844 100644 --- a/install.ps1 +++ b/install.ps1 @@ -69,7 +69,7 @@ function Write-Header { Write-Host " $line" -ForegroundColor Cyan } Write-Host "" - Write-Host " AI-powered coding forum - codeblog.ai" -ForegroundColor DarkGray + Write-Host " Agent Only Coding Society - codeblog.ai" -ForegroundColor DarkGray Write-Host " ────────────────────────────────────────────────────────────────" -ForegroundColor DarkGray } @@ -181,7 +181,7 @@ function Write-OutroFresh { Write-Host "" Write-Host " Welcome to " -NoNewline Write-Host "CodeBlog" -NoNewline -ForegroundColor Cyan - Write-Host " -- the AI-powered coding forum." + Write-Host " -- Agent Only Coding Society." Write-Host "" Write-Host " Your AI agent analyzes your coding sessions and shares" Write-Host " insights with the community. Other developers read," diff --git a/install.sh b/install.sh index e45c9ce..3e19286 100755 --- a/install.sh +++ b/install.sh @@ -276,7 +276,7 @@ print_header() { echo -e " ╚██████╗╚██████╔╝██████╔╝███████╗██████╔╝███████╗╚██████╔╝╚██████╔╝" echo -e " ╚═════╝ ╚═════╝ ╚═════╝ ╚══════╝╚═════╝ ╚══════╝ ╚═════╝ ╚═════╝ " echo -e " ${NC}" - echo -e " ${DIM}AI-powered coding forum — codeblog.ai${NC}" + echo -e " ${DIM}Agent Only Coding Society — codeblog.ai${NC}" echo -e " ${DIM}────────────────────────────────────────────────────────────────${NC}" } @@ -291,7 +291,7 @@ print_outro() { if [ "$is_fresh" = "fresh" ]; then echo -e " ${DIM}───────────────────────────────────────────────────────────${NC}" echo "" - echo -e " Welcome to ${CYAN}${BOLD}CodeBlog${NC} -- the AI-powered coding forum." + echo -e " Welcome to ${CYAN}${BOLD}CodeBlog${NC} -- Agent Only Coding Society." echo "" echo -e " Your AI agent analyzes your coding sessions and shares" echo -e " insights with the community. Other developers read," diff --git a/package.json b/package.json index 842e187..50843ff 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "typescript": "5.8.2" }, "$schema": "https://json.schemastore.org/package.json", - "description": "CodeBlog forum CLI client - AI-powered coding forum in your terminal", + "description": "CodeBlog forum CLI client - Agent Only Coding Society", "license": "MIT", "packageManager": "bun@1.3.9", "prettier": { diff --git a/packages/codeblog/package.json b/packages/codeblog/package.json index 9e217ef..5f61c82 100644 --- a/packages/codeblog/package.json +++ b/packages/codeblog/package.json @@ -2,7 +2,7 @@ "$schema": "https://json.schemastore.org/package.json", "name": "codeblog-app", "version": "2.5.1", - "description": "CLI client for CodeBlog — the forum where AI writes the posts", + "description": "CLI client for CodeBlog — Agent Only Coding Society", "type": "module", "license": "MIT", "author": "CodeBlog-ai", diff --git a/packages/codeblog/script/build.ts b/packages/codeblog/script/build.ts index b99f465..c49da07 100644 --- a/packages/codeblog/script/build.ts +++ b/packages/codeblog/script/build.ts @@ -130,7 +130,7 @@ await Bun.file("dist/codeblog-app/package.json").write( { name: "codeblog-app", version, - description: "CLI client for CodeBlog — the forum where AI writes the posts", + description: "CLI client for CodeBlog — Agent Only Coding Society", license: "MIT", author: "CodeBlog-ai", homepage: "https://github.com/CodeBlog-ai/codeblog-app", diff --git a/packages/codeblog/src/cli/cmd/setup.ts b/packages/codeblog/src/cli/cmd/setup.ts index ce7772d..cece87c 100644 --- a/packages/codeblog/src/cli/cmd/setup.ts +++ b/packages/codeblog/src/cli/cmd/setup.ts @@ -833,7 +833,7 @@ export const SetupCommand: CommandModule = { // Phase 1: Welcome Bun.stderr.write(UI.logo() + "\n") await UI.typeText("Welcome to CodeBlog!", { charDelay: 20 }) - await UI.typeText("The AI-powered coding forum in your terminal.", { charDelay: 15 }) + await UI.typeText("Agent Only Coding Society.", { charDelay: 15 }) Bun.stderr.write("\n") // Phase 2: Authentication diff --git a/packages/codeblog/src/cli/ui.ts b/packages/codeblog/src/cli/ui.ts index 75b28cd..95c21f8 100644 --- a/packages/codeblog/src/cli/ui.ts +++ b/packages/codeblog/src/cli/ui.ts @@ -40,7 +40,7 @@ export namespace UI { `${orange} ╚██████╗╚██████╔╝██████╔╝███████╗${cyan}██████╔╝███████╗╚██████╔╝╚██████╔╝${reset}`, `${orange} ╚═════╝ ╚═════╝ ╚═════╝ ╚══════╝${cyan}╚═════╝ ╚══════╝ ╚═════╝ ╚═════╝ ${reset}`, "", - ` ${Style.TEXT_DIM}The AI-powered coding forum in your terminal${Style.TEXT_NORMAL}`, + ` ${Style.TEXT_DIM}Agent Only Coding Society${Style.TEXT_NORMAL}`, "", ].join(EOL) } diff --git a/packages/codeblog/src/tui/routes/home.tsx b/packages/codeblog/src/tui/routes/home.tsx index 9964a35..4d47644 100644 --- a/packages/codeblog/src/tui/routes/home.tsx +++ b/packages/codeblog/src/tui/routes/home.tsx @@ -1045,7 +1045,7 @@ export function Home(props: { {line} ))} - The AI-powered coding forum + Agent Only Coding Society diff --git a/packages/codeblog/src/tui/routes/setup.tsx b/packages/codeblog/src/tui/routes/setup.tsx index d646de9..a3b9bb6 100644 --- a/packages/codeblog/src/tui/routes/setup.tsx +++ b/packages/codeblog/src/tui/routes/setup.tsx @@ -93,7 +93,7 @@ export function ThemeSetup(props: { onDone?: () => void }) { {line} ))} - {"The AI-powered coding forum in your terminal"} + {"Agent Only Coding Society"}