analyze-misfires
Identify skills injected where not needed, propose regex and description tightening
**ALWAYS use these Bash commands. NEVER use mcp__claude-in-chrome__* tools.**
> /plugin marketplace add iliaal/whetstone > /plugin install whetstone@iliaal-marketplace
How it fires
How this command gets triggered: by you, by Claude, or both.
/agent-browser-cliContext preview
What this command does when you run it.
**ALWAYS use these Bash commands. NEVER use mcp__claude-in-chrome__* tools.**
**ALWAYS use these Bash commands. NEVER use mcp__claude-in-chrome__* tools.**
# Navigation agent-browser open <url> # Navigate to URL agent-browser back # Go back agent-browser close # Close browser # Snapshots (get element refs) agent-browser snapshot -i # Interactive elements with refs (@e1, @e2, etc.) agent-browser snapshot -i --json # JSON output # Interactions (use refs from snapshot) agent-browser click @e1 # Click element agent-browser fill @e1 "text" # Fill input agent-browser type @e1 "text" # Type without clearing agent-browser press Enter # Press key # Screenshots agent-browser screenshot out.png # Viewport screenshot agent-browser screenshot --full out.png # Full page screenshot # Headed mode (visible browser) agent-browser --headed open <url> # Open with visible browser agent-browser --headed click @e1 # Click in visible browser # Wait agent-browser wait @e1 # Wait for element agent-browser wait 2000 # Wait milliseconds
Map changed files to testable routes:
| File Pattern | Route(s) | |-------------|----------| | `resources/views/users/*` | `/users`, `/users/:id`, `/users/new` | | `src/controllers/SettingsController.ts` | `/settings` | | `src/controllers/*.ts` | Pages using that controller | | `src/components/*.tsx` | Pages rendering that component | | `src/layouts/*` | All pages (test homepage at minimum) | | `src/styles/*` | Visual regression on key pages | | `src/helpers/*.ts` | Pages using that helper | | `src/app/*` (Next.js) | Corresponding routes |
# Check installation command -v agent-browser >/dev/null 2>&1 && echo "Installed" || echo "NOT INSTALLED" # Install if needed npm install -g agent-browser && agent-browser install
A Claude Code plugin that makes AI coding agents follow engineering discipline. Plan before coding. Verify before claiming done. Find root cause before patching. Review before merge. Skills activate based on file type and task signals, not manual toggling.
Repo: iliaal/whetstone
Identify skills injected where not needed, propose regex and description tightening
Draft X/Twitter announcement post (or thread) for the latest plugin release
Deep quality audit of all skills, agents, and commands for inconsistencies, gaps, duplication, and token waste
Analyze negative-signal sessions for a skill, identify failure patterns, propose and apply fixes
Eval all skills with sufficient data, rank by procedure-following score, identify candidates for optimization
Propose a skill revision and compare fresh executions under a frozen rubric