This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -e | |
| # ── Config ─────────────────────────────────────────────────────────── | |
| REPO="https://github.com/AI-Essentials/instagram-skills.git" | |
| # Skills available in this repo (name|description) | |
| SKILLS=( | |
| "instagram-audit|Full account audit - content, performance, voice, competitors" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -e | |
| # ── Config ─────────────────────────────────────────────────────────── | |
| REPO="https://github.com/tylergermain/thread-carousels.git" | |
| # Skills available in this repo (name|description) | |
| SKILLS=( | |
| "instagram-thread-carousel|Turn text threads into Instagram carousel slides styled as tweet screenshots" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #Requires -Version 5.1 | |
| $ErrorActionPreference = "Stop" | |
| # -- Config --------------------------------------------------------------- | |
| $REPO = "https://github.com/AI-Essentials/screen-recording-skill.git" | |
| # -- Helpers --------------------------------------------------------------- | |
| $ESC = [char]27 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -e | |
| # ── Config ─────────────────────────────────────────────────────────── | |
| REPO="https://github.com/AI-Essentials/youtube-assistant.git" | |
| # Skills available in this repo (name|description) | |
| SKILLS=( | |
| "youtube-audit|Full channel audit + personalized CLAUDE.md setup" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -e | |
| # ── Config ─────────────────────────────────────────────────────────── | |
| REPO="https://github.com/AI-Essentials/claude-thumbnails.git" | |
| SKILL_NAME="youtube-thumbnail" | |
| # ── Helpers ────────────────────────────────────────────────────────── |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -e | |
| # ── Config ─────────────────────────────────────────────────────────── | |
| REPO="https://github.com/tylergermain/screen-recording-skill.git" | |
| # ── Helpers ────────────────────────────────────────────────────────── | |
| BOLD='\033[1m' |