Agent skill

streaming

Response streaming configuration and real-time output

majiayu000534★ · 1 repos on radarProfile →
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill streaming --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 3 KB
Bundled scripts: none
Path: skills/ai-llm/streaming/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Streaming - Complete API Reference Configure response streaming, typing indicators, and real-time message delivery. --- ## Chat Commands ### View Settings ``` /streaming Show current settings /streaming status Streaming status ``` ### Configure Streaming ``` /streaming enable Enable streaming /streaming disable Disable streaming /streaming chunk-size 50 Set chunk size (chars) /streaming delay 100 Set delay between chunks (ms) ``` ### Typing Indicators ``` /streaming typing on Enable typing indicators /streaming typing off Disable typing indicators /streaming typing duration 3000 Typing duration (ms) ``` ### Platform Settings ``` /streaming platforms Show platform limits /streaming platform telegram chunk 100 Set per-platform ``` --- ## TypeScript API Reference ### Create Streaming Config ```typescript import { createStreamingConfig } from 'clodds/streaming'; const streaming = createStreamingConfig({ // Enable streaming enabled: true, // Chunk settings minChunkSize: 20, // Min chars per chunk maxChunkSize: 200, // Max chars per chunk chunkDelayMs: 50, // Delay between chunks // Typing indicators showTyping: true, typingDurationMs: 3000, // Platform-specific limits platformLimits:

What's inside
Steps it walks through
  1. Chat Commands
  2. View Settings
  3. Configure Streaming
  4. Typing Indicators
  5. Platform Settings
  6. TypeScript API Reference
  7. Create Streaming Config
  8. Enable/Disable
  9. Configure Chunks
  10. Platform Limits
  11. Best Practices
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the streaming skill do?

Response streaming configuration and real-time output

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill streaming --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going