/
sbars
/
claude-code
Обзор
Документация
Войти
/
sbars
/
claude-code
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
commands/install-github-app/index.ts
13 строк
471 B
kuberwastaken
init
31 мар 2026, 13:55
31 мар 2026, 13:55
ec53fcb
Код
Авторство
О чём код?
import type { Command } from '../../commands.js' import { isEnvTruthy } from '../../utils/envUtils.js' const installGitHubApp = { type: 'local-jsx', name: 'install-github-app', description: 'Set up Claude GitHub Actions for a repository', availability: ['claude-ai', 'console'], isEnabled: () => !isEnvTruthy(process.env.DISABLE_INSTALL_GITHUB_APP_COMMAND), load: () => import('./install-github-app.js'), } satisfies Command export default installGitHubApp