From aidotnet-moyucode
Watches files and directories for changes with event callbacks, pattern filtering, and action triggers. Useful for automating rebuilds or monitoring during development.
How this skill is triggered — by the user, by Claude, or both
Slash command
/aidotnet-moyucode:file-watcherThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Watch files and directories for changes with event callbacks, pattern filtering, and action triggers.
Watch files and directories for changes with event callbacks, pattern filtering, and action triggers.
/watch command# Watch directory
python scripts/file_watcher.py ./src/
# Watch with pattern filter
python scripts/file_watcher.py ./src/ --pattern "*.py"
# Watch and run command on change
python scripts/file_watcher.py ./src/ --exec "npm run build"
# Watch specific file
python scripts/file_watcher.py config.json
watch, files, monitor, events, automation
npx claudepluginhub aidotnet/moyucodeWatches files or commands and triggers actions on changes. Useful for live reloading or automation workflows.
Watches files for changes and runs arbitrary commands. Useful for triggering builds, tests, or server reloads on file modifications.
Monitors working directory for file changes and marker comments, auto-triggering skills. Poll-based via git diff. Use for automatic reactions to file changes, not one-off inspection.