v3/@claude-flow/browser/docs/ANNOUNCEMENT.md
@claude-flow/[email protected]TL;DR. RuFlo is no longer "a browser agent." With ADR-122 it becomes the substrate underneath Stagehand, Browser Use, Surfer-H, Playwright, Browserbase, and Operator: signed-replay trajectories, causal-graph self-healing, attested cookie vaults, federated MCTS, risk-class gating, and a workflow compiler that emits replayable YAML. 230 tests, 0 new CVEs, all under 100µs.
The public stack today:
agent → browser → action → observation → next action
RuFlo should be:
agent → governed Session Capsule → distributed MCTS search →
Browser Execution Adapter → replay verification → RuVector memory →
Workflow Compiler → reusable RuFlo primitive
Stagehand makes browser automation portable. Browserbase persists sessions. Browser Use exposes real session-reuse pain. Surfer-H+Holo1 improves visual navigation (92.2% WebVoyager). Reflective MCTS improves agent search. None of them ship cryptographic provenance, queryable causal recovery, attested cookie vaults, federated MCTS, or compiled workflows.
RuFlo combines the missing parts.
| Phase | Wedge | Beyond SOTA because… |
|---|---|---|
| 0 | agent-browser 0.27 + converge package & plugin | Closed a 21-minor drift on the upstream CLI |
| 1 | Signed trajectory containers (Ed25519 + RVF) | Cryptographic provenance for AI browsing — no other system has this |
| 2 | Causal-graph self-healing selectors | Surfer-H / Stagehand / Skyvern heal silently; ruflo records why |
| 3 | AIDefence-attested cookie vault | PII-gated, content-hash-verified, witness-signed handles |
| 4 | Federated MCTS branch exploration | Distributes MCTS across federation peers (no single-process limit) |
| 5 | Cost-aware routing + GOAP pre-planning | 3-tier classifier ($0 / $0.0002 / $0.005+) with GOAP dry-run |
| 6 | Session Capsule + Risk Classifier + Browser Execution Adapter | OWASP-aligned policy; substrate above the browser-tool wars |
| 7 | Workflow Compiler + production-aware UCT | Successful traces → deterministic YAML with selector fallbacks |
| Operation | µs/op | ops/sec |
|---|---|---|
| Phase 1 — sealTrajectory (Ed25519 sign) | 37.5 | 26,648 |
| Phase 1 — verifySealedTrajectory | 88.5 | 11,306 |
| Phase 2 — annotateSnapshot (3 refs) | 2.1 | 479,511 |
| Phase 3 — vault.verifyAttestation | 83.2 | 12,027 |
| Phase 5 — ActionRouter.classify | 0.16 | 6,169,640 |
| Phase 7 — productionUct score | 0.32 | 3,145,069 |
| Phase 7 — WorkflowCompiler.compile | 22.9 | 43,712 |
Sub-100µs across the substrate. All numbers from scripts/benchmark-substrate.mjs on M-series macOS.
allowedOrigins, allowedTaskClasses, maxReplays.score = Q + C·√(ln N / n) + λ_R·replayability − λ_risk·risk − μ_cost·cost − α_auth·auth_fragility. The penalties keep MCTS from chasing high-Q paths that are expensive, irreversible, or auth-fragile.import {
createBrowserService,
sealTrajectory,
verifySealedTrajectory,
SessionCapsuleService,
CookieVaultService,
WorkflowCompiler,
productionUct,
} from '@claude-flow/browser';
// Phase 1 — signed trajectories
const browser = createBrowserService({ signTrajectories: true });
browser.startTrajectory('Sign in');
await browser.open('https://example.com/login');
await browser.fill('@e1', '[email protected]');
await browser.click('@e3');
const result = await browser.endTrajectory(true, 'logged in');
// result.__sealed is a signed envelope — distribute, replay, verify
// Phase 3 — attested cookie vault
const vault = new CookieVaultService({ projectId: 'my-project' });
const sealed = await vault.store({
cookie: { name: 'sid', value: 'opaque-token', domain: 'example.com' },
});
// Refused if value contains PII; otherwise sealed + signed
// Phase 6 — Session Capsule with policy
const capsules = new SessionCapsuleService();
const capsule = await capsules.create({
tenantId: 't1',
ownerId: 'me',
origins: [{ origin: 'https://example.com', requireSecure: true, requireHttpOnly: false }],
consentStatement: 'I consent to reuse this session for authenticated reads',
reusePolicy: { maxReplays: 5, allowedTaskClasses: ['authenticated-read'] },
});
// Phase 7 — Workflow Compiler
const compiler = new WorkflowCompiler();
const workflow = compiler.compile({
id: 'my-login', goal: 'Sign in', trajectoryEnvelope: result.__sealed.envelope,
});
console.log(compiler.toYaml(workflow));
docker compose --profile e2e up browser-e2e).tsc --noEmit clean.docs/SECURITY_AUDIT.md.BrowserExecutionAdapter implementations.PeerAdapter becomes a real cross-installation channel.v3/docs/adr/ADR-122-browser-beyond-sota.mdfeat/adr-122-browser-beyond-sota