Loop Skill

VerifiedSafe

Continuously monitor a machine or work-order for changes and surface AI insights to the activity log.

Sby Skills Guide Bot
DevelopmentIntermediate
007/23/2026
Claude Code
#loop#monitoring#mcp#insights#automation

Recommended for

Our review

Continuously monitors an entity (machine, station, work order, operator) and logs AI insights to the activity log upon detecting changes.

Strengths

  • Automatic detection of status changes and new alarms
  • Context-aware AI insight generation via MCP
  • Configurable polling interval

Limitations

  • Requires access to wecr8mcp MCP tools
  • May produce noise if change threshold is too low
  • Runs indefinitely until manually interrupted
When to use it

For real-time supervision of machine or work order status with intelligent alerting.

When not to use it

For one-off checks or when MCP API call costs are a concern.

Security analysis

Safe
Quality score85/100

The skill only uses safe monitoring tools (wecr8mcp_observe, wecr8mcp_enrich) and does not perform any destructive, exfiltrating, or obfuscated actions. No high-risk tools are used.

No concerns found

Examples

Monitor a specific machine every 30 seconds
/loop-skill machine abc123 30
Monitor all work orders every 5 minutes
/loop-skill work_order 300

loop-skill

Continuously monitor a machine or work-order for changes and surface AI insights to the activity log.

Usage

/loop-skill [entity_type] [entity_id] [interval_seconds]
  • entity_type — one of: machine, station, work_order, operator
  • entity_id — UUID to watch. Omit to watch all.
  • interval_seconds — poll interval (default: 60)

What it does

  1. Calls wecr8mcp_observe to read current state.
  2. Compares against the previous snapshot to detect changes.
  3. If a meaningful change is detected (status change, new alarm, quality flag), calls wecr8mcp_enrich to log an AI insight.
  4. Reschedules itself at the requested interval.

Example

/loop-skill machine abc123 30

Watches machine abc123 every 30 seconds and logs anomaly/insight notes when status changes.

Related skills