| name | catalog-babysitter-users |
| description | Discover public GitHub repositories that import defineTask from @a5c-ai/babysitter-sdk and maintain a deduplicated catalog of those repositories in docs/repo-with-babysitter-processes.md. Excludes any repo named "babysitter" (to filter out forks of this monorepo). Invoke when asked to find, discover, catalog, or refresh "repos using babysitter", "babysitter in the wild", or "who else is using babysitter". |
Catalog Babysitter Users
Produce a curated, deduplicated catalog of public GitHub repositories that import defineTask from @a5c-ai/babysitter-sdk, stored at docs/repo-with-babysitter-processes.md. Refresh the catalog in-place when re-run; do not delete entries that no longer match (mark them as "last seen" instead, so the catalog is additive over time).
When to use
- User asks "who's using babysitter in the wild?", "find repos with babysitter processes", "refresh the catalog", "update the babysitter-users list".
- After a release, to see whether new adopters have appeared.
- Before a retrospective across external runs (see the sibling skill
retrospect-external-babysitter-run).
Prerequisites
gh CLI installed and authenticated (gh auth status must be OK). GitHub code search requires an authenticated user.
- Writable working tree (the catalog file gets updated).
Exact search
Search the literal import statement across public code:
gh search code \
"import { defineTask } from '@a5c-ai/babysitter-sdk'" \
--json repository,path,url \
--limit 200
Also run the double-quote variant to catch formatter differences:
gh search code \
'import { defineTask } from "@a5c-ai/babysitter-sdk"' \
--json repository,path,url \
-- 200