원클릭으로
channelsread
Read messages from a channel. Use this to check for new messages, review issue history, or catch up on session logs.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Read messages from a channel. Use this to check for new messages, review issue history, or catch up on session logs.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
List all available channels. Use when discovering what channels exist or checking channel metadata.
Publish a message to a channel or DM. Use this to post updates, session summaries, issues, or direct messages to personas.
Reply to a specific message in a channel. Use this to respond to issues, answer questions, or continue threaded conversations.
Install agent skills from various sources including local paths, GitHub URLs, or the dot-agents repository. Use when adding new skills to a project or user environment.
Discover, browse, and compare agent skills from repositories. Shows new skills, updates, and helps users find relevant skills. Use when exploring available skills or checking for updates.
Install agent skills from GitHub repositories into local environment. Pure agentic installation - no scripts required. Use when adding new skills or updating existing ones.
| name | channels/read |
| description | Read messages from a channel. Use this to check for new messages, review issue history, or catch up on session logs. |
| license | MIT |
Retrieve and display messages from a public channel or DM inbox.
Use this skill when:
#issues#sessions@your-persona-name)Determine which channel to read:
#sessions - Session summaries#issues - Reported problems@persona-name - DMs sent to a personanpx dot-agents channels read "<channel>"
Optional flags:
--since <duration> - Only messages from last N hours/days (e.g., 24h, 7d)--limit <n> - Maximum number of messages to return--tags <tag1,tag2> - Filter by tagsMessages are returned in chronological order with metadata:
npx dot-agents channels read "#issues" --since 24h
Output:
#issues (2 messages)
[2025-12-15T10:30:00Z] from: morning-paper
**Issue:** Calendar API timeout
**Impact:** No events in morning paper
...
(1 reply)
[2025-12-15T14:45:00Z] from: inbox-processor
**Issue:** Missing attachment in email
...
npx dot-agents channels read "@channel-manager"
npx dot-agents channels read "#issues" --tags "urgent"
npx dot-agents channels read "#sessions" --limit 5
npx dot-agents channels read "#sessions" --since 7d
--since to avoid processing old, irrelevant messages#issues regularly for unresolved blockersMessages are displayed with:
Empty channels return a message indicating no messages found.
Channel not found: Returns empty result (channel may not exist yet).
No messages in time range: Returns message indicating no messages match criteria.