Skip to content

Commit a31de3e

Browse files
committed
fix: change default template name from 'default' to 'bmad'
Update template references in both session context and workflow template path resolution to use 'bmad' as the new default template name instead of 'default'
1 parent cfc1ef2 commit a31de3e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/cli/tui/shared/context/session.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export const { use: useSession, provider: SessionProvider } = createSimpleContex
99
name: "Session",
1010
init: () => {
1111
const [store, setStore] = createStore({
12-
templateName: "default",
12+
templateName: "bmad",
1313
workflowCount: 0,
1414
lastRun: null as Date | null,
1515
})

src/shared/workflows/template.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ export async function getTemplatePathFromTracking(cmRoot: string): Promise<strin
161161

162162
if (!activeTemplate) {
163163
// No template tracked, return default
164-
return path.join(templatesDir, 'default.workflow.js');
164+
return path.join(templatesDir, 'bmad.workflow.js');
165165
}
166166

167167
// Return full path from template name

0 commit comments

Comments
 (0)