slack-client-fundamentals

Installation
SKILL.md

Slack Go SDK Client Fundamentals

Client Initialization

Initialize the Slack API client with your bot token:

import "github.com/slack-go/slack"

api := slack.New("xoxb-your-bot-token")

Enable debug mode for development:

api := slack.New(
    "xoxb-your-bot-token",
    slack.OptionDebug(true),
)
Related skills

More from linehaul-ai/linehaulai-claude-marketplace

Installs
20
GitHub Stars
4
First Seen
Jan 24, 2026