Use when you want the AI to check back periodically for updates or progress
Scanned 9/10/2026
Install to Claude Code
npx -y skills add LoopyLuci/Skills --skill loop-me --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Loop Me?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/loopyluci-loop-me)More formats (shields.io, HTML) on the badges page.
---
name: loop-me
description: Use when you want the AI to check back periodically for updates or progress
tags: [looping, check-in, progress, async, status]
related_skills: [teach, wayfinder, triage]
---
# Loop Me
Set up periodic check-ins so the AI monitors progress and reports back on long-running or async tasks.
## When to use
- You started a long-running process and want status updates
- You asked the user to do something and want to check back
- You are waiting for an external event or response
## How it works
1. Define what you are waiting for (the check condition)
2. Set the check interval (how often to check)
3. Define the termination condition (when to stop checking)
4. Specify the feedback channel (how to report results)
> **Note**: This skill is designed for Claude Code's loop-me feature. In Hermes Agent, use background processes with process() polling or cron-based monitoring instead.
## Common Pitfalls
- **Forgetting to set up the check-in mechanism**: Without an explicit mechanism (cron, reminder, callback), the loop does not function. Define how the AI will check back.
- **Loops that are too frequent**: Checking in every minute creates noise. Match the interval to the expected progress rate.
- **No clear termination condition**: The loop needs a defined end state. Without it, the AI keeps checking in indefinitely.
## Verification Checklist
- [ ] Check-in mechanism defined
- [ ] Interval appropriate for expected progress
- [ ] Termination condition specified
- [ ] Feedback delivery method agreed
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!