Skip to content

Latest commit

 

History

History
43 lines (32 loc) · 2.51 KB

File metadata and controls

43 lines (32 loc) · 2.51 KB

Stream Agent Skills

Give your AI coding agent the ability to build, query, and manage Stream - Chat, Video, Feeds, and Moderation.

Install

npx skills add GetStream/agent-skills

A single skill — /stream — covers scaffolding, CLI queries, integration, and live docs search.

What your agent can do

  • 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

How it works

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

Contents