-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinstall.sh
More file actions
executable file
·161 lines (138 loc) · 5.26 KB
/
install.sh
File metadata and controls
executable file
·161 lines (138 loc) · 5.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
#!/bin/bash
set -e
# Colors for output
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[1;33m'
BLUE='\033[0;34m'
NC='\033[0m' # No Color
BLUEPRINT_REPO="https://github.com/trsdn/github-copilot-agent.git"
TEMP_DIR=$(mktemp -d)
echo -e "${BLUE}╔════════════════════════════════════════════════════╗${NC}"
echo -e "${BLUE}║ GitHub Copilot Customizations Blueprint Installer ║${NC}"
echo -e "${BLUE}╚════════════════════════════════════════════════════╝${NC}"
echo ""
# Check if we're in a git repository
if ! git rev-parse --git-dir > /dev/null 2>&1; then
echo -e "${RED}✗ Error: Not in a git repository${NC}"
echo "Please run this script from within a git repository."
exit 1
fi
echo -e "${GREEN}✓ Git repository detected${NC}"
echo ""
# Ask user what to install
echo -e "${YELLOW}What would you like to install?${NC}"
echo " 1) Everything (agents, prompts, skills)"
echo " 2) Agents only"
echo " 3) Prompts only"
echo " 4) Skills only"
echo " 5) Custom selection"
read -p "Enter choice [1-5]: " choice
# Initialize flags
INSTALL_AGENTS=false
INSTALL_PROMPTS=false
INSTALL_SKILLS=false
case $choice in
1)
INSTALL_AGENTS=true
INSTALL_PROMPTS=true
INSTALL_SKILLS=true
;;
2)
INSTALL_AGENTS=true
;;
3)
INSTALL_PROMPTS=true
;;
4)
INSTALL_SKILLS=true
;;
5)
read -p "Install agents? (y/n): " answer
[[ $answer =~ ^[Yy]$ ]] && INSTALL_AGENTS=true
read -p "Install prompts? (y/n): " answer
[[ $answer =~ ^[Yy]$ ]] && INSTALL_PROMPTS=true
read -p "Install skills? (y/n): " answer
[[ $answer =~ ^[Yy]$ ]] && INSTALL_SKILLS=true
;;
*)
echo -e "${RED}✗ Invalid choice${NC}"
exit 1
;;
esac
echo ""
echo -e "${BLUE}📦 Fetching Copilot customizations blueprint...${NC}"
# Clone the blueprint repository
if ! git clone --depth 1 "$BLUEPRINT_REPO" "$TEMP_DIR" 2>/dev/null; then
echo -e "${RED}✗ Failed to fetch blueprint repository${NC}"
exit 1
fi
echo -e "${GREEN}✓ Blueprint fetched successfully${NC}"
echo ""
# Create directories
echo -e "${BLUE}📁 Creating directories...${NC}"
mkdir -p .github/agents
mkdir -p .github/prompts
mkdir -p .github/skills
# Install components
INSTALLED_COUNT=0
if [ "$INSTALL_AGENTS" = true ]; then
echo -e "${BLUE}→ Installing agents...${NC}"
if cp -r "$TEMP_DIR/.github/agents/"* .github/agents/ 2>/dev/null; then
COUNT=$(find "$TEMP_DIR/.github/agents/" -name "*.agent.md" | wc -l | xargs)
echo -e "${GREEN} ✓ Installed $COUNT agent(s)${NC}"
INSTALLED_COUNT=$((INSTALLED_COUNT + COUNT))
else
echo -e "${YELLOW} ⚠ No agents found in blueprint${NC}"
fi
fi
if [ "$INSTALL_PROMPTS" = true ]; then
echo -e "${BLUE}→ Installing prompts...${NC}"
if cp -r "$TEMP_DIR/.github/prompts/"* .github/prompts/ 2>/dev/null; then
COUNT=$(find "$TEMP_DIR/.github/prompts/" -name "*.prompt.md" | wc -l | xargs)
echo -e "${GREEN} ✓ Installed $COUNT prompt(s)${NC}"
INSTALLED_COUNT=$((INSTALLED_COUNT + COUNT))
else
echo -e "${YELLOW} ⚠ No prompts found in blueprint${NC}"
fi
fi
if [ "$INSTALL_SKILLS" = true ]; then
echo -e "${BLUE}→ Installing skills...${NC}"
if cp -r "$TEMP_DIR/.github/skills/"* .github/skills/ 2>/dev/null; then
COUNT=$(find "$TEMP_DIR/.github/skills/" -name "SKILL.md" | wc -l | xargs)
echo -e "${GREEN} ✓ Installed $COUNT skill(s)${NC}"
INSTALLED_COUNT=$((INSTALLED_COUNT + COUNT))
else
echo -e "${YELLOW} ⚠ No skills found in blueprint${NC}"
fi
fi
# Install git hooks for conventional commits
if [ -d "$TEMP_DIR/.githooks" ]; then
echo -e "${BLUE}→ Installing git hooks...${NC}"
mkdir -p .githooks
cp -r "$TEMP_DIR/.githooks/"* .githooks/ 2>/dev/null || true
chmod +x .githooks/*
mkdir -p scripts
cp "$TEMP_DIR/scripts/setup-hooks.sh" scripts/ 2>/dev/null || true
chmod +x scripts/setup-hooks.sh 2>/dev/null || true
git config core.hooksPath .githooks
echo -e "${GREEN} ✓ Git hooks installed (Conventional Commits enforced)${NC}"
fi
# Cleanup
rm -rf "$TEMP_DIR"
echo ""
echo -e "${GREEN}╔═══════════════════════════════════════╗${NC}"
echo -e "${GREEN}║ ✓ Installation Complete! ║${NC}"
echo -e "${GREEN}╚═══════════════════════════════════════╝${NC}"
echo ""
echo -e "${BLUE}Installed $INSTALLED_COUNT customization(s)${NC}"
echo ""
echo -e "${YELLOW}Next steps:${NC}"
echo " 1. Review the installed files in .github/"
echo " 2. Open VS Code and reload the window"
echo " 3. Open Copilot Chat and test your customizations"
echo " 4. Commit the changes: git add .github && git commit -m 'feat: add copilot customizations'"
echo ""
echo -e "${BLUE}Documentation:${NC} https://github.com/trsdn/github-copilot-agent#readme"
echo ""
echo -e "${GREEN}Happy coding with Copilot! 🚀${NC}"