Hello World: Introducing the Flowser Blog
Welcome to the Flowser blog. This is where the team shares insights on AI agent automation, browser orchestration, and what we're building.
What is Flowser?
Flowser is an AI-powered platform for running autonomous agents in isolated browser environments. Each agent gets its own CloakBrowser session — a full anti-detect browser — so it can operate across web platforms without triggering bot detection.
Think of it as giving your AI agents a real desk to work at, with a real browser, real credentials, and real persistence.
What we'll be writing about
- Agent infrastructure: How we architect multi-agent systems at scale
- Browser automation: Deep dives into CloakBrowser, CDP, and anti-detect techniques
- Workflow design: Patterns for composing reliable, recoverable agent workflows
- Product updates: New features, integrations, and what's coming next
A quick code example
Here's how you might define a simple skill in Flowser:
// skills/my-skill/SKILL.md (YAML frontmatter)
// name: my-skill
// description: A simple example skill
export async function run(context: SkillContext) {
const { browser, db } = context;
// Navigate to a page
await browser.goto("https://example.com");
// Extract some data
const title = await browser.evaluate(() => document.title);
// Store the result
await db.insert({ url: "https://example.com", title });
return { ok: true, data: { title } };
}Get started
Head to flowser.ai to create an account and start building your first agent workflow.
We're excited to share more. Stay tuned.
— The Flowser Team