-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquick-install.sh
More file actions
55 lines (46 loc) · 1.46 KB
/
Copy pathquick-install.sh
File metadata and controls
55 lines (46 loc) · 1.46 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
#!/bin/bash
# Quick Install Script for cycleuser/Skills
# Usage: curl -sSL https://raw.githubusercontent.com/cycleuser/Skills/main/quick-install.sh | bash
set -e
REPO_URL="https://github.com/cycleuser/Skills"
INSTALL_DIR="${HOME}/.opencode/skills"
echo "========================================"
echo " Skills Installer"
echo "========================================"
echo ""
# Check Python
if ! command -v python3 &> /dev/null; then
echo "Error: Python 3 is required but not installed."
exit 1
fi
# Create installation directory
echo "Creating installation directory: $INSTALL_DIR"
mkdir -p "$INSTALL_DIR"
# Download and run Python installer
echo "Downloading installer..."
curl -sSL "$REPO_URL/raw/main/install.py" -o /tmp/skills_install.py
echo "Running installer..."
python3 /tmp/skills_install.py install
# Cleanup
rm -f /tmp/skills_install.py
echo ""
echo "========================================"
echo " Installation Complete!"
echo "========================================"
echo ""
echo "Skills installed to: $INSTALL_DIR"
echo ""
echo "Quick Start:"
echo " /skills - List all skills"
echo " /skill <name> - Load a skill"
echo ""
echo "Available Skills:"
echo " - skill-manager (auto-loaded)"
echo " - master-architect"
echo " - python-project-developer"
echo " - software-planner"
echo " - coding-agent-patterns"
echo " - iteration-manager"
echo " - academic-writer"
echo ""
echo "For more info: https://github.com/cycleuser/Skills"