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. The skills give an agent authoritative, version-current context the moment it needs it.

A chat app built end-to-end with Stream Agent Skills

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

Agent Skills

One command installs the core skills, the router plus three always-useful specialists for the CLI, live docs and app scaffolding. The router reads each request and dispatches to the right specialist, and pulls in a platform pack for Swift, Android or React Native on demand the first time your project needs one.

flowchart TD
    U["Your request"] --> R{{"/stream router"}}
    R -->|"scaffold or add Stream"| B["/stream-builder"]
    R -->|"how do I…? API lookup"| D["/stream-docs"]
    R -->|"query or manage your data"| C["/stream-cli"]
    B -. "installed on demand" .-> P["Platform packs:<br/>stream-swift · stream-android · stream-react-native"]

    style R fill:#e1f3ff
    style B fill:#e1ffe4
    style D fill:#e1ffe4
    style C fill:#e1ffe4
    style P fill:#fff3e1
SkillPurpose
/streamRouter. Classifies intent and dispatches to a sub-skill
/stream-builderScaffold a new Stream app, or add a Stream product to an existing one
/stream-cliQuery and manage your Stream data by asking the agent in natural language
/stream-docsLive SDK documentation lookup with citations
/stream-swiftBuild or integrate Stream in Swift / SwiftUI / UIKit
/stream-androidBuild or integrate Stream in Android / Jetpack Compose
/stream-react-nativeBuild or integrate Stream Chat in React Native CLI or Expo

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 right now.

  • New here? Start with the Quickstart. It installs the skills and runs your first invocation in five minutes.
  • Need to get something done? The how-to guides cover installing the skills.
  • Want to understand 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.