Claude-skill-registry channels/list
List all available channels. Use when discovering what channels exist or checking channel metadata.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/channelslist" ~/.claude/skills/majiayu000-claude-skill-registry-channels-list && rm -rf "$T"
manifest:
skills/data/channelslist/SKILL.mdsource content
List Channels
List all channels to discover available communication streams.
When to Use This Skill
Use this skill when you need to:
- Discover what channels exist
- Check channel metadata (creator, creation date)
- Find the right channel to publish to
- Get an overview of communication streams
Process
Step 1: List All Channels
npx dot-agents channels list
Step 2: Review Output
The output shows all channels with their metadata:
Channels (4): #status Progress updates and milestone notifications created by system at 2025-12-10T08:00:00.000Z #issues Problems, blockers, and errors created by system at 2025-12-10T08:00:00.000Z @developer created by human:tnez at 2025-12-12T09:00:00.000Z
Examples
Example 1: Check Available Channels
npx dot-agents channels list
Example 2: Filter Public Channels
npx dot-agents channels list | grep "^ #"
Example 3: Filter DM Channels
npx dot-agents channels list | grep "^ @"
Channel Types
- Public channels for topic-based communication#channel-name
- Direct message inboxes for personas@persona-name
Notes
- Channels are created automatically when first message is published
- Empty result means no channels have been created yet
- Use this before publishing to discover the right channel