From 024861c5090e2eb921c4fec4c98b24c74e542749 Mon Sep 17 00:00:00 2001 From: Yair Kruskal Date: Tue, 2 Jun 2026 14:52:02 +0300 Subject: [PATCH] Fix SKILL.md YAML: quote argument-hint so leading [ isn't parsed as a flow sequence Co-Authored-By: Claude Opus 4.8 (1M context) --- SKILL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SKILL.md b/SKILL.md index db51726..7160d69 100644 --- a/SKILL.md +++ b/SKILL.md @@ -1,7 +1,7 @@ --- name: Agentify description: Turn any website into an LLM-callable API. Phase 1 ("map") visits a site, proposes tool functions, and records deterministic Playwright recipes into recipes/.tools.json. Phase 2 ("call" or "run-mapped") replays a recipe directly or lets the LLM pick a tool from natural language — the page itself is never sent to the model. Use when the user wants to scrape, automate, or expose a website as tools. -argument-hint: [map|call|run-mapped] [...args] +argument-hint: "[map|call|run-mapped] [...args]" allowed-tools: Bash, Read ---