diff --git a/cline_docs/marketplace/README.md b/cline_docs/marketplace/README.md index 6e43e25723..2d504d2175 100644 --- a/cline_docs/marketplace/README.md +++ b/cline_docs/marketplace/README.md @@ -37,7 +37,7 @@ The Marketplace provides the following key features: ## Default Marketplace Repository The default Marketplace repository is located at: -[https://github.com/RooVetGit/Roo-Code-Marketplace](https://github.com/RooVetGit/Roo-Code-Marketplace) +[https://github.com/RooCodeInc/Roo-Code-Marketplace](https://github.com/RooCodeInc/Roo-Code-Marketplace) ## Contributing diff --git a/cline_docs/marketplace/user-guide/05-adding-packages.md b/cline_docs/marketplace/user-guide/05-adding-packages.md index 55ebd13e37..f048f23efc 100644 --- a/cline_docs/marketplace/user-guide/05-adding-packages.md +++ b/cline_docs/marketplace/user-guide/05-adding-packages.md @@ -97,7 +97,7 @@ To contribute your package to the official repository, follow these steps: ### 1. Fork the Repository -1. Visit the official Roo Code Packages repository: [https://github.com/RooVetGit/Roo-Code-Marketplace](https://github.com/RooVetGit/Roo-Code-Marketplace) +1. Visit the official Roo Code Packages repository: [https://github.com/RooCodeInc/Roo-Code-Marketplace](https://github.com/RooCodeInc/Roo-Code-Marketplace) 2. Click the "Fork" button in the top-right corner 3. This creates your own copy of the repository where you can make changes @@ -149,7 +149,7 @@ git push origin main ### 6. Create a Pull Request -1. Go to the original repository: [https://github.com/RooVetGit/Roo-Code-Marketplace](https://github.com/RooVetGit/Roo-Code-Marketplace) +1. Go to the original repository: [https://github.com/RooCodeInc/Roo-Code-Marketplace](https://github.com/RooCodeInc/Roo-Code-Marketplace) 2. Click "Pull Requests" and then "New Pull Request" 3. Click "Compare across forks" 4. Select your fork as the head repository diff --git a/cline_docs/marketplace/user-guide/06-adding-custom-sources.md b/cline_docs/marketplace/user-guide/06-adding-custom-sources.md index 7baf639631..2e75f2e0f2 100644 --- a/cline_docs/marketplace/user-guide/06-adding-custom-sources.md +++ b/cline_docs/marketplace/user-guide/06-adding-custom-sources.md @@ -60,7 +60,7 @@ Once you have a properly structured source repository, you can add it to your Ro Roo Code comes with a default package source: -- URL: `https://github.com/RooVetGit/Roo-Code-Marketplace` +- URL: `https://github.com/RooCodeInc/Roo-Code-Marketplace` - This source is enabled by default, and anytime all sources have been deleted. ### Adding a New Source diff --git a/src/services/marketplace/__tests__/MetadataScanner.external.test.ts b/src/services/marketplace/__tests__/MetadataScanner.external.test.ts index a06acac1bb..8f3b78b386 100644 --- a/src/services/marketplace/__tests__/MetadataScanner.external.test.ts +++ b/src/services/marketplace/__tests__/MetadataScanner.external.test.ts @@ -13,7 +13,7 @@ describe("MetadataScanner External References", () => { const gitFetcher = new GitFetcher(mockContext) // Fetch the marketplace repository - const repoUrl = "https://github.com/RooVetGit/Roo-Code-Marketplace" + const repoUrl = "https://github.com/RooCodeInc/Roo-Code-Marketplace" const repo = await gitFetcher.fetchRepository(repoUrl) // Find the Project Manager package diff --git a/src/services/marketplace/constants.ts b/src/services/marketplace/constants.ts index bf71234bcf..4b467563d2 100644 --- a/src/services/marketplace/constants.ts +++ b/src/services/marketplace/constants.ts @@ -5,7 +5,7 @@ /** * Default marketplace repository URL */ -export const DEFAULT_PACKAGE_MANAGER_REPO_URL = "https://github.com/RooVetGit/Roo-Code-Marketplace" +export const DEFAULT_PACKAGE_MANAGER_REPO_URL = "https://github.com/RooCodeInc/Roo-Code-Marketplace" /** * Default marketplace repository name diff --git a/webview-ui/src/components/marketplace/__tests__/MarketplaceViewStateManager.test.ts b/webview-ui/src/components/marketplace/__tests__/MarketplaceViewStateManager.test.ts index e6fbca68a5..01a9712219 100644 --- a/webview-ui/src/components/marketplace/__tests__/MarketplaceViewStateManager.test.ts +++ b/webview-ui/src/components/marketplace/__tests__/MarketplaceViewStateManager.test.ts @@ -82,7 +82,7 @@ describe("MarketplaceViewStateManager", () => { const state = manager.getState() expect(state.sources).toEqual([ { - url: "https://github.com/RooVetGit/Roo-Code-Marketplace", + url: "https://github.com/RooCodeInc/Roo-Code-Marketplace", name: "Roo Code", enabled: true, }, @@ -93,7 +93,7 @@ describe("MarketplaceViewStateManager", () => { type: "marketplaceSources", sources: [ { - url: "https://github.com/RooVetGit/Roo-Code-Marketplace", + url: "https://github.com/RooCodeInc/Roo-Code-Marketplace", name: "Roo Code", enabled: true, }, @@ -896,7 +896,7 @@ describe("MarketplaceViewStateManager", () => { type: "marketplaceSources", sources: [ { - url: "https://github.com/RooVetGit/Roo-Code-Marketplace", + url: "https://github.com/RooCodeInc/Roo-Code-Marketplace", name: "Roo Code", enabled: true, }, @@ -1128,7 +1128,7 @@ describe("MarketplaceViewStateManager", () => { it("should restore sources from marketplaceSources on webview launch", () => { const savedSources = [ { - url: "https://github.com/RooVetGit/Roo-Code-Marketplace", + url: "https://github.com/RooCodeInc/Roo-Code-Marketplace", name: "Roo Code", enabled: true, },