Skip to content

Releases: reasonkit/reasonkit-web

ReasonKit Web v0.1.6

18 Jan 15:36
Immutable release. Only release title and notes can be modified.
ff8bb25

Choose a tag to compare

What's Changed

Bug Fixes

  • fix(deps): update reqwest feature for v0.13 compatibility
  • fix(ci): improved CI stability

Improvements

  • Better cross-platform test support

Full Changelog: v0.1.5...v0.1.6

ReasonKit Web v0.1.5

10 Jan 23:00
Immutable release. Only release title and notes can be modified.
3ed6b8a

Choose a tag to compare

ReasonKit Web v0.1.5

High-Performance MCP Server for Browser Automation

Installation

cargo install reasonkit-web

What's New in v0.1.5

  • Updated dependencies
  • Fixed CI docs job to match docs.rs configuration
  • Improved badge standardization
  • All tests passing

Features

  • CDP Integration: Chrome DevTools Protocol client
  • MCP Server: Model Context Protocol for AI agents
  • Content Extraction: HTML parsing and structured data
  • WASM Support: Browser-native execution
  • Security: GDPR by Default with PII redaction

The Eyes and Ears of AI Reasoning | https://reasonkit.sh

v0.1.3 - Initial Public Release

01 Jan 20:26

Choose a tag to compare

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"