From 71a7ca7e304d51d9f30f5fc6b6d2ad3cfb0ba0a2 Mon Sep 17 00:00:00 2001 From: Chenxin Yan Date: Tue, 18 Aug 2026 17:01:54 -0400 Subject: [PATCH] docs(skills): restore agent-browser prefix in interact bash examples interact sends --code literally to the API with no client-side prefixing, and the server-side bash environment requires invoking agent-browser explicitly (per maintainer review). The earlier fix correctly removed the nonexistent --language flag but wrongly dropped the prefix, over-generalizing from browser execute's auto-prefix logic, which never runs for interact. --- skills/firecrawl-interact/SKILL.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skills/firecrawl-interact/SKILL.md b/skills/firecrawl-interact/SKILL.md index cbb731df9f..6310dce2ad 100644 --- a/skills/firecrawl-interact/SKILL.md +++ b/skills/firecrawl-interact/SKILL.md @@ -34,8 +34,8 @@ firecrawl interact "Extract the pricing table" firecrawl interact "" "Extract the pricing table" # 3. Or use code for precise control -firecrawl interact --code "click @e5" --bash -firecrawl interact --code "snapshot -i" --bash +firecrawl interact --code "agent-browser click @e5" --bash +firecrawl interact --code "agent-browser snapshot -i" --bash # 4. Stop the session when done firecrawl interact stop