9 / 12 · Book 1 · What Are Agent Skills?← prev⊞ allnext →Get the book →
1.9Self-Assessment Quiz
- What fundamental limitation of traditional browser automation do agent skills address?
- Do agent skills add new tools to the agent? If not, what do they add?
- Name the six layers of the skill-based browser automation stack.
- Why does Microsoft recommend the Playwright CLI over their own MCP server for coding agents?
- Who pioneered the CLI-skill pattern, and who mainstreamed it?
Answers:
- The gap between intent (what the test verifies) and implementation (exact selectors and steps).
- No. Skills add procedural knowledge -- markdown instructions teaching the agent to use existing tools for a domain.
- Test Definitions, AI Agent (hosting the skills), Bash Tool, playwright-cli, Playwright engine, Browser.
- It is measurably more token-efficient: Microsoft's benchmark showed
4x fewer tokens per task (27k vs ~114k). Snapshots go to disk and are read on demand instead of streamed on every action. - Jason Huggins (creator of Selenium) with Vibium's
vibe-checkskill in 2025; Microsoft in 2026 with@playwright/cliand itsinstall --skillsflag.