agent-skills/hotspot-monitor-config/SKILL.md
Manage hotspot monitoring definitions for the wy-hotspot-monitoring workspace. Use this skill whenever the user asks to create, update, pause, resume, inspect, list, or delete monitoring items, or when they want to change keywords, scopes, sources, intervals, GitHub repo allowlists, or notification email settings. Prefer this skill over editing data files manually.
npx skillsauth add wanghuomiao/wy-hotspot-monitoring hotspot-monitor-configInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
This is a workspace-local skill for the wy-hotspot-monitoring repository.
Use it to manage monitor definitions through the existing backend logic without touching the current web app code.
Use this skill whenever the user wants to:
List monitors:
npx tsx agent-skills/hotspot-monitor-config/scripts/manage-monitor.ts list
Inspect one monitor:
npx tsx agent-skills/hotspot-monitor-config/scripts/manage-monitor.ts get --id <monitor-id>
Print a payload template:
npx tsx agent-skills/hotspot-monitor-config/scripts/manage-monitor.ts template
Create or update a monitor with inline JSON:
npx tsx agent-skills/hotspot-monitor-config/scripts/manage-monitor.ts upsert --json '{"name":"AI 编程雷达","keyword":"Claude Code","scope":"AI 编程","description":"优先捕获产品发布、模型能力更新、Agent 工作流变化","sources":["webSearch","googleNews","hackerNews","githubReleases"],"intervalMinutes":20,"email":"","enabled":true,"githubRepos":["anthropics/anthropic-sdk-typescript","vercel/ai"]}'
Delete a monitor:
npx tsx agent-skills/hotspot-monitor-config/scripts/manage-monitor.ts delete --id <monitor-id>
Use this JSON structure for create and update:
{
"id": "optional-existing-monitor-id",
"name": "AI 编程雷达",
"keyword": "Claude Code",
"scope": "AI 编程",
"description": "优先捕获产品发布、模型能力更新、Agent 工作流变化",
"sources": ["webSearch", "googleNews", "hackerNews", "githubReleases"],
"intervalMinutes": 20,
"email": "",
"enabled": true,
"githubRepos": ["anthropics/anthropic-sdk-typescript", "vercel/ai"]
}
development
Run or inspect the hotspot monitoring cycle for the wy-hotspot-monitoring workspace. Use this skill whenever the user asks to scan now, trigger a monitor manually, check which monitors are due, validate the monitoring pipeline, or see the latest run results and new hotspots. Prefer this skill over using the web UI when the request is operational.
testing
Generate a concise hotspot briefing from the wy-hotspot-monitoring workspace state. Use this skill whenever the user asks for a hotspot digest, trend summary, recent signal review, shift report, or operator-ready briefing, especially when they want a quick readout instead of raw JSON or the full dashboard.
data-ai
Example TaskFlow authoring pattern for inbox triage. Use when messages need different treatment based on intent, with some routes notifying immediately, some waiting on outside answers, and others rolling into a later summary.
data-ai
Example TaskFlow authoring pattern for inbox triage. Use when messages need different treatment based on intent, with some routes notifying immediately, some waiting on outside answers, and others rolling into a later summary.