Token导航 LogoToken导航TokenDH.com
待分类操作浏览器github未标认证来源可访问许可证需确认审计通过

release-notebook发布笔记本

Agent Skill

release-notebook 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

339

周安装

14

GitHub Stars

160

下载量

111
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/yonatangross/orchestkit --skill release-notebook

简介

release-notebook 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。

  • 它可帮助 Agent 组织发布相关的文档与任务清单,支持结构化记录和回顾发布过程的关键节点。
  • 通过 npx skills add 命令从指定仓库安装,具体用法请结合原始 README 进一步确认。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Release Notebook

Creates a dedicated NotebookLM notebook for the current OrchestKit release, preserving changelog details, project instructions, and the plugin manifest as a queryable knowledge base.

See rules/workflow-versioned-notebooks.md in the notebooklm skill for the canonical versioned-notebook pattern this skill implements.

Preconditions

Before running:

  1. nlm login --check — confirm an active session (~20 min TTL)
  2. If session expired: nlm login (re-authenticates via browser)
  3. If notebooklm-mcp-cli is not installed: uv tool install notebooklm-mcp-cli

Workflow

Execute all steps in order. Stop and report if any MCP call fails.

Step 1 — Read Release Metadata

# Read version (e.g. "7.0.1")
Read: package.json  →  extract .version

Derive notebook title and major.minor label:

FULL_VERSION  = package.json .version          # e.g. "7.0.1"
MINOR_LABEL   = MAJOR.MINOR of FULL_VERSION    # e.g. "7.0"
NOTEBOOK_TITLE = "OrchestKit v{MINOR_LABEL} — Release KB"

Patch releases (x.y.Z where Z > 0) append to the existing minor notebook when it already exists. If this is the first patch of a minor series, create a new notebook.

Step 2 — Extract CHANGELOG Section

Read: CHANGELOG.md

Extract the section that starts with ## [7.0.1] (or whichever FULL_VERSION is current) up to — but not including — the next ## [ heading. Store as CHANGELOG_SECTION.

If the version section is not found, halt and report: "CHANGELOG.md has no entry for v{FULL_VERSION}. Add one before creating the Release KB."

Step 3 — Read Project Sources

Read: CLAUDE.md          →  CLAUDE_CONTENT
Read: manifests/ork.json →  MANIFEST_CONTENT

Step 4 — Create Notebook

notebook = mcp__notebooklm-mcp__notebook_create(
    title="OrchestKit v{MINOR_LABEL} — Release KB"
)
# Save: notebook_id = notebook.id

Step 5 — Add Sources

Add each source separately for better retrieval chunking:

# Source 1: changelog section
mcp__notebooklm-mcp__source_add(
    notebook_id=notebook_id,
    type="text",
    title="CHANGELOG v{FULL_VERSION}",
    content=CHANGELOG_SECTION
)

# Source 2: project instructions
mcp__notebooklm-mcp__source_add(
    notebook_id=notebook_id,
    type="text",
    title="CLAUDE.md — Project Instructions",
    content=CLAUDE_CONTENT
)

# Source 3: plugin manifest
mcp__notebooklm-mcp__source_add(
    notebook_id=notebook_id,
    type="text",
    title="manifests/ork.json — Plugin Manifest",
    content=MANIFEST_CONTENT
)

Step 6 — Add Release Summary Note

mcp__notebooklm-mcp__note(
    notebook_id=notebook_id,
    action="create",
    content="Release KB for OrchestKit v{FULL_VERSION}. Sources: CHANGELOG section, CLAUDE.md, manifests/ork.json."
)

Step 7 — Generate Audio Overview

Audio generation is async. Create, then poll until complete or failed.

# Trigger generation
artifact = mcp__notebooklm-mcp__studio_create(
    notebook_id=notebook_id,
    type="audio_overview"
)

# Poll (check every ~30s; generation takes 2-5 min)
status = mcp__notebooklm-mcp__studio_status(artifact_id=artifact.id)
# Repeat until status in ("completed", "failed")
# Inform user: "Generating audio overview... (status: {status})"

If generation fails, log the failure but do not halt — the notebook is still useful without audio.

Step 8 — Share Notebook

# Check current sharing status first
share_status = mcp__notebooklm-mcp__notebook_share_status(notebook_id=notebook_id)

# Invite project owner as writer
mcp__notebooklm-mcp__notebook_share_invite(
    notebook_id=notebook_id,
    email="yonatan2gross@gmail.com",
    role="writer"
)

Do not enable public link unless the user explicitly requests it — release notebooks may contain pre-release details.

Step 9 — Output Summary

Print a structured summary:

Release KB created for OrchestKit v{FULL_VERSION}

  Notebook : OrchestKit v{MINOR_LABEL} — Release KB
  ID       : {notebook_id}
  Sources  : CHANGELOG v{FULL_VERSION} | CLAUDE.md | manifests/ork.json
  Audio    : {completed | failed | pending}
  Shared   : yonatan2gross@gmail.com (writer)

Query this notebook with:
  notebook_query(notebook_id="{notebook_id}", query="What changed in v{FULL_VERSION}?")

Error Handling

ErrorAction
nlm login session expiredHalt. Print: "Run nlm login to re-authenticate, then retry."
notebook_create failsHalt. Print MCP error. Check nlm login --check.
source_add fails on one sourceLog warning, continue with remaining sources.
CHANGELOG section missingHalt before notebook_create. Report missing entry.
studio_create failsLog warning, continue — notebook is still valid.
studio_status = "failed"Log warning with artifact ID, continue.

Related Skills

  • ork:notebooklm — Full NotebookLM MCP tool reference and workflow patterns
  • ork:release-checklist — Pre-release gates (run before this skill)
  • ork:release-management — GitHub release creation with gh CLI

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.64%
按下载量换算40

Claude

30.37%
按下载量换算34

Cursor

19.8%
按下载量换算22

Gemini CLI

10.9%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills