Install
openclaw skills install edithai-clawhub-skillIntelligent log analysis CLI tool powered by DeepSeek API with 30+ built-in tools for file operations, system diagnostics, and log pattern recognition.
openclaw skills install edithai-clawhub-skillEdithAI is a Go-based CLI tool that combines natural language processing with powerful built-in tools for comprehensive log analysis. It leverages the DeepSeek API to provide intelligent insights into log data, making complex log analysis accessible through simple commands.
# Analyze error logs in current directory
edithai -query "analyze error logs in current directory"
# Search for specific patterns
edithai -query "find all database connection errors"
# Generate performance report
edithai -query "create performance summary from application logs"
# Start interactive session
edithai -i
# Multi-turn conversation about logs
> show me memory usage trends
> find memory leaks in the last 24 hours
> export analysis to report.html
First, install the EdithAI CLI tool:
npm install -g @xin9min9/edithai-cli
DEEPSEEK_API_KEY: Your DeepSeek API key for AI-powered analysis~/.edithai/history.jsonCreate a configuration file at ~/.edithai/config.json:
{
"api": {
"timeout": 30,
"max_tokens": 4000
},
"security": {
"whitelist_commands": ["ls", "cat", "grep"],
"blacklist_commands": ["rm", "dd", "mkfs"],
"tool_payload_max_chars": 2000
}
}
~/.edithai/
├── config.json # User configuration
└── history.json # Conversation history
MIT-0 License - See LICENSE file for details.
For issues and feature requests, visit the EdithAI GitHub Repository.