Web Deploy GitHub Pages
Analysis
The skill matches its GitHub Pages purpose, but it can use your GitHub login to create a public repository and push all project files, so review it carefully before use.
Findings (3)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
git add . ... gh repo create "$PROJECT_NAME" --public --source=. --remote=origin --push
The deployment script stages every file in the project directory and creates/pushes a public GitHub repository by default.
uses: actions/checkout@v4 ... uses: actions/configure-pages@v4 ... uses: actions/upload-pages-artifact@v3 ... uses: actions/deploy-pages@v4
The generated GitHub Actions workflow runs external GitHub Actions pinned to version tags rather than immutable commit SHAs.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
if ! gh auth status &> /dev/null; then ... gh api -X POST "/repos/$GITHUB_USERNAME/$PROJECT_NAME/pages"
The script relies on the locally authenticated GitHub CLI to create and configure resources in the user's account, while the registry metadata declares no primary credential.
