# 992 Skills 696f7cf6

> {% set server = colin.mcp.source %}

- Skill: `tools-only/992-skills-696f7cf6` (Agent Skill, multi-file: 3 files)
- Install (CLI): `npx skillmds@latest add tools-only/992-skills-696f7cf6`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tools-only/992-skills-696f7cf6/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: tools-only (https://skillmd.com/u/tools-only)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/tools-only/992-skills-696f7cf6

---

{% set server = colin.mcp.source %}

{# Discover and download all skills from the MCP server #}
{% for skill in server.list_skills() %}

{# Download each file in the skill #}
{% for file in skill.files %}
{% set file_uri = 'skill://' ~ skill.name ~ '/' ~ file.path %}
{% file skill.name ~ "/" ~ file.path publish=true %}
{{ server.resource(file_uri).content }}
{% endfile %}
{% endfor %}

{% endfor %}

