Give your AI coding agent the ability to build, query, and manage Stream - Chat, Video, Feeds, and Moderation.
npx skills add GetStream/agent-skillsA single skill — /stream — covers scaffolding, CLI queries, integration, and live docs search.
- Scaffold a full app - Next.js + Tailwind + Stream SDKs, wired end-to-end in one shot
- Add products to existing apps - drop Chat, Video, or Feeds into a project that's already running
- Query live data - "any active calls?", "show flagged messages", "list my channels" - natural language to CLI
- Set up moderation - blocklists, automod config, and content policies via the Stream CLI
- Answer SDK questions - token patterns, strict mode, client/server instantiation, theme wiring
- Search live SDK docs - ask questions about any Stream SDK, framework, or version; answers come verbatim from getstream.io with citations
The skill pack is markdown only - no code, no build step. Your agent reads SKILL.md, classifies intent, then either skips straight to docs (Track D — no CLI required) or runs the CLI gate and context probe before routing to the right module:
| Intent | Module |
|---|---|
| Build a new app | builder.md + builder-ui.md |
| Add a product to an existing app | builder.md + references/*.md |
| Data queries and CLI operations | cli.md + cli-cookbook.md |
| SDK wiring during builder/enhance | sdk.md + references/*.md |
| Install the Stream CLI | bootstrap.md |
| Search the official SDK documentation (no CLI needed) | docs-search.md |
skills/stream/SKILL.md- entrypoint: intent classifier, conditional context detection, phase tablesskills/stream/RULES.md- non-negotiable rules, stated onceskills/stream/builder.md- scaffold execution (Steps 0-7);builder-ui.md- UI shell and themeskills/stream/cli.md+cli-cookbook.md- CLI workflow and query examplesskills/stream/sdk.md- cross-cutting SDK patternsskills/stream/docs-search.md- live documentation lookup: resolves your SDK from project context or explicit input, then answers from getstream.io with cited sourcesskills/stream/references/*.md- per-product setup, gotchas, and component blueprints