Skip to content

Commit b7a58cf

Browse files
committed
More changes from roo to zoo, change config to use / as base url
1 parent 60edcb2 commit b7a58cf

10 files changed

Lines changed: 47 additions & 71 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Roo Code Docs
1+
# Zoo Code Docs
22

33
This website is built using [Docusaurus](https://docusaurus.io/), a modern static website generator, and lives at https://docs.roocode.com
44

docs/advanced-usage/available-tools/access-mcp-resource.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
---
2-
description: Learn how the access_mcp_resource tool retrieves data from Model Context Protocol servers for additional context in Roo Code tasks.
2+
description: Learn how the access_mcp_resource tool retrieves data from Model Context Protocol servers for additional context in Zoo Code tasks.
33
keywords:
44
- access_mcp_resource
55
- MCP
66
- Model Context Protocol
77
- MCP resources
8-
- Roo Code tools
8+
- Zoo Code tools
99
- context retrieval
1010
- API integration
1111
---
1212

1313
# access_mcp_resource
1414

15-
The `access_mcp_resource` tool retrieves data from resources exposed by connected Model Context Protocol (MCP) servers. It allows Roo to access files, API responses, documentation, or system information that provides additional context for tasks.
15+
The `access_mcp_resource` tool retrieves data from resources exposed by connected Model Context Protocol (MCP) servers. It allows Zoo to access files, API responses, documentation, or system information that provides additional context for tasks.
1616

1717
---
1818

docs/advanced-usage/available-tools/apply-diff.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ keywords:
66
- code modifications
77
- fuzzy matching
88
- diff tool
9-
- Roo Code tools
9+
- Zoo Code tools
1010
- multi-file edits
1111
---
1212

@@ -35,7 +35,7 @@ This tool applies targeted changes to existing files using fuzzy matching guided
3535

3636
## When is it used?
3737

38-
- When Roo needs to make precise changes to existing code without rewriting entire files.
38+
- When Zoo needs to make precise changes to existing code without rewriting entire files.
3939
- When refactoring specific sections of code while maintaining surrounding context.
4040
- When fixing bugs in existing code with surgical precision.
4141
- When implementing feature enhancements that modify only certain parts of a file.

docs/advanced-usage/available-tools/apply-patch.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ keywords:
66
- unified diff
77
- multi-file edits
88
- file operations
9-
- Roo Code tools
9+
- Zoo Code tools
1010
- diff patches
1111
---
1212

docs/advanced-usage/available-tools/ask-followup-question.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
2-
description: Enable interactive communication in Roo Code with the ask_followup_question tool for gathering clarification and user preferences.
2+
description: Enable interactive communication in Zoo Code with the ask_followup_question tool for gathering clarification and user preferences.
33
keywords:
44
- ask_followup_question
55
- user interaction
66
- interactive communication
7-
- Roo Code tools
7+
- Zoo Code tools
88
- clarification
99
- user feedback
1010
---
@@ -26,16 +26,16 @@ The tool accepts these parameters:
2626

2727
## What It Does
2828

29-
This tool creates a conversational interface between Roo and the user, allowing for gathering clarification, additional details, or user preferences when facing ambiguities or decision points. Each question can include suggested responses to streamline the interaction.
29+
This tool creates a conversational interface between Zoo and the user, allowing for gathering clarification, additional details, or user preferences when facing ambiguities or decision points. Each question can include suggested responses to streamline the interaction.
3030

3131
---
3232

3333
## When is it used?
3434

3535
- When critical information is missing from the original request
36-
- When Roo needs to choose between multiple valid implementation approaches
36+
- When Zoo needs to choose between multiple valid implementation approaches
3737
- When technical details or preferences are required to proceed
38-
- When Roo encounters ambiguities that need resolution
38+
- When Zoo encounters ambiguities that need resolution
3939
- When additional context would significantly improve the solution quality
4040

4141
---
@@ -113,9 +113,9 @@ When the `ask_followup_question` tool is invoked, it follows this process:
113113

114114
The question-answer cycle follows this sequence:
115115

116-
1. **Information Gap Recognition**: Roo identifies missing information needed to proceed
117-
2. **Specific Question Creation**: Roo formulates a clear, targeted question
118-
3. **Suggestion Development**: Roo creates relevant suggested answers (optional but recommended)
116+
1. **Information Gap Recognition**: Zoo identifies missing information needed to proceed
117+
2. **Specific Question Creation**: Zoo formulates a clear, targeted question
118+
3. **Suggestion Development**: Zoo creates relevant suggested answers (optional but recommended)
119119
4. **Tool Invocation**: Assistant invokes the tool with question and optional suggestions
120120
5. **UI Presentation**: Question and suggestions are displayed to the user as interactive elements
121121
6. **User Response**: The user selects a suggestion or provides a custom answer
@@ -125,18 +125,18 @@ The question-answer cycle follows this sequence:
125125
- Maintains state consistency regardless of message chunking
126126
8. **Response Processing**: System wraps the response in `<answer>` tags and preserves images
127127
9. **Context Integration**: Response is added to the conversation history
128-
10. **Task Continuation**: Roo proceeds with the task using the new information
128+
10. **Task Continuation**: Zoo proceeds with the task using the new information
129129

130130
---
131131

132132
## Examples When Used
133133

134-
- When developing a web application, Roo might ask about preferred styling frameworks (Bootstrap, Tailwind, custom CSS)
135-
- When creating an API, Roo might ask about authentication methods (JWT, OAuth, API keys)
136-
- When refactoring code, Roo might ask about prioritizing performance vs. readability
137-
- When setting up a database, Roo might ask about specific schema design preferences
138-
- When creating a custom feature, Roo might ask about specific behavior expectations
139-
- When troubleshooting errors, Roo might ask about specific environment details
134+
- When developing a web application, Zoo might ask about preferred styling frameworks (Bootstrap, Tailwind, custom CSS)
135+
- When creating an API, Zoo might ask about authentication methods (JWT, OAuth, API keys)
136+
- When refactoring code, Zoo might ask about prioritizing performance vs. readability
137+
- When setting up a database, Zoo might ask about specific schema design preferences
138+
- When creating a custom feature, Zoo might ask about specific behavior expectations
139+
- When troubleshooting errors, Zoo might ask about specific environment details
140140

141141
---
142142

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
---
2-
description: Learn how to install and use Roo Code Nightly builds to test the latest features and improvements before official releases.
2+
description: Learn how to install and use Zoo Code Nightly builds to test the latest features and improvements before official releases.
33
keywords:
4-
- Roo Code Nightly
4+
- Zoo Code Nightly
55
- prerelease builds
66
- beta testing
77
- latest features
88
- nightly builds
9-
sidebar_label: Roo Code Nightly
9+
sidebar_label: Zoo Code Nightly
1010
---
1111

12-
# Roo Code Nightly
12+
# Zoo Code Nightly
1313

14-
For users who want the latest features and updates, Zoo Code offers a prerelease build called **Roo Code Nightly**, which is automatically published whenever changes are merged into our main development branch. This means it always reflects the latest code. It's designed for users who want to access the newest features and contribute to early testing.
14+
For users who want the latest features and updates, Zoo Code offers a prerelease build called **Zoo Code Nightly**, which is automatically published whenever changes are merged into our main development branch. This means it always reflects the latest code. It's designed for users who want to access the newest features and contribute to early testing.
1515

1616
---
1717

1818
## Understanding Nightly vs. Other Prereleases
1919

20-
It's important to distinguish Roo Code Nightly from other types of prerelease software (like beta versions or release candidates):
20+
It's important to distinguish Zoo Code Nightly from other types of prerelease software (like beta versions or release candidates):
2121

22-
* **Roo Code Nightly:**
22+
* **Zoo Code Nightly:**
2323
* **Frequency:** Automated builds, generated on each merge to the main development branch.
2424
* **Content:** Reflects the very latest merged code.
2525
* **Stability:** Highly experimental; may contain bugs or incomplete features.
@@ -37,17 +37,17 @@ In short: **Nightly = latest code, potentially unstable, frequent updates.** Oth
3737

3838
---
3939

40-
## Installing Roo Code Nightly
40+
## Installing Zoo Code Nightly
4141

42-
To install Roo Code Nightly:
42+
To install Zoo Code Nightly:
4343

4444
1. Open VS Code.
4545
2. Access Extensions: Click the Extensions icon in the Activity Bar or press `Ctrl+Shift+X` (Windows/Linux) or `Cmd+Shift+X` (macOS).
46-
3. Search for "Roo Code Nightly".
47-
4. Select "Roo Code Nightly" by Roo Code and click **Install**.
46+
3. Search for "Zoo Code Nightly".
47+
4. Select "Zoo Code Nightly" by Zoo Code and click **Install**.
4848
5. Reload VS Code if prompted.
4949

50-
<img src="/img/installing/installing-5.png" alt="Roo Code Nightly extension in VS Code Marketplace" width="400" />
51-
*Roo Code Nightly in the VS Code Marketplace.*
50+
<img src="/img/installing/installing-5.png" alt="Zoo Code Nightly extension in VS Code Marketplace" width="400" />
51+
*Zoo Code Nightly in the VS Code Marketplace.*
5252

53-
You can have both the stable version of Zoo Code and Roo Code Nightly installed simultaneously.
53+
You can have both the stable version of Zoo Code and Zoo Code Nightly installed simultaneously.

docs/getting-started/installing.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ Zoo Code is a VS Code extension that brings AI-powered coding assistance directl
3939

4040
1. Open VS Code
4141
2. Access Extensions: Click the Extensions icon in the Activity Bar or press `Ctrl+Shift+X` (Windows/Linux) or `Cmd+Shift+X` (macOS)
42-
3. Search for "Roo Code"
43-
4. Select "Roo Code" by RooVeterinaryInc and click **Install**
42+
3. Search for "Zoo Code"
43+
4. Select "Zoo Code" by ZooCodeOrg and click **Install**
4444
5. Reload VS Code if prompted
4545

4646
After installation, find the Zoo Code icon (<KangarooIcon />) in the Activity Bar to open the Zoo Code panel.
@@ -56,16 +56,16 @@ For VS Code-compatible editors without Marketplace access (like VSCodium and Win
5656

5757
1. Open your editor
5858
2. Access the Extensions view
59-
3. Search for "Roo Code"
60-
4. Select "Roo Code" by RooVeterinaryInc and click **Install**
59+
3. Search for "Zoo Code"
60+
4. Select "Zoo Code" by ZooCodeOrg and click **Install**
6161
5. Reload if prompted
6262

6363
<img src="/img/installing/installing-3.png" alt="Open VSX Registry with Zoo Code extension ready to install" width="400" />
6464

6565

6666
## Zoo Code Nightly
6767

68-
For information on installing the nightly prerelease build published on each merge to `main`, please see the [Roo Code Nightly](/advanced-usage/roo-code-nightly) guide in the Advanced Usage section.
68+
For information on installing the nightly prerelease build published on each merge to `main`, please see the [Zoo Code Nightly](/advanced-usage/roo-code-nightly) guide in the Advanced Usage section.
6969

7070

7171
## Manual Installation from VSIX
@@ -103,7 +103,7 @@ For instructions on setting up Zoo Code for local development, building from sou
103103
* Restart VS Code
104104
* Verify Zoo Code is listed and enabled in Extensions
105105
* Try disabling and re-enabling
106-
* Check Output panel for errors (View → Output, select "Roo Code")
106+
* Check Output panel for errors (View → Output, select "Zoo Code")
107107

108108
**Installation Problems**
109109
* Ensure stable internet connection

docs/tutorial-videos.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"videos": [
33
{
44
"id": "Mcq3r1EPZ-4",
5-
"title": "Installing Roo Code"
5+
"title": "Installing Zoo Code"
66
},
77
{
88
"id": "ZBML8h5cCgo",

docusaurus.config.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const config: Config = {
3333
url: 'https://zoo-code-org.github.io',
3434
// Set the /<baseUrl>/ pathname under which your site is served
3535
// For GitHub pages deployment, it is often '/<projectName>/'
36-
baseUrl: '/Zoo-Code-Docs/',
36+
baseUrl: '/',
3737

3838
// GitHub pages deployment config (if needed)
3939
organizationName: 'Zoo-Code-Org',
@@ -330,7 +330,7 @@ const config: Config = {
330330
themeConfig: {
331331
// SEO metadata
332332
metadata: [
333-
{name: 'keywords', content: 'Roo Code, AI coding assistant, VS Code extension, autonomous coding agent, AI pair programmer, code generation, documentation'},
333+
{name: 'keywords', content: 'Zoo Code, AI coding assistant, VS Code extension, autonomous coding agent, AI pair programmer, code generation, documentation'},
334334
{name: 'twitter:card', content: 'summary_large_image'},
335335
{name: 'twitter:site', content: '@roocode'},
336336
{name: 'twitter:creator', content: '@roocode'},
@@ -345,7 +345,7 @@ const config: Config = {
345345
image: '/img/social-share.png', // Default Open Graph image
346346
navbar: {
347347
logo: {
348-
alt: 'Roo Code Logo',
348+
alt: 'Zoo Code Logo',
349349
src: 'img/roo-code-logo-dark.svg',
350350
srcDark: 'img/roo-code-logo-white.svg',
351351
},
@@ -359,7 +359,7 @@ const config: Config = {
359359
footer: {
360360
style: 'dark',
361361
logo: {
362-
alt: 'Roo Code Logo',
362+
alt: 'Zoo Code Logo',
363363
src: 'img/roo-code-logo-dark.svg',
364364
srcDark: 'img/roo-code-logo-white.svg',
365365
width: 120,

src/components/GitHubInstallButtons/index.tsx

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -106,30 +106,6 @@ export default function GitHubInstallButtons(): React.JSX.Element {
106106
{stars && <span>{stars}</span>}
107107
</a>
108108

109-
<a
110-
href={SIGN_IN_URL}
111-
target="_blank"
112-
rel="noopener noreferrer"
113-
className={styles.secondaryButton}
114-
title="Log into Roo Code Cloud"
115-
>
116-
<span>
117-
Log in
118-
</span>
119-
</a>
120-
121-
<a
122-
href={SIGN_UP_URL}
123-
target="_blank"
124-
rel="noopener noreferrer"
125-
className={styles.installButton}
126-
title="Sign up"
127-
>
128-
<span>
129-
Sign up
130-
</span>
131-
</a>
132-
133109
{/* Install Button */}
134110
<a
135111
href={VSCODE_MARKETPLACE_URL}

0 commit comments

Comments
 (0)