用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/vamseeachanta/workspace-hub --skill communication-slack-message-posting命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Write outbound email and external messages in Vamsee Achanta's voice — a subtle offer to help, never bold or rash claims. Load before drafting ANY email, LinkedIn/Collide reply, proposal note, or outreach sent under his name.
Save/publish analysis or computation results from ANY ecosystem repo to Hugging Face as a queryable, viewer-renderable dataset. Use when the user wants to "save results to hugging face", "publish dataset to HF", "hugging face data saving", "save analysis results", "hf dataset", "make results queryable", or "render via datasets-server API". Reshapes nested results into flat parquet tables, writes a dataset card with a viewer `configs:` block and provenance, applies license/public-vs-private routing, enforces a domain data-quality gate (faithful-to-source != correct), publishes to `aceengineer/<repo>-<projection>`, and verifies via the datasets-server API.
Clone, create, fork, configure, and manage GitHub repositories. Manage remotes, secrets, releases, and workflows. Works with gh CLI or falls back to git + GitHub REST API via curl.
正在显示 SKILL.md
基于 SOC 职业分类
| name | communication-slack-message-posting |
| description | Sub-skill of communication: Slack Message Posting (+3). |
| version | 1.0.0 |
| category | business |
| type | reference |
| scripts_exempt | true |
# See slack-api for complete patterns
# Simple webhook message
send_slack_webhook() {
local webhook_url="$SLACK_WEBHOOK_URL"
local message="$1"
curl -s -X POST "$webhook_url" \
-H "Content-Type: application/json" \
-d "{\"text\": \"$message\"}"
}
# Rich Block Kit message
send_slack_blocks() {
local channel="$1"
local blocks="$2"
curl -s -X POST "https://slack.com/api/chat.postMessage" \
-H "Authorization: Bearer $SLACK_BOT_TOKEN" \
-H "Content-Type: application/json" \
-d "{
\"channel\": \"$channel\",
\"blocks\": $blocks
}"
}
# Example Block Kit payload
blocks='[
{
"type": "header",
"text": {"type": "plain_text", "text": "Deployment Complete"}
},
{
"type": "section",
"fields": [
{"type": "mrkdwn", "text": "*Environment:*\nProduction"},
{"type": "mrkdwn", "text": "*Version:*\nv2.1.0"}
]
},
{
"type": "actions",
"elements": [
{"type": "button", "text": {"type": "plain_text", "text": "View Logs"}, "url": "https://logs.example.com"}
]
}
]'
send_slack_blocks "#deployments" "$blocks"
# See teams-api for complete patterns
# Send channel message
send_teams_message() {
local team_id="$1"
local channel_id="$2"
local message="$3"
curl -s -X POST "https://graph.microsoft.com/v1.0/teams/$team_id/channels/$channel_id/messages" \
-H "Authorization: Bearer $TEAMS_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d "{
\"body\": {
\"contentType\": \"html\",
\"content\": \"$message\"
}
}"
}
# Send adaptive card
send_teams_card() {
local webhook_url="$1"
local card="$2"
curl -s -X POST "$webhook_url" \
-H "Content-Type: application/json" \
-d "{
\"type\": \"message\",
\"attachments\": [{
\"contentType\": \"application/vnd.microsoft.card.adaptive\",
\"content\": $card
}]
}"
}
# See miro-api for complete patterns
# Create sticky note
create_sticky() {
local board_id="$1"
local content="$2"
local x="${3:-0}"
local y="${4:-0}"
curl -s -X POST "https://api.miro.com/v2/boards/$board_id/sticky_notes" \
-H "Authorization: Bearer $MIRO_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d "{
\"data\": {\"content\": \"$content\"},
\"position\": {\"x\": $x, \"y\": $y}
}"
}
# Create frame
create_frame() {
local board_id="$1"
local title="$2"
curl -s -X POST "https://api.miro.com/v2/boards/$board_id/frames" \
-H "Authorization: Bearer $MIRO_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d "{
\"data\": {\"title\": \"$title\"},
\"geometry\": {\"width\": 800, \"height\": 600}
}"
}
# See calendly-api for complete patterns
# List scheduled events
list_events() {
local user_uri="$1"
local min_time=$(date -u +%Y-%m-%dT%H:%M:%SZ)
curl -s "https://api.calendly.com/scheduled_events?user=$user_uri&min_start_time=$min_time" \
-H "Authorization: Bearer $CALENDLY_API_KEY"
}
# Get event details
get_event() {
local event_uuid="$1"
curl -s "https://api.calendly.com/scheduled_events/$event_uuid" \
-H "Authorization: Bearer $CALENDLY_API_KEY"
}
# Create webhook subscription
create_webhook() {
local organization="$1"
local callback_url="$2"
curl -s -X POST "https://api.calendly.com/webhook_subscriptions" \
-H "Authorization: Bearer $CALENDLY_API_KEY" \
-H "Content-Type: application/json" \
-d "{
\"url\": \"$callback_url\",
\"events\": [\"invitee.created\", \"invitee.canceled\"],
\"organization\": \"$organization\",
\"scope\": \"organization\"
}"
}