Welcome

Stream Agent Skills are a markdown skill pack that teaches AI coding agents how to build and work with Stream Chat, Video, Feeds and Moderation. They give an agent correct, up-to-date context the moment it starts writing Stream code.

The skills are markdown only, so nothing executes when you install them. You can view the source on our GitHub.

Agent Skills

The pack is a router plus a set of specialists. The /stream router reads each request, classifies it, and dispatches to the right specialist. It also has the getstream CLI built in, so querying and managing your live Stream data doesn't need a separate skill.

Installing the pack brings the router (with the CLI), the live-docs specialist, and the builder. The web React pack and the native platform packs (Swift, Android, React Native, Flutter) install on demand the first time a task needs them.

flowchart TD
    U["Your request"] --> R{{"/stream router + CLI"}}
    R -->|"build or add Stream on the web"| RE["/stream-react<br/>(installed on demand)"]
    R -->|"how do I…? API lookup"| D["/stream-docs"]
    R -->|"query or manage your data"| C["getstream CLI (built in)"]
    R -. "installed on demand" .-> P["Platform packs:<br/>stream-swift · stream-android<br/>stream-react-native · stream-flutter"]

    style R fill:#e1f3ff
    style RE fill:#fff3e1
    style D fill:#e1ffe4
    style C fill:#e1ffe4
    style P fill:#fff3e1
SkillPurpose
/streamRouter + CLI. Classifies intent, dispatches, and runs getstream commands
/stream-docsLive SDK documentation lookup with citations
/stream-reactDefault web pack. Build, enhance, audit, or migrate a React / Next.js app
/stream-builderThe framework-agnostic builder. Invoke by name; web defaults to /stream-react
/stream-swiftBuild or integrate Stream in Swift / SwiftUI / UIKit
/stream-androidBuild or integrate Stream in Android / Jetpack Compose
/stream-react-nativeBuild or integrate Stream in React Native CLI or Expo
/stream-flutterBuild or integrate Stream in Flutter

See the per-skill reference pages for what each skill does and when to invoke it directly.

Find your way around

These docs are split by what you're trying to do.

  • New here? The Quickstart installs the skills and runs your first invocation in five minutes.
  • Installing? The how-to guides walk you through it.
  • Want the trust model? The concept pages explain how skills work and why they're safe to install.
  • Looking something up? The reference pages document each skill in full, down to the prompts it understands.