catalog-babysitter-users

catalog-babysitter-users is a skill for Claude Code from a5c-ai/babysitter. It costs 106 tokens per session (1,429 once invoked), scanned A, original, MIT.

A cataloging workflow that searches public GitHub repositories for a specific Babysitter software-development import and records matching repositories in a Markdown file. Babysitter is the development tool whose software-development kit is being searched for.

In plain words
What is it for?
Use it to discover or refresh a catalog of public repositories that import defineTask from @a5c-ai/babysitter-sdk, using the GitHub command-line tool.
Why use it?
It provides a repeatable way to find public projects using that tool while avoiding duplicate entries and preserving older discoveries.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: reads .claude/ paths.

Good fit Use it to discover or refresh a catalog of public repositories that import defineTask from @a5c-ai/babysitter-sdk, using the GitHub command-line tool.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/a5c-ai/babysitter/catalog-babysitter-users
About the project

Babysitter is a workflow engine for AI coding agents that enforces predefined steps, quality checks, human approvals, and decision records. It is used to coordinate complex, repeatable agent workflows across supported coding tools. The catalogue contains skills, agents, instructions, settings, a plugin, and an MCP integration for its workflow.

a5c-ai/babysitter · 1,788 stars · on GitHub · a5c.ai

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add a5c-ai/babysitter --skill catalog-babysitter-users
Clone the repo
git clone --depth 1 https://github.com/a5c-ai/babysitter

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for catalog-babysitter-users

README.md
[![agentmods](https://agentmods.dev/badge/skills/a5c-ai/babysitter/catalog-babysitter-users/github.svg)](https://agentmods.dev/skills/a5c-ai/babysitter/catalog-babysitter-users)
Your own site
<a href="https://agentmods.dev/skills/a5c-ai/babysitter/catalog-babysitter-users"><img src="https://agentmods.dev/badge/skills/a5c-ai/babysitter/catalog-babysitter-users/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for catalog-babysitter-users

Your own site · 80×15
<a href="https://agentmods.dev/skills/a5c-ai/babysitter/catalog-babysitter-users"><img src="https://agentmods.dev/badge/skills/a5c-ai/babysitter/catalog-babysitter-users.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 106 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,429 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00106 $0.01429
Opus 5 $0.00053 $0.00714
Sonnet 5 $0.00021 $0.00286
Haiku 4.5 $0.00011 $0.00143

Measured 11d ago against content hash 8b7548e7c2f9, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

catalog-babysitter-users scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/catalog-babysitter-users/SKILL.md · 127 lines

How it starts

The opening of the file, as written. The whole thing — 127 lines — stays where its author put it; the contents beside it link to each section on GitHub.

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).

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 \
  --limit 200

Union the two result sets. If the CLI caps out at 100 per query, paginate by adding language:javascript, language:typescript, and extension:js, extension:ts qualifiers to split the search space.

Filtering rules (apply in order)

  1. Drop any hit whose repository.name (case-insensitive) equals babysitter. This excludes forks of this monorepo.
  2. Drop any hit whose repository.nameWithOwner starts with a5c-ai/ -- those are first-party and already known.
  3. Drop archived repos (repository.isArchived === true). Enrich via gh api repos/<owner>/<name> if the search JSON lacks it.
  4. Dedupe by repository.nameWithOwner -- one entry per repo, even if multiple files match. Keep the count of matching files as evidence.
  5. Drop private-visible-as-public fluke hits (repository.visibility !== 'public').

Read the full file on GitHub · 127 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 127 lines · 106 tokens per session scan A 8b7548e7c2f9

Subscribe to this mod's changes

catalog-babysitter-users is a skill published in the GitHub repository a5c-ai/babysitter (1,788 stars, last pushed 5d ago), licensed MIT. It adds 106 tokens to every session and 1,429 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.