* feat: Add Kilo Code integration to TaskMaster * feat: Add Kilo profile configuration to rule transformer tests * refactor: Improve code formatting and consistency in Kilo profile and tests * fix: Correct formatting of workspaces in package.json * chore: add changeset for Kilo Code integration * feat: add Kilo Code rules and mode configurations - Add comprehensive rule sets for all modes (architect, ask, code, debug, orchestrator, test) - Update .kilocodemodes configuration with mode-specific settings - Configure MCP integration for Kilo Code profile - Establish consistent rule structure across all modes * refactor(kilo): simplify profile to reuse roo rules with replacements Remove duplicate Kilo-specific rule files and assets in favor of reusing roo rules with dynamic replacements, eliminating 900+ lines of duplicated code while maintaining full Kilo functionality. The profile now: - Reuses ROO_MODES constant instead of maintaining separate KILO_MODES - Applies text replacements to convert roo references to kilo - Maps roo rule files to kilo equivalents via fileMap - Removes all duplicate rule files from assets/kilocode directory * refactor(kilo): restructure object literals for consistency and remove duplicate customReplacements array based on CodeRabbit's suggestion * chore: remove disabled .mcp.json by mistake --------- Co-authored-by: Ralph Khreish <35776126+Crunchyman-ralph@users.noreply.github.com>
16 lines
649 B
JavaScript
16 lines
649 B
JavaScript
// Profile exports for centralized importing
|
|
export { ampProfile } from './amp.js';
|
|
export { claudeProfile } from './claude.js';
|
|
export { clineProfile } from './cline.js';
|
|
export { codexProfile } from './codex.js';
|
|
export { cursorProfile } from './cursor.js';
|
|
export { geminiProfile } from './gemini.js';
|
|
export { kiloProfile } from './kilo.js';
|
|
export { kiroProfile } from './kiro.js';
|
|
export { opencodeProfile } from './opencode.js';
|
|
export { rooProfile } from './roo.js';
|
|
export { traeProfile } from './trae.js';
|
|
export { vscodeProfile } from './vscode.js';
|
|
export { windsurfProfile } from './windsurf.js';
|
|
export { zedProfile } from './zed.js';
|