Add param skills#134
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This pull request adds comprehensive Param skills documentation and an ML Experiment Tracker example to the HoloViz MCP server. The PR introduces a new param.md skill file with extensive examples, patterns, and best practices for using the Param library, along with a practical example demonstrating how to build a machine learning experiment tracker using Param and Panel.
Changes:
- Added comprehensive
param.mdskill documentation with examples covering parameter types, validation, dependencies, watchers, and best practices - Updated
panel.mdto clarify that.from_param()should not be used with panes - Added
create-ml-experiment-tracker.mdexample demonstrating Param usage with Panel UI - Updated
install-uv.mdto clarify that pydata packages are assumed for tutorials - Added navigation entry for the new ML Experiment Tracker example
Reviewed changes
Copilot reviewed 5 out of 7 changed files in this pull request and generated 5 comments.
Show a summary per file
| File | Description |
|---|---|
| src/holoviz_mcp/config/resources/skills/param.md | New comprehensive skill documentation for Param library with examples and best practices |
| src/holoviz_mcp/config/resources/skills/panel.md | Clarified guidance about .from_param() usage with panes |
| mkdocs.yml | Added navigation entry for ML Experiment Tracker example |
| docs/how-to/install-uv.md | Clarified that pydata packages are assumed for tutorials |
| docs/examples/create-ml-experiment-tracker.md | New example demonstrating ML experiment tracking with Param and Panel |
| docs/assets/images/examples/ml-experiment-tracker-claude.png | Screenshot showing Claude's test results for the example |
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I started from https://github.com/cdcore09/holoviz-claude/tree/main/plugins/holoviz-expert/skills/parameterization and asked claude to pytest all the examples and fix issues. It did so. Then I tested all the examples manually.
The I reviewed the param.md file. Then I asked Claude to review and update based on https://github.com/anthropics/skills/blob/main/skills/skill-creator/SKILL.md. Then I tryid converting Pydantic examples to Param via Claude and updated the param.md file based on that. I also added a MLExperimentTracker example to the docs and improved based on that.