Oil Price Monitor

v0.0.1

监测国内成品油价格调整窗口,提供调价提醒及当前油价查询,助用户合理安排加油时间和预算。

0· 202·1 current·1 all-time
byJeffrey Teng@tengjunqing

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for tengjunqing/oil-price-monitor.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Oil Price Monitor" (tengjunqing/oil-price-monitor) from ClawHub.
Skill page: https://clawhub.ai/tengjunqing/oil-price-monitor
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install oil-price-monitor

ClawHub CLI

Package manager switcher

npx clawhub@latest install oil-price-monitor
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name, description, and files all align with a monitoring/reminder skill. No unexpected binaries, credentials, or unrelated config paths are requested.
Instruction Scope
Runtime instructions are limited to using a search function (tavily_search), extracting price/timing fields, and suggesting a cron entry. This stays within the stated purpose, but bear in mind that tavily_search performs external web queries — verify you are comfortable with outbound network lookups and that results are validated against official sources (the SKILL.md itself recommends doing so). The included static schedule table may become outdated; the skill depends on live search results for correctness.
Install Mechanism
No install spec or code files beyond SKILL.md and a small package.json; nothing is written to disk or downloaded by the skill itself. Instruction-only skills have low install risk.
Credentials
The skill declares no required environment variables, credentials, or config paths. It does not request secrets or unrelated access.
Persistence & Privilege
always is false and the skill is user-invocable. The SKILL.md suggests a scheduled job (cron) to run periodic checks; if you enable autonomous invocation/scheduling, expect periodic outbound searches. If you prefer no background network activity, avoid scheduling or disable autonomous runs.
Assessment
This skill appears coherent and low-risk: it only uses web search to fetch oil-price data and contains no code to install or secrets to provide. Before installing, confirm that you trust the tavily_search integration (it will make outbound requests) and that you want scheduled checks (the skill suggests a cron job). Also verify price/timing results against official sources when acting on alerts, since the included timetable may become outdated.

Like a lobster shell, security has layers — review code before you run it.

latestvk97eeh2a2chkksydnak0mwrm2h83fz3v
202downloads
0stars
1versions
Updated 1mo ago
v0.0.1
MIT-0

oil-price-monitor - 国内油价监控 Skill

功能

监测国内成品油价格调整窗口,在调价前提醒用户提前加油。

触发条件

  • 用户询问油价
  • 定时任务(调价窗口前 1-2 天自动监测)

使用方法

1. 手动查询油价

查询当前油价情况
油价什么时候调整
最近油价涨了吗

2. 调用 Tavily 搜索获取最新数据

tavily_search(query="2026 年国内油价调整时间表 最新油价", count=5)

3. 关键信息提取

从搜索结果中提取:

  • 下次调价时间:格式为"月日 24 时"
  • 预计涨幅:元/吨 或 元/升
  • 当前油价:92 号/95 号汽油价格
  • 调价方向:上涨/下跌/搁浅

4. 调价窗口规律

国内成品油定价机制:

  • 调整周期:每 10 个工作日调整一次
  • 全年窗口:约 26 次(每月 2 次)
  • 触发条件:国际原油价格变化超过 50 元/吨
  • 调控上下限:130 美元/桶(上限)、40 美元/桶(下限)

2026 年调价窗口时间表

月份调价时间 1调价时间 2
1 月1 月 6 日 24 时1 月 20 日 24 时
2 月2 月 3 日 24 时2 月 24 日 24 时
3 月3 月 9 日 24 时3 月 23 日 24 时
4 月4 月 7 日 24 时4 月 21 日 24 时
5 月5 月 8 日 24 时5 月 21 日 24 时
6 月6 月 4 日 24 时6 月 18 日 24 时
7 月7 月 3 日 24 时7 月 17 日 24 时
8 月8 月 14 日 24 时8 月 28 日 24 时
9 月9 月 11 日 24 时9 月 24 日 24 时
10 月10 月 15 日 24 时10 月 29 日 24 时
11 月11 月 12 日 24 时11 月 26 日 24 时
12 月12 月 10 日 24 时12 月 24 日 24 时

定时任务配置建议

docs/cron-jobs.md 中添加:

{
  "name": "油价监控提醒",
  "cron": "0 9 */2 * *",
  "description": "每 2 天检查一次油价,在调价窗口前 1 天提醒用户",
  "agent": "bot_a",
  "model": "bailian/qwen3.5-plus"
}

回复模板

调价前提醒

⛽ 油价调整提醒

下次调价:{日期} 24 时({倒计时}天)
预计涨幅:{涨幅}元/升({涨幅吨}元/吨)
调价方向:{上涨/下跌}

建议:{提前加油/观望}
以 50 升油箱计算,调价后加满将多花/少花约{金额}元

当前油价查询

📊 当前油价({地区})

92 号汽油:{价格}元/升
95 号汽油:{价格}元/升
0 号柴油:{价格}元/升

下次调价:{日期} 24 时

注意事项

  1. 数据来源优先参考官方渠道(发改委、中国日报网)
  2. 涨幅数据需注明是预测值还是已确认
  3. 不同地区油价有差异,说明是参考价
  4. 民营加油站可能有 0.2-0.5 元/升优惠

相关文件

  • 技能位置:skills/oil-price-monitor/SKILL.md
  • 定时任务:docs/cron-jobs.md
  • 用户记忆:MEMORY.md(记录用户关注油价)

Comments

Loading comments...