feat(sdd): update commands to use colon separator format (/spec:<action>)

This commit is contained in:
Jerop Kipruto
2026-03-17 14:34:08 -04:00
parent b9c46d362b
commit afe40fc284
13 changed files with 52 additions and 39 deletions

View File

@@ -791,7 +791,7 @@ describe('ExtensionManager', () => {
);
expect(emitSpy).toHaveBeenCalledWith(
'warning',
expect.stringContaining('/spec setup'),
expect.stringContaining('/spec:setup'),
);
});

View File

@@ -692,7 +692,7 @@ Would you like to attempt to install via "git clone" instead?`,
(e) => e.name === 'conductor',
);
if (conductorIdx !== -1) {
const message = `The "conductor" extension has been replaced by built-in Spec-Driven Development. Your project files in "/conductor" are preserved. Run "/spec setup" to get started.`;
const message = `The "conductor" extension has been replaced by built-in Spec-Driven Development. Your project files in "/conductor" are preserved. Run "/spec:setup" to get started.`;
debugLogger.warn(message);
coreEvents.emitFeedback('warning', message);
}