Help us improve
Share bugs, ideas, or general feedback.
From time
Reads Time (Mattermost) posts, threads, and DMs by permalink or @handle. Summarizes conversations for quick context.
npx claudepluginhub sagos95/ai-hub --plugin timeHow this skill is triggered — by the user, by Claude, or both
Slash command
/time:time-chatThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
When a Time permalink or a "read DMs with @user" request appears, fetch the
Handles Slack channel and thread messaging with context-aware session management. Reads messages, sends replies, searches channels/users, drafts, and schedules via Slack MCP tools.
Formats web search results as polished Slack messages, digests, or thread summaries ready for channel posts.
Interact with Slack workspaces via CLI: send/read messages, list/manage channels/users/workspaces, add reactions, auto-auth from desktop app, persist memory for AI agents.
Share bugs, ideas, or general feedback.
When a Time permalink or a "read DMs with @user" request appears, fetch the content via the plugin's bash wrappers and summarise it for the user.
Activate on any of:
https://<host>/<team>/pl/<post_id> (query/fragment ok)@userThe scripts accept permalinks directly — no manual id extraction.
# Single post by permalink or raw id
integrations/time/scripts/time-messages.sh get "<permalink_or_post_id>"
# Full thread (preferred — gives complete context)
integrations/time/scripts/time-messages.sh thread "<permalink_or_post_id>" --resolve-users
# DMs with a user (auto-enriched)
integrations/time/scripts/time-messages.sh dm @<username> [limit]
# Search in a team
integrations/time/scripts/time-messages.sh search <team_id> "<query>" --resolve-users
--resolve-users inlines {username, nickname, first_name, last_name} next
to every user_id so authors are human-readable. Cached at
integrations/time/.cache/users.json (7-day TTL).
After fetching, give the user a concise wrap-up: who participated, key decisions, action items, anything relevant to the current task. For long threads (50+ messages) summarise rather than repeat verbatim.
commands/time-chat.md — full interactive workflow, including postingREADME.md — auth setup, all actions, troubleshooting