feat: assign models and new-chat notes

This commit is contained in:
Sjoerd Bozon 2026-01-19 11:01:54 +01:00
parent bdb5e79bb2
commit 28933486d4
No known key found for this signature in database
GPG Key ID: CECA93E5B0E2F8E0
1 changed files with 33 additions and 12 deletions

View File

@ -21,6 +21,7 @@ const workflowPromptsConfig = {
agent: 'bmd-custom-bmm-analyst', agent: 'bmd-custom-bmm-analyst',
shortcut: 'WI', shortcut: 'WI',
description: '[WI] Initialize workflow and choose planning track', description: '[WI] Initialize workflow and choose planning track',
model: 'claude-opus-4.5',
prompt: '*workflow-init', prompt: '*workflow-init',
}, },
{ {
@ -28,13 +29,15 @@ const workflowPromptsConfig = {
agent: 'bmd-custom-bmm-analyst', agent: 'bmd-custom-bmm-analyst',
shortcut: 'BP', shortcut: 'BP',
description: '[BP] Brainstorm project ideas and concepts', description: '[BP] Brainstorm project ideas and concepts',
model: 'claude-opus-4.5',
prompt: '*brainstorm-project', prompt: '*brainstorm-project',
}, },
{ {
name: 'workflow-status', name: 'workflow-status',
agent: 'bmd-custom-bmm-pm', agent: 'bmd-custom-bmm-pm',
shortcut: 'WS', shortcut: 'WS',
description: '[WS] Check current workflow status and next steps', description: '[WS] Check current workflow status and next steps (open a new chat with Ctrl+Shift+Enter)',
model: 'claude-opus-4.5',
prompt: '*workflow-status', prompt: '*workflow-status',
}, },
@ -46,13 +49,15 @@ const workflowPromptsConfig = {
agent: 'bmd-custom-bmm-pm', agent: 'bmd-custom-bmm-pm',
shortcut: 'PD', shortcut: 'PD',
description: '[PD] Create Product Requirements Document (PRD)', description: '[PD] Create Product Requirements Document (PRD)',
model: 'claude-opus-4.5',
prompt: '*prd', prompt: '*prd',
}, },
{ {
name: 'ux-design', name: 'ux-design',
agent: 'bmd-custom-bmm-ux-designer', agent: 'bmd-custom-bmm-ux-designer',
shortcut: 'UD', shortcut: 'UD',
description: '[UD] Create UX Design specification', description: '[UD] Create UX Design specification (open a new chat with Ctrl+Shift+Enter)',
model: 'claude-opus-4.5',
prompt: '*ux-design', prompt: '*ux-design',
}, },
@ -63,28 +68,32 @@ const workflowPromptsConfig = {
name: 'create-architecture', name: 'create-architecture',
agent: 'bmd-custom-bmm-architect', agent: 'bmd-custom-bmm-architect',
shortcut: 'CA', shortcut: 'CA',
description: '[CA] Create system architecture document', description: '[CA] Create system architecture document (open a new chat with Ctrl+Shift+Enter)',
model: 'claude-opus-4.5',
prompt: '*create-architecture', prompt: '*create-architecture',
}, },
{ {
name: 'epics-stories', name: 'epics-stories',
agent: 'bmd-custom-bmm-pm', agent: 'bmd-custom-bmm-pm',
shortcut: 'ES', shortcut: 'ES',
description: '[ES] Create Epics and User Stories from PRD', description: '[ES] Create Epics and User Stories from PRD (open a new chat with Ctrl+Shift+Enter)',
model: 'claude-opus-4.5',
prompt: '*epics-stories', prompt: '*epics-stories',
}, },
{ {
name: 'implementation-readiness', name: 'implementation-readiness',
agent: 'bmd-custom-bmm-architect', agent: 'bmd-custom-bmm-architect',
shortcut: 'IR', shortcut: 'IR',
description: '[IR] Check implementation readiness across all docs', description: '[IR] Check implementation readiness across all docs (open a new chat with Ctrl+Shift+Enter)',
model: 'claude-opus-4.5',
prompt: '*implementation-readiness', prompt: '*implementation-readiness',
}, },
{ {
name: 'sprint-planning', name: 'sprint-planning',
agent: 'bmd-custom-bmm-sm', agent: 'bmd-custom-bmm-sm',
shortcut: 'SP', shortcut: 'SP',
description: '[SP] Initialize sprint planning from epics', description: '[SP] Initialize sprint planning from epics (open a new chat with Ctrl+Shift+Enter)',
model: 'claude-opus-4.5',
prompt: '*sprint-planning', prompt: '*sprint-planning',
}, },
@ -97,13 +106,15 @@ const workflowPromptsConfig = {
agent: 'bmd-custom-bmm-sm', agent: 'bmd-custom-bmm-sm',
shortcut: 'CS', shortcut: 'CS',
description: '[CS] Create developer-ready story from epic', description: '[CS] Create developer-ready story from epic',
model: 'gpt-5.2-codex',
prompt: '*create-story', prompt: '*create-story',
}, },
{ {
name: 'dev-story', name: 'dev-story',
agent: 'bmd-custom-bmm-dev', agent: 'bmd-custom-bmm-dev',
shortcut: 'DS', shortcut: 'DS',
description: '[DS] Implement the current story', description: '[DS] Implement the current story (open a new chat with Ctrl+Shift+Enter)',
model: 'gpt-5.2-codex',
prompt: '*dev-story', prompt: '*dev-story',
}, },
{ {
@ -111,13 +122,15 @@ const workflowPromptsConfig = {
agent: 'bmd-custom-bmm-dev', agent: 'bmd-custom-bmm-dev',
shortcut: 'CR', shortcut: 'CR',
description: '[CR] Perform code review on implementation', description: '[CR] Perform code review on implementation',
model: 'gpt-5.2-codex',
prompt: '*code-review', prompt: '*code-review',
}, },
{ {
name: 'retrospective', name: 'retrospective',
agent: 'bmd-custom-bmm-sm', agent: 'bmd-custom-bmm-sm',
shortcut: 'ER', shortcut: 'ER',
description: '[ER] Run epic retrospective after completion', description: '[ER] Run epic retrospective after completion (open a new chat with Ctrl+Shift+Enter)',
model: 'claude-opus-4.5',
prompt: '*epic-retrospective', prompt: '*epic-retrospective',
}, },
{ {
@ -125,6 +138,7 @@ const workflowPromptsConfig = {
agent: 'bmd-custom-bmm-sm', agent: 'bmd-custom-bmm-sm',
shortcut: 'CC', shortcut: 'CC',
description: '[CC] Course correction when things go off track', description: '[CC] Course correction when things go off track',
model: 'claude-opus-4.5',
prompt: '*correct-course', prompt: '*correct-course',
}, },
], ],
@ -137,13 +151,15 @@ const workflowPromptsConfig = {
agent: 'bmd-custom-bmgd-game-dev', agent: 'bmd-custom-bmgd-game-dev',
shortcut: 'GI', shortcut: 'GI',
description: '[GI] Implement game feature', description: '[GI] Implement game feature',
model: 'gpt-5.2-codex',
prompt: '*game-implement', prompt: '*game-implement',
}, },
{ {
name: 'game-qa', name: 'game-qa',
agent: 'bmd-custom-bmgd-game-qa', agent: 'bmd-custom-bmgd-game-qa',
shortcut: 'GQ', shortcut: 'GQ',
description: '[GQ] Test and QA game feature', description: '[GQ] Test and QA game feature (open a new chat with Ctrl+Shift+Enter)',
model: 'gpt-5.2',
prompt: '*game-qa', prompt: '*game-qa',
}, },
// Planning & Design // Planning & Design
@ -151,21 +167,24 @@ const workflowPromptsConfig = {
name: 'game-design', name: 'game-design',
agent: 'bmd-custom-bmgd-game-designer', agent: 'bmd-custom-bmgd-game-designer',
shortcut: 'GD', shortcut: 'GD',
description: '[GD] Design game mechanics and systems', description: '[GD] Design game mechanics and systems (open a new chat with Ctrl+Shift+Enter)',
model: 'claude-opus-4.5',
prompt: '*game-design', prompt: '*game-design',
}, },
{ {
name: 'game-architecture', name: 'game-architecture',
agent: 'bmd-custom-bmgd-game-architect', agent: 'bmd-custom-bmgd-game-architect',
shortcut: 'GA', shortcut: 'GA',
description: '[GA] Create game technical architecture', description: '[GA] Create game technical architecture (open a new chat with Ctrl+Shift+Enter)',
model: 'claude-opus-4.5',
prompt: '*game-architecture', prompt: '*game-architecture',
}, },
{ {
name: 'game-sprint', name: 'game-sprint',
agent: 'bmd-custom-bmgd-game-scrum-master', agent: 'bmd-custom-bmgd-game-scrum-master',
shortcut: 'GS', shortcut: 'GS',
description: '[GS] Plan game development sprint', description: '[GS] Plan game development sprint (open a new chat with Ctrl+Shift+Enter)',
model: 'claude-opus-4.5',
prompt: '*game-sprint', prompt: '*game-sprint',
}, },
], ],
@ -177,6 +196,7 @@ const workflowPromptsConfig = {
agent: 'bmd-custom-core-bmad-master', agent: 'bmd-custom-core-bmad-master',
shortcut: 'LT', shortcut: 'LT',
description: '[LT] List available tasks', description: '[LT] List available tasks',
model: 'gpt-5-mini',
prompt: '*list-tasks', prompt: '*list-tasks',
}, },
{ {
@ -184,6 +204,7 @@ const workflowPromptsConfig = {
agent: 'bmd-custom-core-bmad-master', agent: 'bmd-custom-core-bmad-master',
shortcut: 'LW', shortcut: 'LW',
description: '[LW] List available workflows', description: '[LW] List available workflows',
model: 'gpt-5-mini',
prompt: '*list-workflows', prompt: '*list-workflows',
}, },
], ],