Execute qualquer Skill no Manus
com um clique
com um clique
Execute qualquer Skill no Manus com um clique
Começar$pwd:
$ git log --oneline --stat
stars:7
forks:4
updated:22 de janeiro de 2026 às 02:09
SKILL.md
Test the Ark Dashboard UI with Playwright
Run Ark from cloned source using devspace
Install Ark on a Kuberenetes Cluster
Create a Kind cluster in Docker-in-Docker environment
| name | GitHub Attach Images |
| description | Attach images to GitHub PRs and issues via a scratch repo |
Attach images to GitHub PRs or issues by hosting them in a scratch repo.
Clone or create scratch repo
git clone git@github.com:<USERNAME>/scratch.git /tmp/scratch
If it doesn't exist, create a public repo called scratch first.
Folder structure
scratch/
└── github-attachments/
└── <org>_<repo>_<pr-or-issue>/
├── 01-screenshot.png
└── 02-screenshot.png
Copy images to scratch repo
mkdir -p /tmp/scratch/github-attachments/<org>_<repo>_<number>
cp /path/to/screenshots/*.png /tmp/scratch/github-attachments/<org>_<repo>_<number>/
Push to GitHub
cd /tmp/scratch
git add .
git commit -m "chore: images for <org>/<repo>#<number>"
git push
Comment on PR:
gh pr comment <NUMBER> --repo <org>/<repo> --body "$(cat <<'EOF'
## Screenshots

This shows...
EOF
)"
Comment on issue:
gh issue comment <NUMBER> --repo <org>/<repo> --body "$(cat <<'EOF'

EOF
)"
https://raw.githubusercontent.com/<USERNAME>/scratch/main/github-attachments/<org>_<repo>_<number>/<filename>