Releases: reasonkit/reasonkit-web
Releases · reasonkit/reasonkit-web
v0.1.3 - Initial Public Release
ReasonKit Web v0.1.3 - Initial Public Release
High-Performance Web Sensing & Browser Automation Layer
Features
- CDP Integration: Chrome DevTools Protocol client for browser automation
- MCP Server: Model Context Protocol server for AI agent integration
- Content Extraction: HTML parsing and structured data extraction
- WASM Support: Browser-native execution via WebAssembly
- Security: GDPR by Default with PII redaction and headless isolation
Installation
[dependencies]
reasonkit-web = "0.1"
tokio = { version = "1", features = ["full"] }Quick Start
use reasonkit_web::BrowserController;
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let controller = BrowserController::new().await?;
let page = controller.navigate("https://example.com").await?;
let content = page.content().await?;
Ok(())
}What's New in 0.1.3
- Added code examples to README
- Optimized package size for crates.io
- All 341 tests passing
Links
Part of the ReasonKit Ecosystem - "The Eyes and Ears of AI Reasoning"