
skill-bibtex-tool
by dnvriend
bibtex-tool
SKILL.md
name: skill-bibtex-tool description: A Python CLI tool
When to use
- When you need to use bibtex-tool CLI tool
- When you need comprehensive guidance on CLI commands
- When you need examples and troubleshooting
bibtex-tool Skill
Purpose
This skill provides access to the bibtex-tool CLI tool. A Python CLI tool.
When to Use This Skill
Use this skill when:
- You need to understand how to use bibtex-tool
- You need comprehensive examples and patterns
- You need troubleshooting guidance
Do NOT use this skill for:
- Tasks unrelated to bibtex-tool
- Quick syntax lookups (use slash commands instead)
CLI Tool: bibtex-tool
The bibtex-tool is a command-line interface tool that A Python CLI tool.
Installation
# Clone and install
git clone https://github.com/dnvriend/bibtex-tool.git
cd bibtex-tool
uv tool install .
Prerequisites
- Python 3.14+
- uv package manager
Quick Start
# Example 1: Basic usage
bibtex-tool --help
# Example 2: Show version
bibtex-tool --version
Progressive Disclosure
help - Show Help Information
Display help information for CLI commands.
Usage:
bibtex-tool --help
bibtex-tool COMMAND --help
Examples:
# General help
bibtex-tool --help
# Command help
bibtex-tool command --help
# Version info
bibtex-tool --version
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:
# INFO level - see operations
bibtex-tool command -v
# DEBUG level - see detailed info
bibtex-tool command -vv
# TRACE level - see all internals
bibtex-tool command -vvv
Shell Completion
Native shell completion for bash, zsh, and fish.
Installation:
# Bash (add to ~/.bashrc)
eval "$(bibtex-tool completion bash)"
# Zsh (add to ~/.zshrc)
eval "$(bibtex-tool completion zsh)"
# Fish (save to completions)
bibtex-tool completion fish > ~/.config/fish/completions/bibtex-tool.fish
Pipeline Composition
Compose commands with Unix pipes for powerful workflows.
Examples:
# Example pipeline workflows will be added when CLI commands are implemented
bibtex-tool command --json | jq '.'
Common Issues
Issue: Command not found
# Verify installation
bibtex-tool --version
# Reinstall if needed
cd bibtex-tool
uv tool install . --reinstall
Issue: General errors
- Try with verbose flag:
-vvto see detailed error information - Check that all prerequisites are installed
- Ensure you're using Python 3.14+
Getting Help
# Show help
bibtex-tool --help
# Command-specific help
bibtex-tool COMMAND --help
Exit Codes
0: Success1: 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/-vvvonly if needed - Check help first: Use
--helpto understand command options - Leverage shell completion: Install completion for better CLI experience
Resources
- GitHub: https://github.com/dnvriend/bibtex-tool
- Python Package Index: https://pypi.org/project/bibtex-tool/
- Documentation:
Score
Total Score
Based on repository quality metrics
SKILL.mdファイルが含まれている
ライセンスが設定されている
100文字以上の説明がある
GitHub Stars 100以上
3ヶ月以内に更新がある
10回以上フォークされている
オープンIssueが50未満
プログラミング言語が設定されている
1つ以上のタグが設定されている
Reviews
Reviews coming soon