How this command is triggered — by the user, by Claude, or both
Slash command
/thread-tracker:update-threadsThis command is limited to the following tools:
The summary Claude sees in its command listing — used to decide when to auto-load this command
Re-read all tracked threads whose `last_read_time` is older than 1 hour and update their files in-place. **Steps:** 1. **Read `Threads.txt`** — parse all entries. 2. **Identify stale entries** — collect every entry where `last_read_time` is more than 1 hour before the current time. 3. **Skip if none** — if no stale entries exist, report "All threads are up to date." and stop. 4. **Spawn parallel Explore agents** — launch one Explore agent per stale thread concurrently. Each agent must: a. Use the Slack MCP tool to re-fetch the full thread. b. Open the existing `threads/<filenam...
Re-read all tracked threads whose last_read_time is older than 1 hour and update their files in-place.
Steps:
Read Threads.txt — parse all entries.
Identify stale entries — collect every entry where last_read_time is more than 1 hour before the current time.
Skip if none — if no stale entries exist, report "All threads are up to date." and stop.
Spawn parallel Explore agents — launch one Explore agent per stale thread concurrently. Each agent must:
a. Use the Slack MCP tool to re-fetch the full thread.
b. Open the existing threads/<filename>.md.
c. Merge updates (do not duplicate existing content):
Last-read-time to now.last_read_time. Do not re-add existing points.d. Write the updated file back.
e. Return: { url, filename, new_last_read_time }.
Update Threads.txt — overwrite last_read_time for each refreshed entry.
Report to user — list the files updated and the count of new messages incorporated per thread.
npx claudepluginhub abhirup-dev/my-claude-marketplace --plugin thread-tracker/threadManages persistent context threads for cross-session work. Supports create, list, close, and resume subcommands with a thread store file.
/channel-digestSummarizes recent activity (up to 50 messages) across specified Slack channels into a formatted bullet-point digest highlighting key topics, decisions, questions, and notable items.
/browseBrowses recent messages and conversations using the messages CLI. Supports subcommands for contacts, conversations, messages from a person, and full threads.