Skip to content

Commit 7ed0392

Browse files
committed
Release v0.5.27: Restore skill targets, fix source title bug
1 parent b44546d commit 7ed0392

6 files changed

Lines changed: 13 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.5.27] - 2026-04-21
9+
10+
### Added
11+
- **Restore skill targets for codex and gemini-cli (Issue #163)** — Restored the missing target configurations for `codex` and `gemini-cli` agent skills and added Alef Agent specific frontmatter logic. Thanks to the user who reported this issue (#163)!
12+
13+
### Fixed
14+
- **Source: Honour `--title` when adding a file source (PR #162)** — Fixed an issue where adding a file source via CLI ignored the user's custom title. The source upload is now fully awaited before the follow-up rename is fired to guarantee precision. Huge thanks to **@CryptoWombat** for this excellent contribution and thorough fix!
15+
816
## [0.5.26] - 2026-04-17
917

1018
### Added

desktop-extension/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": "0.2",
33
"name": "notebooklm-mcp",
44
"display_name": "NotebookLM MCP Server",
5-
"version": "0.5.26",
5+
"version": "0.5.27",
66
"description": "Connect Claude to Google NotebookLM. Create podcasts, research topics, generate quizzes, flashcards, mind maps, and more from your notebooks.",
77
"long_description": "This extension connects Claude Desktop to Google NotebookLM via the Model Context Protocol. It provides 29 tools for managing notebooks, sources, and generating AI content.\n\n**Prerequisites:**\n1. Install the package: `pip install notebooklm-mcp-cli` or `uv tool install notebooklm-mcp-cli`\n2. Authenticate: Run `nlm login` to set up your Google account\n\n**Features:**\n- Create and manage notebooks\n- Add sources (URLs, YouTube, Google Drive, text, files)\n- Generate podcasts (Audio Overview)\n- Create quizzes, flashcards, mind maps, reports\n- Research topics with web or Drive search",
88
"author": {

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "notebooklm-mcp-cli"
7-
version = "0.5.26"
7+
version = "0.5.27"
88
description = "Unified CLI and MCP server for Google NotebookLM"
99
readme = "README.md"
1010
license = "MIT"

src/notebooklm_tools/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
from typing import Any
66

7-
__version__ = "0.5.26"
7+
__version__ = "0.5.27"
88

99
__all__ = ["NotebookLMClient", "__version__"]
1010

src/notebooklm_tools/data/AGENTS_SECTION.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!-- nlm-skill-start -->
2-
<!-- nlm-version: 0.5.26 -->
2+
<!-- nlm-version: 0.5.27 -->
33
## NLM - NotebookLM CLI Expert
44

55
**Triggers:** "nlm", "notebooklm", "notebook lm", "podcast", "audio overview", "research"

src/notebooklm_tools/data/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: nlm-skill
3-
version: "0.5.26"
3+
version: "0.5.27"
44
description: "Expert guide for the NotebookLM CLI (`nlm`) and MCP server - interfaces for Google NotebookLM. Use this skill when users want to interact with NotebookLM programmatically, including: creating/managing notebooks, adding sources (URLs, YouTube, text, Google Drive), generating content (podcasts, reports, quizzes, flashcards, mind maps, slides, infographics, videos, data tables), conducting research, chatting with sources, or automating NotebookLM workflows. Triggers on mentions of \"nlm\", \"notebooklm\", \"notebook lm\", \"podcast generation\", \"audio overview\", or any NotebookLM-related automation task."
55
---
66

0 commit comments

Comments
 (0)