Read Skill
skillsmp_read_skillRead a skill's content directly from GitHub without cloning, and optionally run a security scan to verify safety.
Instructions
Read a skill's content directly from a GitHub repository (via GitHub API, fully online — no local clone) and optionally run Cisco Skill Scanner security analysis.
This tool fetches the SKILL.md content using the GitHub REST API, then optionally starts a local Skill Scanner API server (via uvx) and uploads the skill files as a ZIP for scanning. No files are written to disk. The skill is NOT installed — only read and scanned.
IMPORTANT: Use this to quickly load skill instructions and verify safety without manual steps.
Args:
repo (string, required): GitHub repository in 'owner/repo' format
skillName (string, required): Name of the skill to read
enableScan (boolean, optional): Run security scan (default: true, requires uv)
Returns: The full content of the skill's instructions (SKILL.md) with security scan results.
Examples:
repo: "existential-birds/beagle", skillName: "python-code-review"
repo: "LA3D/skillhelper", skillName: "code-reviewer", enableScan: false
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| repo | Yes | GitHub repository in 'owner/repo' format (e.g., 'existential-birds/beagle') | |
| skillName | Yes | Name of the skill to read | |
| enableScan | No | Run Cisco Skill Scanner security scan automatically (requires uv installed). Default: true |