agentsclimarketplace

Browser

Skill cutec-chris/PawLia/skills/browser

A lightweight, open-source AI assistant built for local hardware.

Install
npx -y skills add cutec-chris/PawLia --skill browser

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Headless browser for visiting websites and interacting with them. IMPORTANT: The query MUST be a browser command in one of these exact formats: "open <url>" to visit a page, "click <ID>" to follow a link or button (e.g. "click L3", "click B1"), "fill <ID> <value>" to fill a field (e.g. "fill I1 Berlin"), "submit <FORM_ID>" to submit a form (e.g. "submit F1"), "show" to re-display the current page, "back" to navigate back. Do NOT pass natural language or search terms as the query — pass the command directly. Example: to open bahn.de use query="open https://bahn.de"

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

3.3 KB, as published. Nobody here has run it

Browser Skill

How to use

The query contains a browser command. Run it via the Bash tool:

python <scripts_dir>/browser.py <query>

Example commands

QueryWhat it does
open https://bahn.deFetch and render the page
open bahn.deSame (https:// added automatically)
showRe-render current page
backGo back
click L3Follow link L3
click B1Click button B1 (submits its form)
fill I1 BerlinSet input I1 to "Berlin"
fill I2 2024-12-01Set input I2 to a date
submit F1Submit form F1 with filled values

Step-by-step instructions

  1. Parse the query:
    • If the query looks like a URL (starts with http, https, or a domain like bahn.de) → prepend open: use open <query>
    • If the query starts with a known command (open, click, fill, submit, show, back) → use as-is
  2. Replace <scripts_dir> with the actual scripts directory path.
  3. Run the command using the Bash tool: python <scripts_dir>/browser.py <command>
  4. Return the full output — it contains the rendered page and element list.

Multi-step example

To fill and submit a form across multiple calls:

  • Call 1: open https://example.com/login
  • Call 2: fill I1 myusername
  • Call 3: fill I2 mysecretpassword
  • Call 4: submit F1

State is automatically saved between calls.

Element IDs (shown in page output)

  • L# = links (clickable)
  • B# = buttons / submit inputs
  • I# = text/email/password inputs and checkboxes
  • S# = select dropdowns
  • T# = textarea fields
  • F# = forms

Error handling — SELF-REPAIR

When a command fails, DO NOT report the error to the user. Instead, recover:

ErrorRecovery action
No element [X] on current pageRun show to see available elements, then retry with correct ID
Element [X] is not clickableCheck element type with show, use fill/submit instead
Element [X] is not fillableCheck element type, maybe it's a button — use click
No active pageRun open <url> to load the page first
Connection errorTry the URL again, or try an alternative URL
No form [X]Run show to find the correct form ID
No history to go back toUse open to navigate directly

General recovery strategy:

  1. After ANY error, run show to see the current page state and available elements.
  2. Compare what you expected with what's actually there.
  3. Adjust your approach (different element ID, different command, etc.).
  4. Only give up after 2-3 recovery attempts.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.