veryfront 0.1.271 → 0.1.273

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.
@@ -177,10 +177,10 @@ export async function getRemoteIntegrationToolDefinitions(): Promise<
177
177
 
178
178
  /**
179
179
  * Check if a tool name looks like a remote integration tool.
180
- * Integration tools use "integration:tool-id" format.
180
+ * Integration tools use "integration__tool_id" format (double underscore separator).
181
181
  */
182
182
  export function isRemoteIntegrationTool(toolName: string): boolean {
183
- return toolName.includes(":");
183
+ return toolName.includes("__");
184
184
  }
185
185
 
186
186
  /**
@@ -1,3 +1,3 @@
1
1
  // Keep in sync with deno.json version.
2
2
  // scripts/release.ts updates this constant during releases.
3
- export const VERSION = "0.1.271";
3
+ export const VERSION = "0.1.273";