smithery/syedaashnaghazanfar

watcher-runner-filesystem

Run, smoke-test, and debug the Bronze-tier filesystem watcher (Python) that monitors a local drop folder and creates markdown action items inside the Obsidian vault's /Needs_Action folder. This skill should be used when the user asks to "run the watcher", "start the filesystem watcher", "debug why Needs_Action is not updating", "watch a folder for new files", "test the watcher end-to-end", or when Claude needs to validate the Perception layer of Hackathon Zero without Gmail/OAuth. Trigger phras…

Installation

$ npx skills add smithery/syedaashnaghazanfar --skill watcher-runner-filesystem

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/syedaashnaghazanfar.

npx skills add smithery/syedaashnaghazanfar

Browse all from smithery/syedaashnaghazanfar

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,868 B
  • docs SUMMARY.md 689 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Watcher Runner (Filesystem)

Start and validate the Bronze-tier watcher that turns local file drops into Needs_Action/*.md items.

Assumptions

  • Project code lives under MY-AI-EMPLOYEE/ (user-provided convention).
  • The watcher script exists in that project (commonly watchers/filesystem_watcher.py or similar).
  • The watcher needs two paths:

- Vault root path - Watched drop folder path

If any of these are unknown, stop and ask for the paths.

Run workflow

  1. Locate the watcher entrypoint.
  2. Verify Python environment setup (uv/venv) and dependencies.
  3. Run watcher in foreground first (for visible logs).
  4. Trigger a file creation in the watched folder.
  5. Confirm a new action item appears in Needs_Action/.

Debug workflow

  1. Confirm the watcher process is running.
  2. Confirm filesystem events are firing (some environments require polling).
  3. Confirm vault path is correct and writable.
  4. Confirm watcher is writing .md action files (not only copying binaries).

Resources

  • Reference: references/runbook.md
  • Example smoke test script: scripts/createtestdrop.py
  • Examples: examples.md