Claude-skill-registry ds-tools
This skill should be used when the user asks "what plugins are available", "list data science tools", "what MCP servers can I use", "enable code intelligence", or needs to discover available plugins like serena, context7, or data access skills like wrds and lseg-data.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/ds-tools" ~/.claude/skills/majiayu000-claude-skill-registry-ds-tools && rm -rf "$T"
manifest:
skills/data/ds-tools/SKILL.mdsource content
Available Data Science Plugins
These plugins extend Claude Code capabilities for data science workflows. Enable when needed.
Code Intelligence
| Plugin | Description | Enable Command |
|---|---|---|
| Semantic code analysis, refactoring, symbol navigation | |
| Python type checking and diagnostics | |
Documentation
| Plugin | Description | Enable Command |
|---|---|---|
| Up-to-date library docs (pandas, numpy, sklearn, etc.) | |
Web & Automation
| Plugin | Description | Enable Command |
|---|---|---|
| Web scraping, browser automation, screenshots | |
Workflow
| Plugin | Description | Enable Command |
|---|---|---|
| Self-referential iteration loops | Already enabled |
| Create custom hooks from conversation patterns | Already enabled |
Data Access Skills (Built-in)
These are skills, not plugins - already available via
/ds:
| Skill | Description |
|---|---|
| WRDS (Wharton Research Data Services) queries |
| LSEG Data Library (formerly Refinitiv) |
| Gemini Batch API for large-scale LLM processing |
| Jupyter notebooks as text files |
| Marimo reactive Python notebooks |
File Format Skills (Bundled)
Office document and PDF skills from Anthropic's official skills repo (bundled via submodule):
| Skill | Use For |
|---|---|
| Spreadsheets, formulas, CSV→Excel conversion |
| PDF extraction, creation, form filling |
| Presentation creation and editing |
| Word docs, tracked changes, reports |
These skills are available via the
shared plugin - no separate installation needed.
When to Enable
- serena: Understanding complex analysis codebases, refactoring pipelines
- context7: Access current docs for pandas, scikit-learn, statsmodels, and other libraries
- playwright: Scrape web data sources, automate data collection
- pyright-lsp: Type check data pipelines
Usage
Enable a plugin for the current session:
claude --enable-plugin <plugin-name> # Enable a plugin by name and source
Enable a plugin for a project by adding to
.claude/settings.json:
{ "enabledPlugins": { "serena@claude-plugins-official": true } }