ソース情報
- リポジトリ
- 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コマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Manage and list agent skills, prompts, and extensions - globally (~/.pi/agent/*) or per-project (.pi/*). List, install, link/unlink, and bootstrap setup. Do NOT automatically symlink or activate anything - always let the user decide.
Use when the user asks to document or update personal notes in their Obsidian Thok vault, especially contact lenses, bikes/Orbea Rise, home notes, or when they mention Obsidian. Provides the vault path and direct Markdown workflow.
Manage persistent macOS software installations with Homebrew Bundle, mise, Mac App Store, and fnox. Use whenever installing, removing, or provisioning a Mac app, CLI, runtime, developer tool, or secret-backed tool.
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.