From bffa1fadde63b9867aecd2d236b540fd27fb3cd1 Mon Sep 17 00:00:00 2001 From: admin-raintree <277948009+admin-raintree@users.noreply.github.com> Date: Fri, 4 Sep 2026 17:13:30 -0700 Subject: [PATCH] release: sync DocPull 6.5.5 --- plugins.lock.json | 6 +++--- plugins/docpull/.claude-plugin/plugin.json | 2 +- plugins/docpull/.codex-plugin/plugin.json | 2 +- plugins/docpull/README.md | 4 ++-- plugins/docpull/scripts/launch-docpull-mcp.mjs | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/plugins.lock.json b/plugins.lock.json index 26dd846..84c94cd 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.4", - "commit": "37113a213cbcf678efef99f85b4902ca750e35ed", + "ref": "v6.5.5", + "commit": "7cb52dfbaad30257365feba2e2f6c586674d10f9", "sourcePaths": ["plugin"], - "version": "6.5.4" + "version": "6.5.5" }, { "name": "hig-doctor", diff --git a/plugins/docpull/.claude-plugin/plugin.json b/plugins/docpull/.claude-plugin/plugin.json index d3681cb..e504821 100644 --- a/plugins/docpull/.claude-plugin/plugin.json +++ b/plugins/docpull/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "docpull", - "version": "6.5.4", + "version": "6.5.5", "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 bfc5641..0c78004 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.4", + "version": "6.5.5", "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/README.md b/plugins/docpull/README.md index 2f21129..ecd5cb9 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.4' -docpull --version # should print 6.5.4 or newer +pipx install 'docpull[mcp]==6.5.5' +docpull --version # should print 6.5.5 or newer docpull mcp --help ``` diff --git a/plugins/docpull/scripts/launch-docpull-mcp.mjs b/plugins/docpull/scripts/launch-docpull-mcp.mjs index eb452c1..76a3580 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" || error.code === "EACCES") { console.error( - "DocPull is not installed or is not executable. Run: pipx install 'docpull[mcp]==6.5.4'", + "DocPull is not installed or is not executable. Run: pipx install 'docpull[mcp]==6.5.5'", ); process.exitCode = 127; return;