Live data from Hacker News

Viewing profile — cosinusalpha

cosinusalpha

HN member
Joined
Tue, Jan 13, 2026, 8:15 PM UTC
HN karma
62
Public activity
11 items

About cosinusalpha

No profile information was provided.

Recent public activity

  1. comment
    Comment #46633026

    Do you experience any context pollution with that approach?

  2. comment
    Comment #46629796

    Yes, you can create isolated environments using the "--session NAME" flag. It isolates cookies and local storage for that specific run. Since it's a V1 release, there might be some…

  3. comment
    Comment #46629784

    Thanks! I actually tried a raw HTML when I was exploring solutions. It worked for "one-off" tasks, but I ran into major issues with replayability on modern SPAs. In React apps, the…

  4. comment
    Comment #46629658

    I actually think the CLI approach helps with those boundaries. Because webctl commands are discrete and pipeable (e.g. webctl snapshot | llm | webctl click), the "authority" is res…

  5. comment
    Comment #46629624

    Thanks! To clarify: webctl allows you to manually interact with the browser window at any time. It even returns "manual interaction" breakpoints to stdout if it detects an SSO/logi…

  6. comment
    Comment #46625705

    I am also not sure if MCP will eventually be fixed to allow more control over context, or if the CLI approach really is the future for Agentic AI. Nevertheless, I prefer the CLI fo…

  7. comment
    Comment #46625628

    A background daemon holds the session state between different CLI calls. This daemon is started automatically on the first webctl call and auto-closes after a timeout period of ina…

  8. comment
    Comment #46625562

    I don't have an objective benchmark yet. I tried several existing solutions, especially the MCP servers for browser automation, and none of them were able to reproducibly solve my …

  9. comment
    Comment #46625475

    To be honest, I hadn't seen that one yet! The main difference is likely the targeting philosophy. webctl relies heavily on ARIA roles/semantics (e.g. role=button name="Save") rathe…

  10. comment
  11. story
    Show HN: Webctl – Browser automation for agents based on CLI instead of MCP

    Hi HN, I built webctl because I was frustrated by the gap between curl and full browser automation frameworks like Playwright. I initially built this to solve a personal headache: …