Merge remote-tracking branch 'origin/main' into v2.0

This commit is contained in:
Paul Bakaus
2026-04-03 11:10:54 -07:00
5 changed files with 41 additions and 16 deletions
+1
View File
@@ -9,5 +9,6 @@ export const transformAgents = createTransformer(PROVIDERS.agents);
export const transformKiro = createTransformer(PROVIDERS.kiro);
export const transformOpenCode = createTransformer(PROVIDERS.opencode);
export const transformPi = createTransformer(PROVIDERS.pi);
export const transformRovoDev = createTransformer(PROVIDERS['rovo-dev']);
export { createTransformer, PROVIDERS };
+6
View File
@@ -70,4 +70,10 @@ export const PROVIDERS = {
displayName: 'Trae',
frontmatterFields: ['user-invocable', 'argument-hint', 'license', 'compatibility', 'metadata'],
},
'rovo-dev': {
provider: 'rovo-dev',
configDir: '.rovodev',
displayName: 'Rovo Dev',
frontmatterFields: ['user-invocable', 'argument-hint', 'license', 'compatibility', 'metadata', 'allowed-tools'],
},
};
+6
View File
@@ -341,6 +341,12 @@ export const PROVIDER_PLACEHOLDERS = {
config_file: 'RULES.md',
ask_instruction: 'ask the user directly to clarify what you cannot infer.',
command_prefix: '/'
},
'rovo-dev': {
model: 'Rovo Dev',
config_file: 'AGENTS.md',
ask_instruction: 'ask the user directly to clarify what you cannot infer.',
command_prefix: '/'
}
};