pi-repoprompt-mcp 0.6.0 → 0.6.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1141,7 +1141,6 @@ async function selectTab(
1141
1141
 
1142
1142
  const result = await client.callTool(bindContextToolName, {
1143
1143
  op: "bind",
1144
- window_id: windowId,
1145
1144
  context_id: tabId,
1146
1145
  });
1147
1146
 
@@ -2541,7 +2541,15 @@ Mode priority: call > describe > search > windows > bind > status`,
2541
2541
  const userArgs = (params.args ?? {}) as Record<string, unknown>;
2542
2542
  const normalizedTool = normalizeToolName(tool.name);
2543
2543
 
2544
- if (getBinding() && !getBinding()?.tab && normalizedTool !== "manage_workspaces" && normalizedTool !== "list_windows") {
2544
+ if (
2545
+ getBinding() &&
2546
+ !getBinding()?.tab &&
2547
+ normalizedTool !== "manage_workspaces" &&
2548
+ normalizedTool !== "list_windows" &&
2549
+ normalizedTool !== "bind_context" &&
2550
+ normalizedTool !== "agent_run" &&
2551
+ normalizedTool !== "agent_manage"
2552
+ ) {
2545
2553
  if (!ctx) {
2546
2554
  return {
2547
2555
  content: [{ type: "text" as const, text: "RepoPrompt binding has no tab. Re-bind with /rp bind before calling tab-scoped tools." }],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-repoprompt-mcp",
3
- "version": "0.6.0",
3
+ "version": "0.6.2",
4
4
  "description": "A token-efficient RepoPrompt integration for Pi with automated and branch-safe workspace management",
5
5
  "keywords": ["pi-package", "pi", "pi-coding-agent", "repoprompt", "mcp"],
6
6
  "license": "MIT",