v0.2.0¶
Release Date: 2026-03-30
Highlights¶
- w3pilot Migration - Browser automation migrated from vibium-go to w3pilot
Overview¶
This release migrates the underlying browser automation library from vibium-go to w3pilot. The w3pilot library is a renamed and enhanced version of vibium-go with significant improvements to browser control and stability.
What's Changed¶
Browser Automation¶
The browser automation layer has been updated to use w3pilot v0.8.0, which replaces vibium-go. This change:
- Improves browser control reliability
- Enhances page interaction stability
- Provides better error handling for browser operations
Internal Changes¶
- Internal type renamed from
VibetoPilotacross all modules - Updated import paths from
github.com/plexusone/vibium-gotogithub.com/plexusone/w3pilot
Upgrade Notes¶
This release is backwards compatible for users of the CLI, HTTP API, and Go library public APIs. No changes are required to upgrade from v0.1.x.
If you have custom code that directly imports and uses the internal browser types, you will need to update:
// Before
import vibium "github.com/plexusone/vibium-go"
var v *vibium.Vibe
// After
import vibium "github.com/plexusone/w3pilot"
var v *vibium.Pilot
Dependencies¶
| Dependency | Version | Change |
|---|---|---|
| w3pilot | v0.8.0 | New (replaces vibium-go) |
| omnillm | v0.14.0 | Updated from v0.13.0 |
| multi-agent-spec | v0.8.0 | Unchanged |
| MCP SDK | v1.4.1 | Unchanged |