소스 정보
- 저장소
- tkoenig/agent-skills
- 최근 소스 활동
- 2026년 2월 13일 14:49
- 감지된 SKILL.md 언어
- 영어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tkoenig/agent-skills --skill slack-assistant명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | slack-assistant |
| description | Send Slack messages as the authenticated user via CLI and SLACK_USER_TOKEN. |
Use when you want to send Slack messages as the user who authorized the app.
CLI commands are relative to this skill directory (use {baseDir}).
Always ask for confirmation before sending a message.
SLACK_USER_TOKEN is set (xoxp-...).SLACK_USER_NAME is the username of the authenticated user (e.g., tomk).chat:write scope (and channels:read/groups:read/users:read / im:historyif needed).You are sending messages as $SLACK_USER_NAME.
bash {baseDir}/scripts/slack-assistant list-users
bash {baseDir}/scripts/slack-assistant presence --user U12345678
bash {baseDir}/scripts/slack-assistant send-channel --channel C12345678 --text "Hello"
If the recipient is unclear, list users to identify the correct user ID before sending (no confirmation needed for listing users).
Before asking for confirmation to send the DM, check and report the recipient's presence status.
bash {baseDir}/scripts/slack-assistant dm --user U12345678 --text "Hello"
Slack uses "mrkdwn" format, NOT Markdown. Key differences:
| Format | Slack mrkdwn | NOT Markdown |
|---|---|---|
| Bold | *bold* | **bold** |
| Italic | _italic_ | *italic* |
| Strike | ~strike~ | ~~strike~~ |
| Code | `code` | (same) |
| Code block | ```code``` | (same) |
| Link | <url|text> | [text](url) |
| Bullet | • item or - item | (same) |
Example:
*PR Review: v2/legacy cleanup (#499)*
• Removes unused helpers - _nice cleanup_
• See <https://github.com/org/repo/pull/499|PR #499>
When passing --text in a shell command, wrap the message in single quotes or $'...' so backticks and $ aren’t executed by the shell. Backticks inside double quotes will trigger command substitution and strip text.
Example:
bash {baseDir}/scripts/slack-assistant dm --user U12345678 --text $'Use `code` and $vars safely.'
If the message contains single quotes, escape them or use a different quoting strategy.