
Security News
Rust RFC Proposes a Security Tab on crates.io for RustSec Advisories
Rust’s crates.io team is advancing an RFC to add a Security tab that surfaces RustSec vulnerability and unsoundness advisories directly on crate pages.
@agent-infra/browser
Advanced tools
@agent-infra/browser is an SDK based on puppeteer specifically designed to provide foundational functionality for browser agents. It provides high-level abstractions for tab management, dialog handling, hotkey support, and more while maintaining simple and intuitive APIs.
npm install @agent-infra/browser
Here is a simple usage demo. Browser will find the Chrome or Edge browser installed on your computer, launch a controlled browser instance, and then execute some operations through CDP control.
import { Browser } from '@agent-infra/browser';
// Create browser instance
const browser = await Browser.create();
// Set User-Agent (optional)
browser.setUserAgent({
userAgent:
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',
});
// Get current active tab
const activeTab = browser.getActiveTab();
// Navigate to specified webpage
await activeTab.goto('https://example.com');
// Take screenshot
const screenshot = await activeTab.screenshot();
// Close browser
await browser.close();
For detailed API documentation and advanced usage examples, please refer to our complete documentation.
Apache License 2.0.
Special thanks to the open source projects that inspired this toolkit:
FAQs
agent-infra browser
The npm package @agent-infra/browser receives a total of 4,126 weekly downloads. As such, @agent-infra/browser popularity was classified as popular.
We found that @agent-infra/browser demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Rust’s crates.io team is advancing an RFC to add a Security tab that surfaces RustSec vulnerability and unsoundness advisories directly on crate pages.

Security News
/Research
Socket found a Rust typosquat (finch-rust) that loads sha-rust to steal credentials, using impersonation and an unpinned dependency to auto-deliver updates.

Research
/Security Fundamentals
A pair of typosquatted Go packages posing as Google’s UUID library quietly turn helper functions into encrypted exfiltration channels to a paste site, putting developer and CI data at risk.