Troubleshooting¶
Common issues and solutions.
Command Not Found¶
Issue: taskguard: command not found
Solution:
# Check PATH
echo $PATH | grep -q ".cargo/bin" && echo "✅" || echo "❌"
# Add to PATH
echo 'export PATH="$HOME/.cargo/bin:$PATH"' >> ~/.bashrc
source ~/.bashrc
Parse Errors¶
Issue: Failed to parse YAML front-matter
Solution:
- Check --- delimiters
- Validate YAML syntax
- Ensure required fields present
Circular Dependencies¶
Issue: Circular dependency detected
Solution:
Next Steps¶
See Installation for setup issues.