소스 정보
- 저장소
- stevehuang0115/crewly
- 최근 소스 활동
- 2026년 3월 19일 05:21
- 감지된 SKILL.md 언어
- 영어
- 스타
- 84
- 포크
- 24
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/stevehuang0115/crewly --skill reply-slack명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | Reply Slack |
| description | Send a message to a Slack channel or thread via the backend API. |
| version | 1.0.0 |
| category | communication |
| skillType | claude-skill |
| assignableRoles | ["orchestrator"] |
| triggers | ["reply slack","send slack","slack message"] |
| tags | ["communication","slack","notification"] |
| execution | {"type":"script","script":{"file":"execute.sh","interpreter":"bash","timeoutMs":30000}} |
Send a message to a Slack channel or thread via the Crewly backend API. This bypasses terminal output parsing and delivers the message directly to Slack, avoiding PTY line-wrapping and ANSI artifacts.
# Legacy JSON argument (kept for backwards compatibility)
bash config/skills/orchestrator/reply-slack/execute.sh '{"channelId":"C0123","text":"Task completed successfully!"}'
# Recommended multi-line usage with stdin
cat <<'EOF' | bash config/skills/orchestrator/reply-slack/execute.sh --channel C0123 --conversation "$CHAT_CONVERSATION"
Deploy complete ✅
Tests are green and artifacts published.
EOF
With thread reply (any style):
bash config/skills/orchestrator/reply-slack/execute.sh '{"channelId":"C0123","text":"Update: tests passing","threadTs":"1707430000.001234"}'
| Parameter | Required | Description |
|---|---|---|
channelId / --channel | Yes | Slack channel ID to send the message to |
text / --text / stdin | Yes* | Message text (supports Slack Markdown). You can pipe multi-line text via stdin with --channel. *Optional when --image or --file is provided |
threadTs / --thread | Yes (default) | Thread timestamp for threaded replies. Required unless --allow-new-thread is set |
--image / -i | No | Path to an image file to upload to Slack. When provided, calls /api/slack/upload-image instead of /api/slack/send. The --text becomes an optional comment on the image |
--file / -f | No | Path to any file type (PDF/CSV/ZIP/etc.) to upload via /api/slack/upload-file. The becomes an optional comment |
--text--allow-new-thread | No | Explicitly allow posting without a thread (safety override) |
conversationId / --conversation | No | Conversation ID from the [CHAT:...] prefix so the queue can resolve instantly (falls back to the active conversation if omitted) |
To send an image to Slack:
bash config/skills/orchestrator/reply-slack/execute.sh \
--channel C0123 \
--image /path/to/screenshot.png \
--text "Here's the test result"
Supported image types: PNG, JPEG, GIF, WebP, SVG. Max file size: 20 MB.
To send any file type (for example PDF/CSV):
bash config/skills/orchestrator/reply-slack/execute.sh \
--channel C0123 \
--thread 1707430000.001234 \
--file /path/to/report.pdf \
--text "Daily report attached"
JSON confirmation with the Slack message timestamp (text) or file ID (image) on success.
Heads up: After a successful API call the script automatically emits a
[NOTIFY]block so the backend logs the reply and unblocks any pending Slack messages. If you pass--conversation, that ID is embedded in the header. Otherwise TerminalGateway will associate the notify block with the active conversation.
If your message contains special characters like parentheses (), single quotes ', backslashes \, or dollar signs $, use --text-file or stdin to avoid bash escaping issues:
# Write message to a temp file first
bash config/skills/orchestrator/reply-slack/execute.sh \
--channel C0123 \
--thread 1707430000.001234 \
--text-file /tmp/reply.txt
# Or pipe via stdin
echo "message with special chars (like these)" | bash config/skills/orchestrator/reply-slack/execute.sh \
--channel C0123 \
--thread 1707430000.001234
By default, this skill requires threadTs and will fail fast if it is missing.
This prevents accidental top-level posts when the intent is to reply in an existing thread.
If you intentionally want a new top-level message, pass:
bash config/skills/orchestrator/reply-slack/execute.sh \
--channel C0123 \
--allow-new-thread \
--text "Top-level announcement"