* feat: improve GitHub provider onboarding and lifecycle * fix: address copilot review in provider manager * fix: address follow-up copilot review comments * test: resolve rebase conflict in provider profiles suite * fix: clear stale github hydrated marker * fix: harden github onboarding auth precedence * fix: remove merge markers from provider tests * fix: resolve latest copilot onboarding comments --------- Co-authored-by: KRATOS <84986124+gnanam1990@users.noreply.github.com>
13 lines
382 B
TypeScript
13 lines
382 B
TypeScript
import type { Command } from '../../commands.js'
|
|
|
|
const onboardGithub: Command = {
|
|
name: 'onboard-github',
|
|
aliases: ['onboarding-github', 'onboardgithub', 'onboardinggithub'],
|
|
description:
|
|
'Interactive setup for GitHub Models: device login or PAT, saved to secure storage',
|
|
type: 'local-jsx',
|
|
load: () => import('./onboard-github.js'),
|
|
}
|
|
|
|
export default onboardGithub
|