From 9ab1d798796a46ebe36cb84fdf314b8f9c694d59 Mon Sep 17 00:00:00 2001 From: admin-raintree <277948009+admin-raintree@users.noreply.github.com> Date: Fri, 4 Sep 2026 15:07:37 -0700 Subject: [PATCH 1/2] chore: update DocPull bundle to 6.5.2 --- README.md | 5 ++-- plugins.lock.json | 6 ++-- plugins/docpull/.claude-plugin/plugin.json | 2 +- plugins/docpull/.codex-plugin/plugin.json | 2 +- plugins/docpull/.mcp.json | 5 ++-- plugins/docpull/README.md | 7 +++-- .../docpull/scripts/launch-docpull-mcp.mjs | 29 +++++++++++++++++++ 7 files changed, 44 insertions(+), 12 deletions(-) create mode 100644 plugins/docpull/scripts/launch-docpull-mcp.mjs diff --git a/README.md b/README.md index b00ab16..2d3efa0 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Install the DocPull runtime, add the marketplace, and install the plugins you need: ```bash -pipx install 'docpull[mcp]==6.5.1' +pipx install 'docpull[mcp]==6.5.2' codex plugin marketplace add raintree-technology/plugins codex plugin add docpull@raintree codex plugin add hig-doctor@raintree @@ -27,7 +27,8 @@ codex plugin add @raintree codex plugin remove @raintree ``` -DocPull 6.5.1 constrains its MCP runtime to the compatible major version. The +DocPull 6.5.2 constrains its MCP runtime to the compatible major version and +reports the exact setup command when its executable is missing. The immutable `v0.1.0` tag records the withdrawn 6.5.0 bundle, and `v0.1.1` records the rollback. diff --git a/plugins.lock.json b/plugins.lock.json index 748c216..3e85e3e 100644 --- a/plugins.lock.json +++ b/plugins.lock.json @@ -4,10 +4,10 @@ { "name": "docpull", "repository": "https://github.com/raintree-technology/docpull.git", - "ref": "v6.5.1", - "commit": "ca55534347234990c361da83571472e00d6f33da", + "ref": "v6.5.2", + "commit": "2d1b4a43909042270f27ac7ff04bdecb1735568c", "sourcePaths": ["plugin"], - "version": "6.5.1" + "version": "6.5.2" }, { "name": "hig-doctor", diff --git a/plugins/docpull/.claude-plugin/plugin.json b/plugins/docpull/.claude-plugin/plugin.json index 0ff39e3..ad670a8 100644 --- a/plugins/docpull/.claude-plugin/plugin.json +++ b/plugins/docpull/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "docpull", - "version": "6.5.1", + "version": "6.5.2", "description": "Pull public web sources into Claude Code. Indexes static and server-rendered sites as local Markdown with conditional-GET caching, then exposes them as MCP tools. Local, browser-free, no API keys.", "author": { "name": "Raintree Technology", diff --git a/plugins/docpull/.codex-plugin/plugin.json b/plugins/docpull/.codex-plugin/plugin.json index 6afc67b..9df5e27 100644 --- a/plugins/docpull/.codex-plugin/plugin.json +++ b/plugins/docpull/.codex-plugin/plugin.json @@ -1,7 +1,7 @@ { "id": "docpull", "name": "docpull", - "version": "6.5.1", + "version": "6.5.2", "description": "Pull public web sources into Codex as local, searchable Markdown through docpull's MCP server.", "skills": "./skills/", "mcpServers": "./.mcp.json", diff --git a/plugins/docpull/.mcp.json b/plugins/docpull/.mcp.json index 68cf2b3..56586ae 100644 --- a/plugins/docpull/.mcp.json +++ b/plugins/docpull/.mcp.json @@ -1,8 +1,9 @@ { "mcpServers": { "docpull": { - "command": "docpull", - "args": ["mcp"] + "command": "node", + "args": ["./scripts/launch-docpull-mcp.mjs"], + "cwd": "." } } } diff --git a/plugins/docpull/README.md b/plugins/docpull/README.md index 08ebe1d..8dedf3c 100644 --- a/plugins/docpull/README.md +++ b/plugins/docpull/README.md @@ -20,12 +20,13 @@ for the boundary between the plugin's MCP tools and the broader CLI/SDK. The plugin wraps the `docpull` CLI. Install the MCP extra first: ```bash -pip install 'docpull[mcp]' # or: pipx install 'docpull[mcp]' -docpull --version # should print 6.5.1 or newer +pipx install 'docpull[mcp]==6.5.2' +docpull --version # should print 6.5.2 or newer docpull mcp --help ``` -The plain `pip install docpull` does not include the MCP dependency. +The plain `pip install docpull` does not include the MCP dependency. If the +executable is missing, the plugin exits with the exact `pipx` setup command. In Claude Code: diff --git a/plugins/docpull/scripts/launch-docpull-mcp.mjs b/plugins/docpull/scripts/launch-docpull-mcp.mjs new file mode 100644 index 0000000..0fa8b30 --- /dev/null +++ b/plugins/docpull/scripts/launch-docpull-mcp.mjs @@ -0,0 +1,29 @@ +#!/usr/bin/env node + +import { spawn } from "node:child_process"; + +const child = spawn("docpull", ["mcp", ...process.argv.slice(2)], { + stdio: "inherit", +}); + +child.on("error", (error) => { + if (error.code === "ENOENT") { + console.error( + "DocPull is not installed. Run: pipx install 'docpull[mcp]==6.5.2'", + ); + process.exitCode = 127; + return; + } + + console.error(`DocPull could not start: ${error.message}`); + process.exitCode = 1; +}); + +child.on("exit", (code, signal) => { + if (signal) { + process.kill(process.pid, signal); + return; + } + + process.exitCode = code ?? 1; +}); From 26c7c85cf7283d2c234ffd9913e1f5b2e31bd7bc Mon Sep 17 00:00:00 2001 From: admin-raintree <277948009+admin-raintree@users.noreply.github.com> Date: Fri, 4 Sep 2026 15:21:27 -0700 Subject: [PATCH 2/2] chore: advance DocPull bundle to 6.5.3 --- README.md | 4 ++-- plugins.lock.json | 6 +++--- plugins/docpull/.claude-plugin/plugin.json | 2 +- plugins/docpull/.codex-plugin/plugin.json | 4 ++-- plugins/docpull/README.md | 4 ++-- plugins/docpull/scripts/launch-docpull-mcp.mjs | 2 +- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 2d3efa0..255970c 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Install the DocPull runtime, add the marketplace, and install the plugins you need: ```bash -pipx install 'docpull[mcp]==6.5.2' +pipx install 'docpull[mcp]==6.5.3' codex plugin marketplace add raintree-technology/plugins codex plugin add docpull@raintree codex plugin add hig-doctor@raintree @@ -27,7 +27,7 @@ codex plugin add @raintree codex plugin remove @raintree ``` -DocPull 6.5.2 constrains its MCP runtime to the compatible major version and +DocPull 6.5.3 constrains its MCP runtime to the compatible major version and reports the exact setup command when its executable is missing. The immutable `v0.1.0` tag records the withdrawn 6.5.0 bundle, and `v0.1.1` records the rollback. diff --git a/plugins.lock.json b/plugins.lock.json index 3e85e3e..38dea58 100644 --- a/plugins.lock.json +++ b/plugins.lock.json @@ -4,10 +4,10 @@ { "name": "docpull", "repository": "https://github.com/raintree-technology/docpull.git", - "ref": "v6.5.2", - "commit": "2d1b4a43909042270f27ac7ff04bdecb1735568c", + "ref": "v6.5.3", + "commit": "cd9cc695974c64a6cb3be9c1436b0475db1c933e", "sourcePaths": ["plugin"], - "version": "6.5.2" + "version": "6.5.3" }, { "name": "hig-doctor", diff --git a/plugins/docpull/.claude-plugin/plugin.json b/plugins/docpull/.claude-plugin/plugin.json index ad670a8..cce8849 100644 --- a/plugins/docpull/.claude-plugin/plugin.json +++ b/plugins/docpull/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "docpull", - "version": "6.5.2", + "version": "6.5.3", "description": "Pull public web sources into Claude Code. Indexes static and server-rendered sites as local Markdown with conditional-GET caching, then exposes them as MCP tools. Local, browser-free, no API keys.", "author": { "name": "Raintree Technology", diff --git a/plugins/docpull/.codex-plugin/plugin.json b/plugins/docpull/.codex-plugin/plugin.json index 9df5e27..ee266bb 100644 --- a/plugins/docpull/.codex-plugin/plugin.json +++ b/plugins/docpull/.codex-plugin/plugin.json @@ -1,7 +1,7 @@ { "id": "docpull", "name": "docpull", - "version": "6.5.2", + "version": "6.5.3", "description": "Pull public web sources into Codex as local, searchable Markdown through docpull's MCP server.", "skills": "./skills/", "mcpServers": "./.mcp.json", @@ -44,6 +44,6 @@ "brandColor": "#0F6B5D", "composerIcon": "./assets/logo.svg", "logo": "./assets/logo.svg", - "defaultPrompt": "Use docpull when I ask about a specific library, framework, SDK, API, website, or public source URL. Prefer cached sources first, fetch only the requested source, and cite source paths when answering." + "defaultPrompt": "Use DocPull for a named library, framework, SDK, API, website, or public URL. Prefer cached sources and cite source paths." } } diff --git a/plugins/docpull/README.md b/plugins/docpull/README.md index 8dedf3c..e544590 100644 --- a/plugins/docpull/README.md +++ b/plugins/docpull/README.md @@ -20,8 +20,8 @@ for the boundary between the plugin's MCP tools and the broader CLI/SDK. The plugin wraps the `docpull` CLI. Install the MCP extra first: ```bash -pipx install 'docpull[mcp]==6.5.2' -docpull --version # should print 6.5.2 or newer +pipx install 'docpull[mcp]==6.5.3' +docpull --version # should print 6.5.3 or newer docpull mcp --help ``` diff --git a/plugins/docpull/scripts/launch-docpull-mcp.mjs b/plugins/docpull/scripts/launch-docpull-mcp.mjs index 0fa8b30..27e4626 100644 --- a/plugins/docpull/scripts/launch-docpull-mcp.mjs +++ b/plugins/docpull/scripts/launch-docpull-mcp.mjs @@ -9,7 +9,7 @@ const child = spawn("docpull", ["mcp", ...process.argv.slice(2)], { child.on("error", (error) => { if (error.code === "ENOENT") { console.error( - "DocPull is not installed. Run: pipx install 'docpull[mcp]==6.5.2'", + "DocPull is not installed. Run: pipx install 'docpull[mcp]==6.5.3'", ); process.exitCode = 127; return;