browser-devtools-mcp 0.1.5 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +19 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -913,6 +913,25 @@ The CLI uses a daemon server architecture for efficient browser management:
|
|
|
913
913
|
|
|
914
914
|
The daemon listens on port 2020 by default. Use `--port` to specify a different port.
|
|
915
915
|
|
|
916
|
+
### CLI Skills Documentation
|
|
917
|
+
|
|
918
|
+
Comprehensive documentation for AI agents and automation is available in the [skills/browser-devtools-cli](skills/browser-devtools-cli) directory:
|
|
919
|
+
|
|
920
|
+
- **[SKILL.md](skills/browser-devtools-cli/SKILL.md)** - Main CLI reference with global options, commands, and workflow examples
|
|
921
|
+
- **Domain References** (in `references/` subdirectory):
|
|
922
|
+
- [navigation.md](skills/browser-devtools-cli/references/navigation.md) - Page navigation (go-to, back, forward, reload)
|
|
923
|
+
- [content.md](skills/browser-devtools-cli/references/content.md) - Content extraction (screenshot, PDF, HTML, text)
|
|
924
|
+
- [interaction.md](skills/browser-devtools-cli/references/interaction.md) - User interactions (click, fill, hover, scroll)
|
|
925
|
+
- [a11y.md](skills/browser-devtools-cli/references/a11y.md) - Accessibility snapshots (ARIA, AX tree)
|
|
926
|
+
- [o11y.md](skills/browser-devtools-cli/references/o11y.md) - Observability (Web Vitals, console, HTTP, traces)
|
|
927
|
+
- [run.md](skills/browser-devtools-cli/references/run.md) - JavaScript execution (browser, sandbox)
|
|
928
|
+
- [stub.md](skills/browser-devtools-cli/references/stub.md) - HTTP mocking (intercept, mock, clear)
|
|
929
|
+
- [sync.md](skills/browser-devtools-cli/references/sync.md) - Synchronization (wait for network idle)
|
|
930
|
+
- [react.md](skills/browser-devtools-cli/references/react.md) - React DevTools integration
|
|
931
|
+
- [figma.md](skills/browser-devtools-cli/references/figma.md) - Figma design comparison
|
|
932
|
+
|
|
933
|
+
These skill files are optimized for AI agent consumption with non-interactive command examples, JSON output flags, and session-based workflow patterns.
|
|
934
|
+
|
|
916
935
|
## Configuration
|
|
917
936
|
|
|
918
937
|
The server can be configured using environment variables:
|