| name | skill-slack-messaging-tool |
| description | A Python CLI tool |
When to use
- When you need to use slack-messaging-tool CLI tool
- When you need comprehensive guidance on CLI commands
- When you need examples and troubleshooting
slack-messaging-tool Skill
Purpose
This skill provides access to the slack-messaging-tool CLI tool. A Python CLI tool.
When to Use This Skill
Use this skill when:
- You need to understand how to use slack-messaging-tool
- You need comprehensive examples and patterns
- You need troubleshooting guidance
Do NOT use this skill for:
- Tasks unrelated to slack-messaging-tool
- Quick syntax lookups (use slash commands instead)
CLI Tool: slack-messaging-tool
The slack-messaging-tool is a command-line interface tool that A Python CLI tool.
Installation
git clone https://github.com/dnvriend/slack-messaging-tool.git
cd slack-messaging-tool
uv tool install .
Prerequisites
- Python 3.14+
- uv package manager
Quick Start
slack-messaging-tool --help
slack-messaging-tool --version
Progressive Disclosure
📖 Core Commands (Click to expand)
help - Show Help Information
Display help information for CLI commands.
Usage:
slack-messaging-tool --help
slack-messaging-tool COMMAND --help
Examples:
slack-messaging-tool --help
slack-messaging-tool command --help
slack-messaging-tool --version
⚙️ Advanced Features (Click to expand)
Multi-Level Verbosity Logging
Control logging detail with progressive verbosity levels. All logs output to stderr.
Logging Levels:
| Flag | Level | Output | Use Case |
|---|
| (none) | WARNING | Errors and warnings only | Production, quiet mode |
-v | INFO | + High-level operations | Normal debugging |
-vv | DEBUG | + Detailed info, full tracebacks | Development, troubleshooting |
-vvv | TRACE | + Library internals | Deep debugging |
Examples:
slack-messaging-tool command -v
slack-messaging-tool command -vv
slack-messaging-tool command -vvv
Shell Completion
Native shell completion for bash, zsh, and fish.
Installation:
eval "$(slack-messaging-tool completion bash)"
eval "$(slack-messaging-tool completion zsh)"
slack-messaging-tool completion fish > ~/.config/fish/completions/slack-messaging-tool.fish
Pipeline Composition
Compose commands with Unix pipes for powerful workflows.
Examples:
slack-messaging-tool command --json | jq '.'
🔧 Troubleshooting (Click to expand)
Common Issues
Issue: Command not found
slack-messaging-tool --version
cd slack-messaging-tool
uv tool install . --reinstall
Issue: General errors
- Try with verbose flag:
-vv to see detailed error information
- Check that all prerequisites are installed
- Ensure you're using Python 3.14+
Getting Help
slack-messaging-tool --help
slack-messaging-tool COMMAND --help
Exit Codes
0: Success
1: Client error (invalid arguments, validation failed)
2: Server error (API error, network issue)
3: Network error (connection failed, timeout)
Output Formats
Default Output:
- Human-readable formatted output
- Varies by command
JSON Output (--json flag):
- Machine-readable structured data
- Perfect for pipelines and processing
- Available on commands that support structured output
Best Practices
- Use verbosity progressively: Start with
-v, increase to -vv/-vvv only if needed
- Check help first: Use
--help to understand command options
- Leverage shell completion: Install completion for better CLI experience
Resources