Code Share
Analysis
This skill coherently creates or updates GitHub Gists for code sharing, but users should remember it uses their GitHub account and posts code to an external link.
Findings (4)
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.
gh gist create <file> --desc "<short description>"
The skill instructs the agent to use GitHub CLI commands to upload file contents to a Gist. This is purpose-aligned, but it is still an external sharing action.
Default to **secret gist** unless user asks for public.
The default is safer than public sharing, and the skill also warns not to publish secrets, but users should not mistake an externally shared Gist link for private local storage.
Required binaries (all must exist): none ... Primary credential: none
The registry metadata under-declares the GitHub CLI and GitHub authentication that the SKILL.md and scripts clearly require. This is a completeness issue, not hidden behavior.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
Verify GitHub CLI auth: `gh auth status` ... ask user to run: `gh auth login`
Creating and updating Gists requires use of the user's authenticated GitHub CLI session and gist permissions. That is expected for this integration, but it uses delegated account authority.
