Scrollsequence
🎉Introducing Scrollsequence v2 Beta

Cinematic Video Scroll Animations

Ultra-performant, hardware-accelerated 60 FPS canvas scrubbing and 3D WebGL depth displacement. Built for React, TypeScript, WordPress, and Motion.
Turn any video into silky, scroll-driven interactive web experiences.

Showcase

Quarkbaby
Wildvikings
Dji
Rox analytics
Framed
Google
Microsoft
Amazon
Netflix
YouTube
Instagram
import { Swarm, Agent } from 'ai-agent-sdk';

const client = new Swarm();

const transferToAgentB = (): Agent => {
    return agentB;
};

const agentA = new Agent({
    name: "Agent A",
    instructions: "You are a helpful agent.",
    functions: [transferToAgentB],
});

const agentB = new Agent({
    name: "Agent B", 
    instructions: "Only speak in Haikus.",
});

const run = async () => {
    const response = await client.run({
        agent: agentA,
        messages: [{ role: "user", content: "I want to talk to agent B." }],
    });
    console.log('Response:', response);
};

run();