Updates
Rolling release / release (push) Failing after 2m11s

This commit is contained in:
2026-09-14 10:19:13 -04:00
parent a097adf4eb
commit ac5f18f79d
38 changed files with 1265 additions and 157 deletions
+6 -4
View File
@@ -15,13 +15,15 @@ Local notes for this Jarvis session. This file is guidance, not an allowlist.
## Shell
- `run_terminal_cmd` is a local user shell, not root.
- Public HTTP via curl or wget is blocked. Use `web_search` / `web_fetch` in the Jarvis Chromium window.
- Public HTTP via curl or wget is blocked. Use `browser` in the Jarvis Chromium window.
## Browser
- Search, fetch, and `browser` share one headed Playwright Chromium window.
- `web_search` finds links. `fetch_page` reads a public page.
- Cookie walls, forms, leftover challenges: call `browser`. `read_file` `skills/browser/SKILL.md` for the playbook.
- `browser` is the only web tool. It drives one headed Playwright Chromium window.
- `web_search`, `google_search`, `fetch_page`, `web_fetch`, `wiki_search`, `hn_search`, and `code_search` are removed. Do not call them.
- To search, `navigate` to `https://duckduckgo.com/?q=QUERY` or a Google search url, then `click` a result ref.
- `navigate` and `snapshot` return page `text`. Read it, then decide the next action.
- Cookie walls, forms, leftover challenges: `read_file` `skills/browser/SKILL.md` for the playbook.
- `browser` actions: `navigate` + `url`, `snapshot`, `click`/`type` with `ref` from the last snapshot, `press` + `key`, `scroll` + `dy`, `wait` + `ms`.
- Snapshot or navigate before every click or type. Refs go stale after a click.
- Do not use `cu_observe` or the shell for websites.