Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add MarcSkovMadsen/holoviz-mcp --skill paramgit clone --depth 1 https://github.com/MarcSkovMadsen/holoviz-mcpWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/marcskovmadsen/holoviz-mcp/param)<a href="https://agentmods.dev/skills/marcskovmadsen/holoviz-mcp/param"><img src="https://agentmods.dev/badge/skills/marcskovmadsen/holoviz-mcp/param/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/marcskovmadsen/holoviz-mcp/param"><img src="https://agentmods.dev/badge/skills/marcskovmadsen/holoviz-mcp/param.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 1 finding, up to medium
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- medium Excessive Agency · line 36 Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00069 | $0.04052 |
| Opus 5 | $0.00034 | $0.02026 |
| Sonnet 5 | $0.00014 | $0.00810 |
| Haiku 4.5 | $0.00007 | $0.00405 |
Grade A, and why
param scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 520 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Param: Declarative Parameters
Create typed, validated class attributes with reactive programming support.
Hello World Example
# DO always add this to ignore pyright Parameter type annotation warnings
# pyright: reportAssignmentType=false
import param
class Greeter(param.Parameterized):
"""A greeting generator with history tracking."""
# DON'T use 'name' as parameter - it's reserved in Param
# DO add type annotations, defaults, and doc strings
target: str = param.String(default="World", doc="Name to greet")
greeting: str = param.Selector(default="Hello", objects=["Hello", "Hi", "Hey"])
count: int = param.Integer(default=1, bounds=(1, 10), doc="Repetitions")
history: list = param.List(default=[], doc="Greeting history")
# DO use @param.depends (watch=False) for computed values with no side effects
@param.depends("target", "greeting", "count")
def message(self) -> str:
"""Computed value - recalculates when dependencies change."""
return " ".join([f"{self.greeting}, {self.target}!"] * self.count)
# DO use @param.depends(watch=True) for side effects (state updates, I/O, etc.)
@param.depends("target", watch=True)
def _track_changes(self):
"""Side effect - automatically runs when target changes."""
self.history = self.history + [self.target]
# Usage
greeter = Greeter(target="Alice")
print(greeter.message()) # "Hello, Alice!"
greeter.target = "Bob"
print(greeter.history) # ["Bob"] - tracked the change
greeter.greeting = "Hi"
greeter.count = 2
print(greeter.message()) # "Hi, Bob! Hi, Bob!"
param.Parameterized (Production) vs param.rx/bind (Exploration)
Use param.Parameterized for production code. Use param.rx/param.bind only for notebook exploration:
Core Parameter Types
import datetime
import param
import numpy as np
import pandas as pd
class AllParameterTypes(param.Parameterized):
# Strings
name: str = param.String(default="unnamed", doc="Item name")
color: str = param.Color(default="#FF5733", doc="Hex color or named color")
# Numbers
count: int = param.Integer(default=10, bounds=(0, 1000))
rate: float = param.Number(default=0.5, bounds=(0.0, 1.0), step=0.1)
magnitude: float = param.Magnitude(default=0.5) # Always 0.0-1.0
# Boolean
enabled: bool = param.Boolean(default=True)
# Selectors
mode: str = param.Selector(default="auto", objects=["auto", "manual", "hybrid"])
tags: list = param.ListSelector(default=["a"], objects=["a", "b", "c"])
# Collections
items: list = param.List(default=[], item_type=str)
config: dict = param.Dict(default={})
data: np.ndarray = param.Array(default=np.array([]))
df: pd.DataFrame = param.DataFrame(default=pd.DataFrame())
# Dates
date: datetime.date = param.CalendarDate(default=datetime.date.today())
date_range: tuple = param.CalendarDateRange(default=None, doc="Optional date range")
value_range: tuple = param.Range(default=(0, 10), bounds=(0, 100))
# Files
input_file: str = param.Filename(default=None, doc="Input file path")
output_dir: str = param.Foldername(default=None, doc="Output directory")
# Actions and Events
submit: bool = param.Event(doc="Trigger processing")
callback: callable = param.Callable(default=None, doc="Processing function")
# Class instances
nested: param.Parameterized = param.ClassSelector(class_=param.Parameterized, default=None)
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 9d ago First seen · 520 lines · 69 tokens per session scan A 2f8f2208fb61
param is a skill published in the GitHub repository MarcSkovMadsen/holoviz-mcp (34 stars, last pushed 8d ago), licensed BSD-3-Clause. It adds 69 tokens to every session and 4,052 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
dataviz-mcp
Show Python visualizations live in the browser with the dataviz-mcp MCP tools (show, screenshot). Use when those tools are available and the user asks to display, plot, chart, or visualize anything. Do not use for apps the user serves themselves with panel serve.
malloy-model-as-you-go
After answering a data question, write down what the answer assumed so the next reader can trust the number. A field with a.
malloy-html-data-app-runtime
Write the JavaScript that drives an in-package HTML data app, calling Publisher.query, building queries from filter state, and handling results and errors. Read before writing the page's data code.
dotnet-entity-framework-core
Design, tune, or review EF Core data access with proper modeling, migrations, query translation, performance, and lifetime management for modern .NET applications.
python-docs
Comprehensive Python 3.13 reference covering all language features: variables, built-in types, strings, control flow, functions, lambdas, decorators, classes, inheritance, dataclasses, enums, metaclasses, collections (list, dict, set, tuple, comprehensions), modules and packages, pip, venv, exceptions, context…
entity-framework-migration
Use when modernizing legacy Entity Framework data layers to EF Core with help for model mapping, DbContext refactors, phased cutovers, and migration risk review. USE FOR: migrate EF6 to EF Core, refactor DbContext configuration, convert model mappings and conventions, plan phased database cutover, validate query…