feat: add Kilo Code, Roo Code, and Windsurf support#15
Open
archasek wants to merge 2 commits intoiannuttall:mainfrom
Open
feat: add Kilo Code, Roo Code, and Windsurf support#15archasek wants to merge 2 commits intoiannuttall:mainfrom
archasek wants to merge 2 commits intoiannuttall:mainfrom
Conversation
- Kilo Code: add skills and workflows mappings - Windsurf: complete overhaul with .windsurf/ directory support - Add .windsurf/skills/ mapping - Add .windsurf/workflows/ mapping - Add .windsurf/rules/ mapping - Add .windsurf/AGENTS.md mapping - Keep .windsurfrules as legacy alternative - Roo Code: add .rooignore mapping - Add ignore file mapping for .codeiumignore (Windsurf) - Update all tests to cover new mappings
Author
|
let me know if can be merged or we close |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR adds support for three additional AI coding assistants: Kilo Code, Roo Code, and Windsurf. It consolidates and supersedes the previous individual PRs (#12, #13, #14) with a unified implementation based on comprehensive research.
Changes
Kilo Code Support
.kilocode/.agents/rules/→~/.kilocode/rules/(global scope).agents/AGENTS.md→~/.kilocode/AGENTS.md(global scope)Roo Code Support
.roo/.agents/rules/→~/.roo/rules/(global and project scope).agents/skills/→~/.roo/skills/(global and project scope).agents/commands/→~/.roo/commands/(global and project scope).agents/AGENTS.md→~/.roo/AGENTS.md(global scope)Windsurf Support
.agents/AGENTS.md→~/.windsurfrules(global scope only).windsurfrulesfile at the root level, not a directory structureFiles Modified
src/core/types.ts: Addedkilocode,roocode, andwindsurfto the Client typesrc/core/paths.ts: Added root paths for kilocode, roocode, and windsurf configurationssrc/core/mappings.ts: Added mappings for rules, skills, commands, and AGENTS.md for each clientsrc/cli.tsx: Added new clients to the interactive client selection UItests/linking.test.ts: Added comprehensive tests for all new client mappingsTesting
All 19 tests pass, including 4 new tests for the added clients:
kilocode creates symlinks for rules and AGENTS.md in global scoperoocode creates symlinks for rules, skills, commands, and AGENTS.md in global scopewindsurf creates symlink for .windsurfrules in global scopekilocode and roocode rules both link from canonical rules directoryRelated