diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index c0acfe3534..64eb98dc30 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,5 +1,2 @@ blank_issues_enabled: true -contact_links: - - name: Verboo Code Discussions - url: https://github.com/verbeux-ai/code/discussions - about: Use Discussions for setup help, questions, ideas, and community conversation for Verboo Code. +contact_links: [] diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index da20941eca..e8214835ed 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -6,9 +6,8 @@ Verboo Code is a fast-moving open-source coding-agent CLI with support for multi ## Before You Start -- Search existing [issues](https://github.com/verbeux-ai/code/issues) and [discussions](https://github.com/verbeux-ai/code/discussions) before opening a new thread. +- Search existing [issues](https://github.com/verbeux-ai/code/issues) before opening a new thread. - Use issues for confirmed bugs and actionable feature work. -- Use discussions for setup help, ideas, and general community conversation. - For larger changes, open an issue first so the scope is clear before implementation. - For security reports, follow [SECURITY.md](SECURITY.md). diff --git a/README.md b/README.md index b72944df1a..8498c572fe 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,8 @@ Verboo Code is the coding-agent CLI for the [Verboo platform](https://code.verboo.ai). It connects exclusively to Verboo's infrastructure — no API keys from external providers needed. -[![PR Checks](https://github.com/verbeux/verboo/actions/workflows/pr-checks.yml/badge.svg?branch=main)](https://github.com/verbeux/verboo/actions/workflows/pr-checks.yml) -[![Release](https://img.shields.io/github/v/tag/verbeux/verboo?label=release&color=0ea5e9)](https://github.com/verbeux/verboo/tags) -[![Discussions](https://img.shields.io/badge/discussions-open-7c3aed)](https://github.com/verbeux/verboo/discussions) +[![PR Checks](https://github.com/verbeux-ai/code/actions/workflows/pr-checks.yml/badge.svg?branch=main)](https://github.com/verbeux-ai/code/actions/workflows/pr-checks.yml) +[![Release](https://img.shields.io/github/v/tag/verbeux-ai/code?label=release&color=0ea5e9)](https://github.com/verbeux-ai/code/tags) [![Security Policy](https://img.shields.io/badge/security-policy-0f766e)](SECURITY.md) [![License](https://img.shields.io/badge/license-MIT-2563eb)](LICENSE) @@ -247,8 +246,7 @@ If you believe you found a security issue, see [SECURITY.md](SECURITY.md). ## Community -- Use [GitHub Discussions](https://github.com/verbeux/verboo/discussions) for Q&A, ideas, and community conversation -- Use [GitHub Issues](https://github.com/verbeux/verboo/issues) for confirmed bugs and actionable feature work +- Use [GitHub Issues](https://github.com/verbeux-ai/code/issues) for questions, confirmed bugs, and actionable feature work ## Contributing diff --git a/src/components/Feedback.tsx b/src/components/Feedback.tsx index e0fdb1edb0..69030f4a04 100644 --- a/src/components/Feedback.tsx +++ b/src/components/Feedback.tsx @@ -32,7 +32,7 @@ import TextInput from './TextInput.js'; // This value was determined experimentally by testing the URL length limit const GITHUB_URL_LIMIT = 7250; -const GITHUB_ISSUES_REPO_URL = 'https://github.com/verbeux/verboo-code/issues'; +const GITHUB_ISSUES_REPO_URL = 'https://github.com/verbeux-ai/code/issues'; type Props = { abortSignal: AbortSignal; messages: Message[]; diff --git a/src/components/mcp/MCPSettings.tsx b/src/components/mcp/MCPSettings.tsx index c72e0285a6..9547ff2c7f 100644 --- a/src/components/mcp/MCPSettings.tsx +++ b/src/components/mcp/MCPSettings.tsx @@ -147,7 +147,7 @@ export function MCPSettings(t0) { return; } if (servers.length === 0 && agentMcpServers.length === 0) { - onComplete("No MCP servers configured. Please run /doctor if this is unexpected. Otherwise, run `verboo mcp --help` or visit https://github.com/verbeux/verboo-code to learn more."); + onComplete("No MCP servers configured. Please run /doctor if this is unexpected. Otherwise, run `verboo mcp --help` or visit https://github.com/verbeux-ai/code to learn more."); } }; t8 = [servers.length, filteredClients.length, agentMcpServers.length, onComplete]; diff --git a/src/tools/WebSearchTool/providers/custom.ts b/src/tools/WebSearchTool/providers/custom.ts index b277950206..5292f2cbda 100644 --- a/src/tools/WebSearchTool/providers/custom.ts +++ b/src/tools/WebSearchTool/providers/custom.ts @@ -357,7 +357,7 @@ function auditLogCustomSearch(url: string): void { `[web-search] ⚠️ Custom search provider is active. ` + `Outbound requests go to: ${safeHostname(url) ?? url}. ` + `Ensure this endpoint is trusted. ` + - `See: https://github.com/verbeux/verboo-code/blob/main/docs/web-search-security.md`, + `See: https://github.com/verbeux-ai/code/blob/main/src/tools/WebSearchTool/README_SEARCH_PROVIDERS.md#custom-provider-security-guardrails`, ) } diff --git a/vscode-extension/verboo-vscode/package.json b/vscode-extension/verboo-vscode/package.json index d0fa61a5d2..954082dc2c 100644 --- a/vscode-extension/verboo-vscode/package.json +++ b/vscode-extension/verboo-vscode/package.json @@ -173,7 +173,7 @@ ], "repository": { "type": "git", - "url": "https://github.com/verbeux/verboo-code" + "url": "https://github.com/verbeux-ai/code" }, "license": "MIT" } diff --git a/vscode-extension/verboo-vscode/src/extension.js b/vscode-extension/verboo-vscode/src/extension.js index 0dec57f345..0a2a53022d 100644 --- a/vscode-extension/verboo-vscode/src/extension.js +++ b/vscode-extension/verboo-vscode/src/extension.js @@ -16,8 +16,8 @@ const { ChatController, VerbooChatViewProvider, VerbooChatPanelManager } = requi const { SessionManager } = require('./chat/sessionManager'); const { DiffContentProvider, SCHEME: DIFF_SCHEME } = require('./chat/diffController'); -const VERBOO_REPO_URL = 'https://github.com/verbeux/verboo-code'; -const VERBOO_SETUP_URL = 'https://github.com/verbeux/verboo-code/blob/main/README.md#quick-start'; +const VERBOO_REPO_URL = 'https://github.com/verbeux-ai/code'; +const VERBOO_SETUP_URL = 'https://github.com/verbeux-ai/code/blob/main/README.md#quick-start'; const PROFILE_FILE_NAME = '.verboo-profile.json'; function escapeHtml(value) {