chore: snapshot main sync
This commit is contained in:
@@ -42,12 +42,25 @@ const QWEN_COMMANDS: AgentCommand[] = [
|
||||
{ name: 'review', description: 'Review changes' },
|
||||
];
|
||||
|
||||
const REASONIX_COMMANDS: AgentCommand[] = [
|
||||
{ name: 'help', description: 'Show available slash commands' },
|
||||
{ name: 'clear', description: 'Clear conversation history' },
|
||||
{ name: 'compact', description: 'Compact context window' },
|
||||
{ name: 'effort', description: 'Change reasoning effort' },
|
||||
{ name: 'hooks', description: 'Manage hooks' },
|
||||
{ name: 'mcp', description: 'Manage MCP servers' },
|
||||
{ name: 'memory', description: 'Manage project memory' },
|
||||
{ name: 'model', description: 'Switch model' },
|
||||
{ name: 'skill', description: 'Manage skills' },
|
||||
];
|
||||
|
||||
/** boocode harness uses /api/skills — merged on the frontend. */
|
||||
export const PROVIDER_COMMANDS: Record<string, AgentCommand[]> = {
|
||||
claude: CLAUDE_COMMANDS,
|
||||
opencode: OPENCODE_COMMANDS,
|
||||
goose: GOOSE_COMMANDS,
|
||||
qwen: QWEN_COMMANDS,
|
||||
reasonix: REASONIX_COMMANDS,
|
||||
boocode: [],
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user