npx skills add majiayu000/claude-skill-registry --skill streaming --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# 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:
- Chat Commands
- View Settings
- Configure Streaming
- Typing Indicators
- Platform Settings
- TypeScript API Reference
- Create Streaming Config
- Enable/Disable
- Configure Chunks
- Platform Limits
- Best Practices
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.
