Files
vercel__vercel-plugin/tests/fixtures/golden-bash-next-dev.json
John Lindquist d5b5ef47f7 Replace skill body injection with Skill tool invocation instructions
Instead of injecting the full SKILL.md body as additionalContext, inject
"You must run the Skill(<name>) tool." — a more conventional way of
telling the agent to use the Skill tool for context loading.
2026-03-10 12:46:11 -06:00

34 lines
793 B
JSON

{
"description": "Golden snapshot: Bash 'npx next dev --turbopack' triggers 5 skills, cap 3 keeps agent-browser-verify (boosted 45), verification (45), nextjs (5)",
"input": {
"tool_name": "Bash",
"tool_input": {
"command": "npx next dev --turbopack"
}
},
"expected": {
"skillInjection": {
"version": 1,
"toolName": "Bash",
"toolTarget": "npx next dev --turbopack",
"matchedSkills": [
"agent-browser-verify",
"agent-browser",
"turbopack",
"verification",
"nextjs"
],
"injectedSkills": [
"agent-browser-verify",
"verification",
"nextjs"
],
"droppedByCap": [
"turbopack",
"agent-browser"
],
"droppedByBudget": []
}
}
}