From zzaia-workspace
Navigate to a URL and interact with the page via Playwright MCP
npx claudepluginhub zzaia/zzaia-agentic-workspace --plugin zzaia-workspace--url <page-url> [--description <interaction-details>]commands/capability/playwright/navigate/## PURPOSE Navigate to a specific URL using Playwright MCP and perform interactions on the page as described. Supports clicks, form fills, key presses, selections, screenshots, and DOM inspection. ## EXECUTION 1. **Navigate** — Open or reuse a browser tab and navigate to `--url` 2. **Snapshot** — Capture initial DOM/accessibility snapshot to understand page structure 3. **Interact** — Execute interactions derived from `--description` (click, fill, press, select, hover, drag, etc.) 4. **Verify** — Capture post-interaction snapshot and screenshot to confirm result 5. **Report** — Return st...
/SKILLGenerates CLAUDE.md project config file via interactive phases: detects environment and tools, collects developer profile, selects testing methodology and tech stack.
/SKILLCreates conventional git commit from conversation intent using git-agent and pushes to remote. Accepts optional Claude model name for co-author.
/SKILLResolves GitHub issue via isolated worktree, TDD workflow, and auto-closing PR creation.
/SKILLCreates a GitHub pull request with automated quality validation, security scanning, issue linking, and compliance checks. Accepts optional description or issue reference.
/SKILLStarts git-flow release: validates <version> semver, creates release/<version> branch, bumps version in project files, commits, and pushes to origin.
/SKILLReviews SwiftUI and Swift code for best practices, modern APIs, data flow, navigation, accessibility, performance. Outputs issues by file with before/after fixes and prioritized summary.
Navigate to a specific URL using Playwright MCP and perform interactions on the page as described. Supports clicks, form fills, key presses, selections, screenshots, and DOM inspection.
--url--description (click, fill, press, select, hover, drag, etc.)MANDATORY: Always invoke the agents defined in this command's frontmatter for their designated responsibilities. Never skip, replace, or simulate their behavior directly.
zzaia-workspace-manager — Executes all Playwright MCP tool calls for navigation and page interactionsequenceDiagram
participant U as User
participant C as Command
participant W as zzaia-workspace-manager
participant P as Playwright MCP
U->>C: /capability:playwright:navigate --url <url> [--description <details>]
C->>W: Delegate with url and description
W->>P: browser_navigate(url)
P-->>W: Page loaded
W->>P: browser_snapshot
P-->>W: Initial DOM snapshot
W->>P: browser_* (click, fill, press, select, etc.)
P-->>W: Interaction results
W->>P: browser_snapshot + browser_take_screenshot
P-->>W: Final page state
W-->>C: Actions summary and page state
C-->>U: Structured interaction report
--url successfully--description/capability:playwright:navigate --url https://localhost:3000
/capability:playwright:navigate --url https://localhost:3000/login --description "Fill username admin and password secret, then click submit"
/capability:playwright:navigate --url https://example.com/form --description "Select option 'Brazil' from country dropdown and submit the form"