Audit Slack channel threads for untracked work items — checks each thread against GH issues/PRs, reports gaps, and optionally redrives dropped threads by posting a status reply to the channel. Slash command: /slack-audit.
Standardmäßig ist der Prompt ausgewählt, der zuerst die Quelle prüft. Sie können zu einem direkten Befehl wechseln oder eine lokale Kopie herunterladen.
Quelldateien prüfen
Lesen Sie SKILL.md und alle von SkillsMP angezeigten Begleitdateien, bevor Sie sich für eine Installation entscheiden.
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Ein direkter Befehl überspringt den Prüf-Prompt. Prüfen Sie die Quelle, bevor Sie ihn ausführen.
Audit Slack channel threads for untracked work items — checks each thread against GH issues/PRs, reports gaps, and optionally redrives dropped threads by posting a status reply to the channel. Slash command: /slack-audit.
metadata
{"type":"skill"}
/slack-audit
Scan one or more Slack channels for the last N hours, identify threads that contain actionable work items with no corresponding GH issue or PR, and report or redrive them.
"AO worker", "dispatch", "bring to green", "/babysit"
Skip threads that are purely status reports from bots (hermes, coderabbit, etc.) with no human reply.
3. Check GH tracking for each work item
For each extracted work item:
Search gh issue list --repo $GITHUB_REPOSITORY --search "<keywords>" (or agent-orchestrator if relevant)
Search gh pr list --repo $GITHUB_REPOSITORY --search "<keywords>"
Check if the thread itself references a PR/issue number that is still open
Classify each thread:
Status
Meaning
TRACKED
Has open or recently merged GH issue/PR
COMPLETED
Referenced PR/issue is merged/closed
UNTRACKED
No GH issue or PR found
NEEDS_REDRIVE
Has issue/PR but no recent activity (>48h stale)
4. Dry-run report (default)
Print a table:
THREAD | STATUS | GH | LAST ACTIVITY
--------------------------------|-------------|-------------|---------------
keep-logging-in (Jun 14 00:06) | TRACKED | #7576 OPEN | just filed
collapsible filter (Jun 14 19:29)| TRACKED | #7203 OPEN | no PR yet
#684 send_message mis-route | NEEDS_REDRIVE| #684 OPEN | 20h stale
wiki-ingest campaign skill | UNTRACKED | none | -
RAG optimize-anything | UNTRACKED | none | -
5. --fix mode: redrive dropped threads
For each UNTRACKED or NEEDS_REDRIVE thread:
Post a reply in the thread summarizing what was found (or not found) and what the next step is.
Post a reply-to-channel so the thread surfaces at the top of #worldai.
Template for untracked item:
Following up: this thread has no GH issue or PR yet.
[Summary of what was asked]
Next: [proposed action — file issue / spawn worker / close as resolved]
Template for needs-redrive:
Re-driving: issue #N / PR #N has had no activity for >48h.
Current state: [open/CI-red/CR-changes-requested]
Next: [specific action]
Always use the user's identity ($USER via mcp__slack__conversations_add_message).
Never use bot tokens for these posts.
~/.hermes/src/orchestration/slack_catchup.py — channel history + per-channel cursor state
~/.hermes/scripts/slack_history_to_memory.py — sync Slack history to memory markdown
Use the MCP Slack tool (mcp__slack__conversations_history, mcp__slack__conversations_add_message) for in-session posting. Use slack_thread_lib.sh for cron/automation posting.
Integration with /learn
After any --fix run, call /learn to capture:
Which threads were redriven
Which were untracked → now have issues filed
Pattern of what kinds of work commonly fall through
Notes
A thread counts as "redriven" only if a reply is actually posted AND the channel root message is bumped (reply-to-channel).
The dry-run report is the default so you can review before posting.
Skip threads where the root message is from a cron bot and there are no human replies.
Skip threads where the only message is a /repro or /green command that completed (has a bot success reply with a checkmark).