用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/JacobHsu/chart-img --skill crypto-technical-analysis命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | Crypto Technical Analysis |
| description | Analyze cryptocurrency trends using technical charts and AI (Grok-2/OpenAI). |
This skill allows you to perform technical analysis on cryptocurrency pairs (e.g., ETHUSDT) by generating a chart with indicators (EMA, MACD) and using AI to interpret the trend.
chart-img.com with pre-configured indicators (Volume, EMA Ribbon, MACD).To run the analysis directly from the terminal (requires Python environment setup):
# Ensure dependencies are installed
pip install -r requirements.txt
# Run the analysis (Uses .env configuration)
# Default: ETHUSDT, 1h interval
python analyze_chart.py
To specify a different symbol or interval, set the environment variables:
$env:SYMBOL="BTCUSDT"; $env:INTERVAL="4h"; python analyze_chart.py
To trigger the analysis remotely via GitHub Actions:
gh workflow run "Crypto Analysis Bot"
Ensure the following environment variables are set in .env (local) or GitHub Secrets (remote):
CHART_IMG_API_KEY: API key for chart generation.TELEGRAM_BOT_TOKEN: Telegram Bot Token.TELEGRAM_CHAT_ID: Target Chat ID.GH_TOKEN: GitHub Token for AI Model access.