Skip to main content
Glama
profiles.js1.88 kB
/** * @typedef {'amp' | 'claude' | 'cline' | 'codex' | 'cursor' | 'gemini' | 'kiro' | 'opencode' | 'kilo' | 'roo' | 'trae' | 'windsurf' | 'vscode' | 'zed'} RulesProfile */ /** * Available rule profiles for project initialization and rules command * * ⚠️ SINGLE SOURCE OF TRUTH: This is the authoritative list of all supported rule profiles. * This constant is used directly throughout the codebase (previously aliased as PROFILE_NAMES). * * @type {RulesProfile[]} * @description Defines possible rule profile sets: * - amp: Amp Code integration * - claude: Claude Code integration * - cline: Cline IDE rules * - codex: Codex integration * - cursor: Cursor IDE rules * - gemini: Gemini integration * - kiro: Kiro IDE rules * - opencode: OpenCode integration * - kilo: Kilo Code integration * - roo: Roo Code IDE rules * - trae: Trae IDE rules * - vscode: VS Code with GitHub Copilot integration * - windsurf: Windsurf IDE rules * - zed: Zed IDE rules * * To add a new rule profile: * 1. Add the profile name to this array * 2. Create a profile file in src/profiles/{profile}.js * 3. Export it as {profile}Profile in src/profiles/index.js */ export const RULE_PROFILES = [ 'amp', 'claude', 'cline', 'codex', 'cursor', 'gemini', 'kiro', 'opencode', 'kilo', 'roo', 'trae', 'vscode', 'windsurf', 'zed' ]; /** * Centralized enum for all supported Roo agent modes * @type {string[]} * @description Available Roo Code IDE modes for rule generation */ export const ROO_MODES = [ 'architect', 'ask', 'orchestrator', 'code', 'debug', 'test' ]; /** * Check if a given rule profile is valid * @param {string} rulesProfile - The rule profile to check * @returns {boolean} True if the rule profile is valid, false otherwise */ export function isValidRulesProfile(rulesProfile) { return RULE_PROFILES.includes(rulesProfile); }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/eyaltoledano/claude-task-master'

If you have feedback or need assistance with the MCP directory API, please join our Discord server