一键导入
slack
Post a question to Slack and wait for a reply, or post a reply into a thread using scripts/slack.py.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Post a question to Slack and wait for a reply, or post a reply into a thread using scripts/slack.py.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Read target remind schedules and recent action_logs (last 3 days) as JSON for agent comment generation.
Update schedule comment fields (comment/yes_comment/no_comment) in bulk from JSON input.
Insert schedule rows into the local database (schedules) from a JSON array. Use when bulk-loading schedule entries with prompt_name, input_value, and scheduled_date via scripts/add_schedules.py.
Insert or read behavior log rows in the local database (behavior_logs). Use when recording a good/bad behavior entry, attaching a Pavlok API response JSON, adding a coach comment, or fetching recent logs via scripts/behavior_log.py.
Send a Pavlok stimulus via the Pavlok API using scripts/pavlok.py. Use when you need to trigger vibe/beep/zap with a numeric value in this repo and print the API response.
Insert a Slack ignore event and update daily punishments using scripts/add_slack_ignore_events.py. Use when a Slack message was ignored and you need to record it.
| name | slack |
| description | Post a question to Slack and wait for a reply, or post a reply into a thread using scripts/slack.py. |
Use scripts/slack.py to post a question and wait for the first reply, or to post a reply into an existing thread.
uv run scripts/slack.py "Did you finish the task?" --interval 2 --follow-up-message "This counts as another ignore. Please reply in the thread."
uv run scripts/slack.py --mode reply --thread-ts 1700000000.000000 "Reply text"
question is the message text (question in ask mode, reply in reply mode).--mode chooses behavior (ask default, reply posts into a thread).--no-reply-hint skips appending "Reply in thread."--follow-up-message sets the message to post when a reply is not received within the ignore window.
ask mode.ask mode:
--interval sets polling interval in seconds (default: 2).--thread-ts and --channel are not required.reply mode:
--thread-ts is required.--channel overrides SLACK_CHANNEL (accepts name or ID).--interval is not used.Ask mode prints a single line:
{assistant_question: ..., user_answer: ..., is_answer: true|false, thread_ts: ..., message_ts: ...}
If no reply arrives before timeout, user_answer is null and is_answer is false.
Reply mode prints a single line:
{assistant_question: ..., user_answer: null, is_answer: false, thread_ts: ..., message_ts: ...}
SLACK_BOT_USER_OAUTH_TOKEN.SLACK_USER_OAUTH_TOKEN is used for reading replies; if unset, the bot token is reused.missing_scope errors; add channels:history, groups:history, im:history, and mpim:history as needed.\n, \r, and \t sequences in question before sending.IGNORE_SPAN * REPLY_COUNT_LIMIT.ask mode requires --follow-up-message.