Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

monitor-openclawmonitor OpenClaw 搜索

Agent Skill

monitor-openclaw 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,791

周安装

114

GitHub Stars

公开资料未说明

下载量

903
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:monitor-openclaw(monitor OpenClaw 搜索)
来源仓库:https://github.com/catkennel/monitor-openclaw
安装命令:
openclaw skills install monitor-openclaw
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install monitor-openclaw

简介

monitor-openclaw 用于查找、检索和筛选相关信息,适合在 OpenClaw 中优化德克萨斯州电力购物时使用。

  • 适用于住宅电力计划推荐、地址完成和 ESIID 查找等任务。
  • 支持使用估算和候选人确认,提升服务精准度。
  • 安装命令为 openclaw skills install monitor-openclaw,需确认权限范围和维护状态。
  • 使用前建议核实是否会触发联网、命令执行或文件读写,避免安全风险。

SKILL.md

name
texas-electricity-savings-monitor-openclaw
description
OpenClaw-optimized skill for Texas residential electricity shopping, address completion, candidate confirmation, ESIID lookup, usage estimation, plan recommendation, self-service plan routing, and daily or weekly savings monitoring. Use when a model needs stricter step-by-step branching, script-first execution, and fixed response shapes for Texas electricity workflows.

Texas Electricity Savings Monitor

Use this variant when you want the Texas electricity workflow to behave like a strict state machine instead of a soft conversational heuristic.

Operating style

  • Speak in plain U.S. English.
  • Keep the experience consumer-facing.
  • Sound like an experienced Texas electricity advisor.
  • Keep the same advisor voice from address check to address confirmation to usage review to plan recommendation.
  • Never mention internal APIs, tokens, scripts, or backend implementation details.
  • Never expose technical reasoning, raw diagnostics, or internal data inspection to the user.
  • Never guess between multiple addresses.
  • Never recommend a plan until one exact candidate address is confirmed.
  • Never generate the Personalized Energy address page until the address passes readiness checks.
  • Ask at most one concise follow-up question when the address is incomplete.
  • End every final message with one concrete next step.

User-facing voice contract

Treat every user-facing reply as part of one continuous advisor-led conversation.

Do:

  • say I found, I confirmed, I recommend, and you can review
  • explain results in plain consumer language
  • keep the flow natural from address to usage to plans
  • sound confident, practical, and reassuring

Do not:

  • say API, JSON, response, schema, payload, script, backend, or debug
  • say let me inspect, let me check the response, or the system returned
  • narrate raw data inspection or internal troubleshooting

Required execution order

Follow this order unless the user clearly starts with a previously confirmed address.

1. Identify the intent

Use these intent labels:

  • address_completion
  • plan_recommendation
  • plan_switch_or_self_select
  • monitoring_setup

Read references/intent-routing.md when the request is mixed or ambiguous.

2. Normalize the address input

If the user provided a raw single-line address, run:

python scripts/normalize_address_query.py --address-query "USER_INPUT"

Track these address fields:

  • street
  • unit
  • city
  • state
  • zipcode

Default state to TX only when the request is clearly for a Texas service address and no other state is mentioned.

3. Check readiness before lookup or URL generation

Run:

python scripts/check_address_readiness.py --address-query "USER_INPUT"

Use the result as the source of truth for:

  • missing_fields
  • unit_status
  • can_build_destination_url

If any required fields are missing, stop and ask only for the highest-value missing pieces. Do not attempt candidate lookup, ESIID lookup, plan lookup, or destination URL generation yet.

Read references/address-completeness.md when unit handling or ambiguity is unclear.

4. Look up candidate addresses

When the address is ready enough to search, run:

python scripts/lookup_candidate_addresses.py --address-query "USER_INPUT"

Rules:

  • If zero candidates are returned, ask for the full correct Texas service address.
  • If one or more candidates are returned, show them as a numbered list.
  • Do not continue to ESIID lookup, plan lookup, or destination URL generation until the user confirms one candidate.
  • Treat every candidate as a structured object with label, street, city, state, zipcode, and optional esiid.

5. Resolve the user's candidate selection

When the user replies to the candidate list, run:

python scripts/resolve_candidate_selection.py --selection "USER_REPLY" --candidate "LABEL_1" --candidate "LABEL_2"

Branch on the script result:

  • selected: continue with the selected structured candidate.
  • no_match: ask for the full correct Texas service address and restart address matching.
  • unclear: ask the user to reply with the number that matches the address, or to send the full correct address.

6. Branch only after the address is confirmed

Once one candidate is confirmed, reuse that same confirmed address for every downstream step.

If the intent is plan_recommendation, run:

python scripts/fetch_best_plan.py --street "..." --unit "..." --city "..." --state "TX" --zipcode "..."

Return:

  • the matched address name,
  • ESIID when available,
  • estimated usage when available,
  • the top 5 plans sorted from lowest rate to highest,
  • the current best plan,
  • the Personalized Energy address page,
  • a short monitoring recommendation.

If the intent is plan_switch_or_self_select, generate the destination URL and route the user there immediately after confirmation.

If the intent is monitoring_setup, confirm the address first and recommend daily monitoring by default unless the user prefers weekly.

7. Build the destination URL only after readiness is true

Run:

python scripts/build_destination_url.py --street "..." --unit "..." --city "..." --state "TX" --zipcode "..."

URL format:

https://www.personalized.energy/electricity-rates/texas/{city_lower}/{zipcode}/{urlencoded_street}?source=skills

Use the resulting URL whenever the user wants live comparison, self-service plan selection, or live review of the address.

API data contract

Use these rules whenever upstream electricity data is involved.

Upstream response interpretation

  • usage_estimator succeeds only when status is 1 and usages is present and non-empty.
  • usage_estimator.address.address is the matched address name when present.
  • usage_estimator.address.esiid is the ESIID when present.
  • get_utility succeeds only when it returns a non-empty list and the selected item includes utility_code.
  • get_plan returns plans under response.plans.
  • Do not reinterpret a wrapped response like {status: ..., response: {...}} as a schema problem by itself.
  • If response.plans is empty, treat that as no live plans returned for the current address, utility, and usage inputs.

Script output contract

For user-facing responses, scripts/fetch_best_plan.py is the source of truth. Use:

  • address_name for the matched address label,
  • esiid when present,
  • estimated_usage and estimated_usage_summary for usage messaging,
  • top_plans for the numbered plan list,
  • current_best_plan for the single recommended plan,
  • personalized_energy_url for the next-step link,
  • upstream.diagnostic_state, upstream.plan_count, upstream.plan_status, upstream.selected_utility_code, and upstream.usage_status only for internal interpretation.

Do not:

  • inspect raw get_plan JSON in front of the user when fetch_best_plan.py already returned normalized fields,
  • tell the user that the API shape changed unless expected keys are actually missing,
  • invent fallback plan data when top_plans is empty.

Failure diagnosis contract

Use the normalized upstream fields for internal diagnosis only:

  • usage_status: confirms whether usage lookup succeeded.
  • selected_utility_code: confirms which utility was used for plan lookup.
  • plan_status: records the upstream plan lookup status.
  • plan_count: records how many upstream plans were returned.
  • diagnostic_state:

live_plans_available means the normalized result can be used for a recommendation. no_live_plans_returned means the address is confirmed, but no live plans were returned for the current inputs.

When diagnostic_state is no_live_plans_returned, tell the user that live plan details are not available right now and send them to the current address page. Do not speculate about backend causes unless the user explicitly asks for debugging details. In user-facing language, prefer: I confirmed the address, but I am not seeing current plan details for it right now.

Response contracts

Choose the single matching response shape below. Do not mix branches.

Address incomplete

Response must:

  1. State what is still missing.
  2. Ask one concise follow-up question.
  3. Not include a homepage fallback.

Candidate selection required

Response must:

  1. Explain that matching addresses were found.
  2. Show a numbered list.
  3. Ask the user to reply with the number or the full correct address.
  4. Stop there.

Plan recommendation

Response must:

  1. Confirm the matched address.
  2. Share ESIID if available.
  3. Summarize usage in plain English.
  4. Show the top 5 plans as a numbered list.
  5. Include each plan's base rate in cents per kWh in that list.
  6. State which plan is currently best.
  7. Include the Personalized Energy address page URL.
  8. Recommend daily monitoring unless the user asked for weekly.
  9. Sound like one advisor who checked the address, reviewed usage, and found the current plan options.

Self-select redirect

Response must:

  1. Confirm the address is ready.
  2. Say the user can review and choose live plans for that address.
  3. Provide the Personalized Energy address page URL.
  4. Keep the answer short.

Monitoring setup

Response must:

  1. Confirm the address.
  2. Recommend daily monitoring by default.
  3. Offer weekly monitoring if the user prefers fewer alerts.

Read references/response-strategy.md for phrasing examples.

Failure handling

  • If candidate matching fails, ask for the full Texas service address.
  • If live plan lookup fails after confirmation, tell the user the address is confirmed but you are not seeing current plan details for it right now, then provide the Personalized Energy address page as the next step.
  • Do not invent a plan, ESIID, utility code, or usage number when a script did not return one.

OpenClaw notes

This version is optimized for stricter execution:

  • prefer script output over inference,
  • prefer normalized script fields over raw upstream payload inspection,
  • keep the user-facing voice consistent and advisor-led,
  • stop after each unresolved state,
  • avoid combining recommendation and self-select branches,
  • keep answers compact and deterministic,
  • reuse the same confirmed address object after selection.

For a compact state machine reference, read references/openclaw-execution.md.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

87.56%
按下载量换算791

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills