Write Milvus application-level Jupyter notebook examples as a DevRel workflow. Uses a Markdown-first approach — AI edits .md files, then converts to .ipynb via jupyter-switch.
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionjupyter-notebook-writingExecute the skills CLI command in your project's root directory to begin installation:
Fetches jupyter-notebook-writing from zc277584121/marketing-skills and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate jupyter-notebook-writing. Access via /jupyter-notebook-writing in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Create detailed user stories, acceptance criteria, and feature specs
Example
Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios
Reduce spec writing time by 50%, ensure comprehensive coverage
Research competitors, compare features, identify gaps
Example
Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities
Complete competitive research in 2 hours instead of 2 days
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
0
total installs
0
this week
0
upvotes
Run in your terminal
0
installs
0
this week
—
stars
Write Milvus application-level Jupyter notebook examples as a DevRel workflow. Uses a Markdown-first approach — AI edits .md files, then converts to .ipynb via jupyter-switch.
Prerequisites: Python >= 3.10, uv (
uvxcommand available)
The user wants to create or edit a Jupyter notebook example, typically demonstrating Milvus usage in an application context (RAG, semantic search, hybrid search, etc.).
Jupyter .ipynb files contain complex JSON with metadata, outputs, and execution counts — painful for AI to edit directly. Instead:
.md file — AI works with clean Markdown.ipynb — using jupyter-switch for runnable notebook.md is the source of truth for editingIn the .md file:
```python ... ```) become code cells in the notebook.md (they get generated when running the notebook)# Markdown -> Jupyter Notebook
uvx jupyter-switch example.md
# produces example.ipynb
# Jupyter Notebook -> Markdown
uvx jupyter-switch example.ipynb
# produces example.md
.bak backup is created automaticallyexample.md with the content (see structure below)uvx jupyter-switch example.mdexample.md and example.ipynb now exist.ipynb exists, convert first: uvx jupyter-switch example.ipynb.md fileuvx jupyter-switch example.mdBefore running any notebook, you must determine which Python environment to use. The system default jupyter execute may not have the required packages installed.
Step A — Check for saved preference. Look in the current project's CLAUDE.local.md for a ## Jupyter Notebook Execution section. If it contains a kernel name, use it directly and skip to Step 2.
Step B — If no saved preference, ask the user. Detect available environments first:
# Discover conda/mamba environments
conda env list 2>/dev/null || mamba env list 2>/dev/null
# Discover registered Jupyter kernels
jupyter kernelspec list 2>/dev/null
# Check system default Python
which python3 2>/dev/null && python3 --version 2>/dev/null
# Check for local virtual environment in the working directory
ls -d .venv/ venv/ 2>/dev/null
# Check if a uv-managed project (pyproject.toml + .venv)
test -f pyproject.toml && test -d .venv && echo "uv/pip project venv detected"
Then present a numbered list of choices. Include all detected environments:
jupyter execute as-is, no --kernel_name.venv/ or venv/ found in working directory) — the Python inside that venvNote on uv projects: If the working directory has
pyproject.toml+.venv/(a uv-managed project), the local venv option covers this case. The user can also runuv run jupyter execute example.ipynbdirectly if jupyter is a project dependency.
For every option, also offer a "remember" variant. Example prompt:
Which Python environment should I use to run this notebook?
1. System default (jupyter execute as-is)
2. conda: myenv (/path/to/envs/myenv)
3. Jupyter kernel: some-kernel
4. Local venv (.venv/)
5. Custom — enter a path or environment name
Tip: add "remember" to save your choice (e.g. "2, remember"),
so it gets written to CLAUDE.local.md and I won't ask next time.
Step C — Apply the chosen environment:
| Scenario | Action |
|---|---|
| Already a registered Jupyter kernel | Use jupyter execute --kernel_name=<name> |
| Conda env not yet registered as kernel | Register first: <env-python> -m ipykernel install --user --name <name> --display-name "<label>", then use --kernel_name=<name> |
| Custom Python path | Same as above — register as kernel first, then use --kernel_name |
Step D — If the user chose "remember": append or update a ## Jupyter Notebook Execution section in the current project's CLAUDE.local.md:
## Jupyter Notebook Execution
- **Jupyter kernel**: `<kernel-name>`
This ensures future runs skip the prompt and use the saved kernel directly.
Before running, comment out "setup-only" cells in the .md file — cells that are meant for first-time users but should not run in an automated test environment. Specifically:
pip install cells — dependencies should already be installed in the chosen Jupyter environment. If any packages are missing or need upgrading, install them externally in the target environment (with --upgrade), not inside the notebook.os.environ["OPENAI_API_KEY"] = "sk-***********". Instead, set environment variables externally before running (export in shell, or inject via code before jupyter execute).To comment out a cell, wrap its content in a block comment so the cell still executes (producing empty output) but does nothing:
# # pip install --upgrade langchain pymilvus
# import os
# os.environ["OPENAI_API_KEY"] = "sk-***********"
This keeps the notebook structure intact (cell count, ordering) while preventing conflicts with the external Jupyter environment.
For environment variables: either export them in the shell before running jupyter execute, or prepend them to the command:
OPENAI_API_KEY="sk-real-key" jupyter execute --kernel_name=<name> example.ipynb
.md to .ipynb if needed<env-python> -m pip install --upgrade <packages>jupyter execute --kernel_name=<name> example.ipynb (omit --kernel_name if using system default).md file, uncomment setup cells if needed for debugging, and re-convertA typical Milvus example notebook follows this structure:
# Title
Brief description of what this notebook demonstrates.
## Prerequisites
Install dependencies:
` ``python
!pip install pymilvus some-other-package
` ``
## Setup
Import and configuration:
` ``python
from pymilvus import MilvusClient
client = MilvusClient(uri="http://localhost:19530")
` ``
## Prepare Data
Load or generate example data:
` ``python
# data preparation code
` ``
## Create Collection & Insert Data
` ``python
# collection creation and data insertion
` ``
## Query / Search
` ``python
# search or query examples
` ``
## Cleanup
` ``python
client.drop_collection("example_collection")
` ``
This skill includes two reference documents under references/. Read them when the task involves their topics.
| Reference | When to Read | File |
|---|---|---|
| Bootcamp Format | Writing a Milvus integration tutorial (badges, document structure, section format, example layout) | references/bootcamp-format.md |
| Milvus Code Style | Writing pymilvus code (collection creation, MilvusClient connection args, schema patterns, best practices) | references/milvus-code-style.md |
references/bootcamp-format.md)Read this when the user is writing a Milvus integration tutorial for the bootcamp repository. It covers:
"sk-***********")references/milvus-code-style.md)Read this when the notebook involves pymilvus code. Key rules:
MilvusClient API — never use the legacy ORM layer (connections.connect(), Collection(), FieldSchema(), etc.)create_schema + add_field) — do not use the shortcut create_collection(dimension=...) without schemahas_collection check before creating collectionsconsistency_level="Strong" line in create_collection()load_collection() — collections auto-load on creationuri options (Milvus Lite / Docker / Zilliz Cloud).md file, not the .ipynb directly. The .md is easier for AI to read and write..md for editing, .ipynb for running/sharing..md, always re-run uvx jupyter-switch example.md to sync the .ipynb.Make data-driven prioritization decisions faster
Draft PRDs, status updates, and stakeholder presentations
Example
Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement
Save 3-5 hours/week on communication overhead
Prerequisites
Time Estimate
30-60 minutes to see productivity improvements
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.
✗ Avoid when
Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.
davila7/claude-code-templates
mattpocock/skills
parcadei/continuous-claude-v3
cursor/plugins
ailabs-393/ai-labs-claude-skills
pproenca/dot-skills
Registry listing for jupyter-notebook-writing matched our evaluation — installs cleanly and behaves as described in the markdown.
Useful defaults in jupyter-notebook-writing — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
I recommend jupyter-notebook-writing for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
Registry listing for jupyter-notebook-writing matched our evaluation — installs cleanly and behaves as described in the markdown.
Registry listing for jupyter-notebook-writing matched our evaluation — installs cleanly and behaves as described in the markdown.
jupyter-notebook-writing reduced setup friction for our internal harness; good balance of opinion and flexibility.
jupyter-notebook-writing reduced setup friction for our internal harness; good balance of opinion and flexibility.
Keeps context tight: jupyter-notebook-writing is the kind of skill you can hand to a new teammate without a long onboarding doc.
jupyter-notebook-writing is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
I recommend jupyter-notebook-writing for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
showing 1-10 of 28