-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Name change #1680
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Name change #1680
Conversation
|
| */ | ||
| export async function ensureRooDirectory(cwd: string): Promise<void> { | ||
| const rooDir = path.join(cwd, ".roo") | ||
| export async function ensureseawolfDirectory(cwd: string): Promise<void> { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Consider renaming the function ensureseawolfDirectory to ensureSeawolfDirectory to maintain standard camelCase naming conventions. This improves readability and consistency.
|
|
||
| private constructor() { | ||
| this.client = new PostHog(process.env.POSTHOG_API_KEY || "", { | ||
| console.log("POSTHOG_API_KEY:", process.env.POSTHOG_API_KEY) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Avoid logging sensitive API keys in production. Logging POSTHOG_API_KEY can expose credentials. Consider removing or obfuscating this log statement.
| console.log("POSTHOG_API_KEY:", process.env.POSTHOG_API_KEY) |
| browserToolEnabled: true, | ||
| telemetrySetting: "unset", | ||
| showRooIgnoredFiles: true, // Default to showing .rooignore'd files with lock symbol (current behavior) | ||
| showSeawolfIgnoredFiles: true, // Default to showing .rooignore'd files with lock symbol (current behavior) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The comment on line 143 still refers to '.rooignore'd files' while the variable name has been updated to 'showSeawolfIgnoredFiles'. For consistency and clarity, consider updating the comment to reflect the new naming if appropriate.
| showSeawolfIgnoredFiles: true, // Default to showing .rooignore'd files with lock symbol (current behavior) | |
| showSeawolfIgnoredFiles: true, // Default to showing Seawolf ignored files with lock symbol (current behavior) |
|
The pull request involves a significant number of changes, with 85 files modified, 1414 lines added, and 2092 lines removed. The changes primarily focus on rebranding from 'Roo Code' to 'Seawolf'. Given the cohesive nature of these changes, it seems appropriate to keep them in a single pull request. However, if there are any unrelated changes that could be separated, please consider splitting them into separate pull requests for better manageability and reviewability. Thank you! |
* initialize class * wip * wip * cleaning up * update comment * fire n forget error handling * files added * changeset * duplicate path function * cleanup * Use special error type for when cline tries to access clineignore'd file * Rename LLMFileAccessController to ClineIgnoreController * Use better changeset * Remove unnecessary file parsing * Allow access to files outside cwd * Use more efficient clineIgnoreExists * Modify clineignore prompt * Use LOCK_TEXT_SYMBOL * Block commands attempting to access clineignored files * Fix prompt responses * fix tests; make sure .clineignore is ignored * Fix clineignore prompt * Fixes --------- Co-authored-by: Saoud Rizwan <[email protected]>
Context
Implementation
Screenshots
How to Test
Get in Touch
Important
Rename project from
Roo CodetoSeawolf, updating all references, configurations, and documentation accordingly.Roo CodetoSeawolfacross all files and documentation.README.md,package.json, andCHANGELOG.mdto reflect the new name.roo-clinetoseawolfinregisterCommands.tsand other command-related files.package.jsonwith new repository URL and author details..eslintrc.jsonto adjust ignore patterns and rules for TypeScript files.RooIgnoreControllerwithSeawolfIgnoreControllerinSeawolfIgnoreController.tsand related tests.ShadowCheckpointService.test.tsand other test files to useSeawolfnaming.ChatRow.tsxandApiOptions.tsxto reflect the new name.TelemetryService.tsandApiOptions.tsx.This description was created by
for 4a421b5. It will automatically update as commits are pushed.