Skip to main content

page-agent-browser-automation

Usa a automatizar el navegador con Page Agent.

Jump to install

Source facts

Repository
Ntizar/MasterMind
Last source activity
September 5, 2026 at 21:27
Detected SKILL.md language
Spanish
Stars
2
Forks
0

Install options

The review-first prompt is selected by default. You can switch to a direct command or download a local copy.

Review the source files

Read SKILL.md and any companion files shown by SkillsMP before deciding whether to install.

Showing SKILL.md

SKILL.md
Source instructions · Read-only preview
name
page-agent-browser-automation
description
Usa a automatizar el navegador con Page Agent.
version
2.0.0
tags
["page-agent","browser","gma","automation","navegador","agente"]
related_skills
["browser-use-ai","browser-local-tools","computer-use"]
# Page Agent — agente GUI de Alibaba que vive en tu página > ⚠️ Corrección 2026-09-05 (auditoría): la API real usa `new PageAgent({ model, baseURL, apiKey, language })` + `await agent.execute('...')`; no `instructions/llm/mcp` + `agent.on('command', ...)`. **Repo:** `https://github.com/alibaba/page-agent` (TypeScript, ~29K⭐). ## When to Use - Cuando pidas **automatizar páginas web con un agente GUI** que vive dentro del navegador (uso de tools de página, soporte MCP). ## Uso (API real) ```js import { PageAgent } from 'page-agent'; const agent = new PageAgent({ model: 'qwen', // configuración de modelo baseURL: '...', apiKey: '...', language: 'es', }); const result = await agent.execute('busca y pincha el botón X'); // método execute ``` - Agente **in-page** + paquete npm + extensión de Chrome + soporte MCP. ## Pitfalls - Constructor: **`model/baseURL/apiKey/language`**; no `instructions/llm/mcp`. - Método: **`await agent.execute('...')`**; no `agent.on('command', ...)`. ## Verificación - Instanciar con model/API key del proveedor, `agent.execute()` sobre una página y ver que interactúa.
View on GitHub