Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -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: []
3 changes: 1 addition & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).

Expand Down
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion src/components/Feedback.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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[];
Expand Down
2 changes: 1 addition & 1 deletion src/components/mcp/MCPSettings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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];
Expand Down
2 changes: 1 addition & 1 deletion src/tools/WebSearchTool/providers/custom.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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`,
)
}

Expand Down
2 changes: 1 addition & 1 deletion vscode-extension/verboo-vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@
],
"repository": {
"type": "git",
"url": "https://github.com/verbeux/verboo-code"
"url": "https://github.com/verbeux-ai/code"
},
"license": "MIT"
}
4 changes: 2 additions & 2 deletions vscode-extension/verboo-vscode/src/extension.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
Loading