Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

jupyter-notebook-writingjupyter 笔记本写作

Agent Skill

用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写。它适合让 Agent 提炼结构、补齐章节、统一术语、检查链接或把零散材料整理成可读文档。使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论;涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。

总安装

11,432

周安装

467

GitHub Stars

公开资料未说明

下载量

3,661
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:jupyter-notebook-writing(jupyter 笔记本写作)
来源仓库:https://github.com/zc277584121/marketing-skills
仓库路径:skills/jupyter-notebook-writing
安装命令:
npx skills add https://github.com/zc277584121/marketing-skills --skill jupyter-notebook-writing
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/zc277584121/marketing-skills --skill jupyter-notebook-writing

简介

jupyter-notebook-writing 辅助文档和 Markdown 稿件整理,适合 README 和说明文改写。

  • 适用于提炼结构、统一术语和检查链接等文档优化任务。
  • 保留项目已有事实,避免将未确认信息写成确定结论。
  • 涉及对外文案时需控制语气,避免过度营销或夸大能力。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Skill: Jupyter Notebook Writing

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 (uvx command available)

When to Use

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.).


Core Workflow: Markdown-First Editing

Jupyter .ipynb files contain complex JSON with metadata, outputs, and execution counts — painful for AI to edit directly. Instead:

  1. Write/Edit the .md file — AI works with clean Markdown
  2. Convert to .ipynb — using jupyter-switch for runnable notebook
  3. Keep both files in sync — the .md is the source of truth for editing

Format Convention

In the .md file:

  • Python code blocks (``` `python... ` ```) become code cells in the notebook
  • Everything else becomes markdown cells
  • Cell outputs are not preserved in .md (they get generated when running the notebook)

Conversion Commands

# Markdown -> Jupyter Notebook
uvx jupyter-switch example.md
# produces example.ipynb

# Jupyter Notebook -> Markdown
uvx jupyter-switch example.ipynb
# produces example.md
  • The original input file is never modified or deleted
  • If the output file already exists, a .bak backup is created automatically

Step-by-Step

Creating a New Notebook

  1. Create example.md with the content (see structure below)
  2. Convert: uvx jupyter-switch example.md
  3. Both example.md and example.ipynb now exist

Editing an Existing Notebook

  1. If only .ipynb exists, convert first: uvx jupyter-switch example.ipynb
  2. Edit the .md file
  3. Convert back: uvx jupyter-switch example.md

Testing / Running

1. Resolve the Jupyter execution environment

Before 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:

  1. System default — run jupyter execute as-is, no --kernel_name
  2. Each detected conda/mamba environment — show name and path
  3. Each registered Jupyter kernel — show kernel name
  4. Local venv (if .venv/ or venv/ found in working directory) — the Python inside that venv
  5. Custom — let the user type a Python path or environment name
Note 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 run uv run jupyter execute example.ipynb directly 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:

ScenarioAction
Already a registered Jupyter kernelUse jupyter execute --kernel_name=<name>
Conda env not yet registered as kernelRegister first: <env-python> -m ipykernel install --user --name <name> --display-name "<label>", then use --kernel_name=<name>
Custom Python pathSame 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.

2. Prepare the notebook for execution

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.
  • API key / credential placeholder cells — e.g. os.environ["OPENAI_API_KEY"] = "sk-***********". Instead, set environment variables externally before running (export in shell, or inject via code before jupyter execute).
  • Mock / demo-only cells — any cells that exist purely for illustration and would fail or interfere in a real run.

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

3. Convert and run

  1. Convert .md to .ipynb if needed
  2. Install any missing dependencies in the target environment externally: <env-python> -m pip install --upgrade <packages>
  3. Run: jupyter execute --kernel_name=<name> example.ipynb (omit --kernel_name if using system default)
  4. If errors found, fix in the .md file, uncomment setup cells if needed for debugging, and re-convert

Notebook Structure Template

A 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")
` ``

Reference Documents

This skill includes two reference documents under references/. Read them when the task involves their topics.

ReferenceWhen to ReadFile
Bootcamp FormatWriting a Milvus integration tutorial (badges, document structure, section format, example layout)references/bootcamp-format.md
Milvus Code StyleWriting pymilvus code (collection creation, MilvusClient connection args, schema patterns, best practices)references/milvus-code-style.md

Bootcamp Format (references/bootcamp-format.md)

Read this when the user is writing a Milvus integration tutorial for the bootcamp repository. It covers:

  • Badge format (Colab + GitHub badges at the top)
  • Document structure: Header -> Prerequisites -> Main Content -> Conclusion
  • Dependency install format with Google Colab restart note
  • API key placeholder conventions ("sk-***********")
  • Each code block should have a short text introduction before it

Milvus Code Style (references/milvus-code-style.md)

Read this when the notebook involves pymilvus code. Key rules:

  • Always use MilvusClient API — never use the legacy ORM layer (connections.connect(), Collection(), FieldSchema(), etc.)
  • Always define schema explicitly (create_schema + add_field) — do not use the shortcut create_collection(dimension=...) without schema
  • Include has_collection check before creating collections
  • Add commented consistency_level="Strong" line in create_collection()
  • No need to call load_collection() — collections auto-load on creation
  • First MilvusClient connection must include the blockquote explaining uri options (Milvus Lite / Docker / Zilliz Cloud)

Important Notes

  • Always edit the .md file, not the .ipynb directly. The .md is easier for AI to read and write.
  • Keep both files.md for editing, .ipynb for running/sharing.
  • After editing .md, always re-run uvx jupyter-switch example.md to sync the .ipynb.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.01%
按下载量换算1,282

Claude

31.4%
按下载量换算1,150

Cursor

19.22%
按下载量换算704

Gemini CLI

8.96%
按下载量换算328

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills