Models
A context engine that treats skills as software.From the repository description
npx -y skills add PrefectHQ/colin --skill modelsAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
SKILL.md
1.4 KB, 323 tokens by cl100k_base, as published. Nobody here has run it
{% set server = colin.mcp.source.server_info() %} {% set server_name = vars.mcp_provider_name | default(server.name) %} {% set skill_name = server_name | lower | replace(" ", "-") %} {% file skill_name ~ "/SKILL.md" publish=true %}
name: {{ skill_name }} description: {% llm model="anthropic:claude-haiku-4-5" id="skill-description" %}Write a 1-sentence description of this MCP server's capabilities for use as a skill description. Be concise.
Server name: {{ server.name }} Server description: {{ server.instructions or "No description provided" }} {%- endllm %} {% if vars.generate_scripts | default(true) %} allowed-tools: Read, Bash(python:*) {%- endif %}
{{ server.name or "MCP Server" }}
{{ server.instructions }}
{% if vars.generate_scripts | default(true) %}
Running Tools
This skill includes Python scripts in scripts/ that call MCP tools directly.
To use these scripts, install: pip install fastmcp
{% endif %} {% set tools = colin.mcp.source.list_tools() %}
Tools
This server provides {{ tools | length }} tool(s):
{% for tool in tools %} {% set tool_doc = ref(skill_name ~ "/" ~ tool.name ~ ".md") %}
- [{{ tool.name }}]({{ tool.name }}.md){% if tool_doc and tool_doc.sections.summary %} - {{ tool_doc.sections.summary }}{% endif %} {% endfor %} {% endfile %}
What ships with it: 2 files
2.8 KB alongside SKILL.md
- _script-generator.md1.2 KB
- _tool-generator.md1.5 KB