-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupdate.sh
More file actions
executable file
·45 lines (40 loc) · 2.04 KB
/
update.sh
File metadata and controls
executable file
·45 lines (40 loc) · 2.04 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
#!/usr/bin/env bash
set -euo pipefail
# creativity-maxxing — Update
# Clones the latest version and re-runs all idempotent modules.
GREEN='\033[0;32m'
BLUE='\033[0;34m'
NC='\033[0m'
echo ""
echo -e "${BLUE}━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${NC}"
echo -e "${BLUE} creativity-maxxing — Update${NC}"
echo -e "${BLUE} Pulling latest and re-running all idempotent modules${NC}"
echo -e "${BLUE}━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${NC}"
echo ""
echo " Design module:"
echo " UI/UX Pro Max skill · 8× Taste Skills · 21st.dev Magic MCP"
echo " Canva MCP · Figma MCP · Excalidraw MCP · Gamma MCP · Playwright MCP"
echo ""
echo " Media module:"
echo " Remotion skill · 15× Higgsfield/Seedance skills"
echo " YouTube Transcript MCP · yt-dlp (CLI + MCP)"
echo " whisper-cpp · whisper-mcp · FFmpeg"
echo ""
echo " Copywriting module:"
echo " /copywriting skill — anti-AI-slop master-trained copy filter"
echo ""
echo " Claude-Watch module:"
echo " /watch skill — video / channel / playlist → study notes"
echo ""
_TMPDIR="$(mktemp -d)"
trap 'rm -rf "$_TMPDIR"' EXIT
git clone --quiet --depth 1 https://github.com/fidgetcoding/creativity-maxxing.git "$_TMPDIR"
bash "$_TMPDIR/design/install.sh"
bash "$_TMPDIR/media/install.sh"
bash "$_TMPDIR/copywriting/install.sh"
bash "$_TMPDIR/watch/install.sh"
echo ""
echo -e "${GREEN}━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${NC}"
echo -e "${GREEN} creativity-maxxing update complete.${NC}"
echo -e "${GREEN}━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${NC}"
echo ""