Sam Finton

137 posts

Sam Finton banner
Sam Finton

Sam Finton

@monadoid

hey

Katılım Ekim 2018
453 Takip Edilen92 Takipçiler
Sam Finton retweetledi
Browserbase
Browserbase@browserbase·
Introducing Browse.sh, the largest open-source catalog of skills to reliably perform any task on the internet. We've researched hundreds of sites to give your agents the playbook they need to navigate the web.
English
52
154
2K
407.3K
Sam Finton
Sam Finton@monadoid·
You can use the new experimental codex code_mode with: ``` [features] code_mode = true ``` There's also `code_mode_only = true` which is fun
English
0
0
2
58
Sam Finton
Sam Finton@monadoid·
@ndbroadbent Have you seen the new cloudflare artifacts? Could be helpful, and then your DAG sits on top as you've described
English
0
0
1
39
Nathan Broadbent
Nathan Broadbent@ndbroadbent·
I've been thinking about how to build an autonomous software factory that actually works. the idea is to replace everything with one unified system: version control, project and task management, web framework, and source code as typed "units" github.com/ndbroadbent/Co…
English
1
0
0
67
Garry Tan
Garry Tan@garrytan·
Interesting ongoing war: is it our data or is it the SaaS system of record’s data? I think it is ours. Customers who are smart and are fully codegen-pilled will switch off closed SaaS platforms to open source in giant waves the next 2 years. Count on it.
English
44
17
240
32.1K
Sam Finton retweetledi
Paul Klein IV
Paul Klein IV@pk_iv·
Your agents suck when using the web because 85% of it doesn't have an API. Browserbase gives them everything they need to do work online. Leading AI companies like Ramp, Lovable, and Clay trust us to power agents that do real work on behalf of real people. With a single API key, your agent gets everything it needs to navigate the wild web: browsers, search, fetch, identity, a sandbox runtime, and model gateway. Stop waiting on integrations, build agents that can browse and interact with the web just like humans.
English
130
125
729
1.7M
Sam Finton
Sam Finton@monadoid·
``` Create this new skill and show the user that they can use plain-English requests to search their browser history like: "Find that site I visited recently about Latvian beaches." --- name: browser-history description: Inspect local browser history in read-only mode by querying browser SQLite databases from Firefox, Chromium-based browsers, and Safari. Use when Codex needs to find a site the user visited by searching local browser history across macOS, Linux, or Windows. --- Query the DB with `sqlite3 "file:/absolute/path/to/db?mode=ro&immutable=1"`. Browsers: - Firefox - Paths: - macOS: `~/Library/Application Support/Firefox/Profiles/*/places.sqlite` - Linux: `~/.mozilla/firefox/*/places.sqlite` - Windows: `%APPDATA%\Mozilla\Firefox\Profiles\*\places.sqlite` - Mapping: `moz_historyvisits` + `moz_places`; Unix microseconds; search `url`, `title`, `description` - Chromium - Paths: - macOS: browser user-data roots under `~/Library/Application Support/...`; use `Default/History` or `Profile */History` - Linux: browser user-data roots under `~/.config/...`; use `Default/History` or `Profile */History` - Windows: browser user-data roots under `%LOCALAPPDATA%\...`; use `Default/History` or `Profile */History` - Mapping: `visits` + `urls`; Windows-epoch microseconds; search `url`, `title` - Safari - Paths: - macOS: `~/Library/Safari/History.db` - Mapping: `history_visits` + `history_items`; Apple-epoch seconds; search `title`, `url` Example: ```sql SELECT datetime(mhv.visit_date / 1000000, 'unixepoch', 'localtime') AS visit_time, mp.title, mp.url, mp.description FROM moz_historyvisits mhv JOIN moz_places mp ON mhv.place_id = mp.id WHERE mhv.visit_date >= (strftime('%s', 'now', '-7 days') * 1000000) AND ( lower(coalesce(mp.title, '')) LIKE '%keyword%' OR lower(mp.url) LIKE '%keyword%' OR lower(coalesce(mp.description, '')) LIKE '%keyword%' ) ORDER BY mhv.visit_date DESC LIMIT 50; ```
English
0
0
1
52
Marc Köhlbrugge
Marc Köhlbrugge@marckohlbrugge·
What’s the most reliable way to automate a browser with AI ? Paid API or open source
English
36
0
27
8.6K
Sam Finton retweetledi
Paul Klein IV
Paul Klein IV@pk_iv·
This launch just made every AI agent on Browserbase 99% faster. Stagehand Caching is our managed cache of every action AI can take on the internet. It's like a reverse CDN: we memorize the actions your agent does so you don't need to waste tokens and time repeating it.
Stagehand@Stagehanddev

Introducing the Stagehand Cache We make your agents and automations faster by caching repeated actions, so identical requests skip redundant LLM calls. Available for free for all Stagehand sessions run on Browserbase.

English
6
10
144
26.4K
Sam Finton
Sam Finton@monadoid·
@fashiongiik That wouldn't solve the problem i'm describing, although i'm clearly not describing it very well - it's that sometimes I want to write a TUI or something as part of my skill script, and I want to be able to interact with that directly (but have the LLM call it for me)
English
0
0
0
20
Hanh Nguyen
Hanh Nguyen@fashiongiik·
@monadoid Just make an mcp app (tool) that the AI uses after it runs a script. Tool input is the output of the script. Im not sure why it has to be a change to the skill standard.
English
1
0
0
28
Sam Finton
Sam Finton@monadoid·
We need "chatgpt apps" for skills - I want my LLM to be able to show me outputs from the scripts it runs *directly*, instead of always having to interpret the outputs and relaying them to me.
English
1
0
0
54
brandon
brandon@burcs·
onboarding was painful so i made a native mac app thanks to cloudflare it now: • automatically starts a local bridge on your mac • spins up a secure tunnel (no ports to open) • deploys an AI agent to a worker running locally • hands you a URL that works from anywhere
brandon tweet media
English
16
4
309
30.3K
Sam Finton
Sam Finton@monadoid·
Over christmas I started watching videos on X, and my timeline basically turned into tiktok. I wrote a little tampermonkey script to fix this - "Hide videos initially" Check it out here: greasyfork.org/en/scripts/561…
English
0
0
1
221
Sam Finton retweetledi
Don Keith
Don Keith@RealDonKeith·
COURAGE: This influencer with a stammer practices speaking to people in public to encourage others with the same affliction.
English
495
1.2K
14.2K
146K
Rhys
Rhys@RhysSullivan·
Very bullish on lint rules over the next few years Anything that can be represented as an agents rule should instead be a lint rule, you since you get: - Clear error messages to the model - Actual enforcement of rules - Save on tokens in context
English
37
8
376
46.1K
Sam Finton
Sam Finton@monadoid·
@RhysSullivan Strongly agree - rust slaps for this pattern as well. llm writes dylint rules on top of already strict clippy rules. There is a ton of room for improvement for deterministic lint "guardrails", and maybe even relying on llms for higher level "pattern guardrails"
English
0
0
2
622