with one click
deepseek-daily-briefing
每日自动推送 DeepSeek API 余额和用量监控简报
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
每日自动推送 DeepSeek API 余额和用量监控简报
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Search Twitter/X, read tweet replies, look up users, monitor tweets, export followers, and gate X actions through Xquik.
Generate or edit images through Hermes Web UI using the selected/requested profile's fun-codex provider from config.yaml.
Animate a local image into a short mp4 video through Hermes Web UI using xAI Grok Imagine.
Create AI videos with HyperFrames in Hermes using HTML, CSS, and JavaScript compositions, then validate and render them to MP4. Use for short video intros, cinematic trailers, product promos, subtitle animations, HUD/tech visuals, web-to-video work, and motion graphics.
Create rich diagrams, data visualizations, technical architecture views, and editorial content cards directly in Markdown using the Markdown Viewer Agent Skills pack. Use for Mermaid-like diagram requests, PlantUML architecture diagrams, Vega charts, JSON Canvas maps, infographics, UML, cloud/network/security/data/IoT diagrams, and polished Markdown documentation visuals.
Create editable AI video projects with Remotion and React, then preview and render them to MP4. Use for vertical short videos, product demos, story-driven animations, HUD/tech visuals, feed ads, tutorial videos, subtitles, voiceover, sound effects, and code-based video iteration.
| name | deepseek-daily-briefing |
| description | 每日自动推送 DeepSeek API 余额和用量监控简报 |
| version | 1.0.0 |
每日自动推送 DeepSeek API 余额、花费和 Token 用量监控。使用 no_agent=true 模式直接执行 Python 脚本,不消耗 LLM Token。
需要两个凭据:
# ~/.hermes/.env
DEEPSEEK_API_KEY=sk-your_key_here
# ~/.hermes/deepseek_platform_token
# DeepSeek Platform API Token(从 Web 控制台获取)
your_platform_token_here
GET https://api.deepseek.com/user/balance
Authorization: Bearer <DEEPSEEK_API_KEY>
GET https://platform.deepseek.com/api/v0/users/get_user_summary
GET https://platform.deepseek.com/api/v0/usage/cost?year=2026&month=06
GET https://platform.deepseek.com/api/v0/usage/amount?year=2026&month=06
脚本 deepseek_daily_briefing.py 执行流程:
DEEPSEEK_API_KEY + Platform Token)cronjob action=create \
name="DeepSeek 每日用量简报" \
schedule="0 9 * * *" \
no_agent=true \
script="deepseek_daily_briefing.py" \
workdir="$HOME/.hermes" \
deliver="feishu"
⚠️ script 路径注意事项:
script参数只传文件名(如deepseek_daily_briefing.py),系统会自动在前面补scripts/。不要传scripts/foo.py,否则会变成scripts/scripts/foo.py。⚠️ deliver 注意事项:显式设置
deliver到目标平台(feishu/telegram等),origin默认值可能因会话过期而投递失败。
no_agent=true 的 cron 脚本运行在最小环境中,urllib.request.urlopen() 比 subprocess.run(["curl", ...]) 更可靠(curl 可能不在 PATH 中).env,Platform Token 放在独立文件中(便于权限分离)