feat: copilot cli, tool fixes

This commit is contained in:
2025-12-02 15:16:37 +00:00
parent 700417f20f
commit 4195864823
5 changed files with 21 additions and 1 deletions

16
script/install.d/23-copilot.sh Executable file
View File

@@ -0,0 +1,16 @@
#!/usr/bin/env bash
# -----------------------------------------------------------------------------
# Description:
# Install GitHub Copilot CLI.
#
if ! command -v copilot &>/dev/null; then
if command -v npm &>/dev/null; then
npm install -g @github/copilot
else
log_warn "Skipping GitHub Copilot CLI install: npm not found"
fi
fi
copilot --version