baby-age

baby-age is a skill for Claude Code, Codex from babyagecalculator/ai. It costs 68 tokens per session (779 once invoked), scanned A, a copy of baby-age, MIT.

A calculator for a baby's exact age, zodiac sign, and milestone dates. Milestones include events such as 100 days, the first birthday, and 1,000 days.

In plain words
What is it for?
Use it to calculate a baby's age or zodiac sign, find milestone dates, list available milestones, or prepare those dates for a calendar.
Why use it?
It avoids mistakes caused by leap years and different month lengths when calculating dates from a baby's birthday.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to calculate a baby's age or zodiac sign, find milestone dates, list available milestones, or prepare those dates for a calendar.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/babyagecalculator/ai/baby-age
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 babyagecalculator/ai --skill baby-age
Clone the repo
git clone --depth 1 https://github.com/babyagecalculator/ai

Made for: Claude Code, Codex.

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 baby-age

README.md
[![agentmods](https://agentmods.dev/badge/skills/babyagecalculator/ai/baby-age/github.svg)](https://agentmods.dev/skills/babyagecalculator/ai/baby-age)
Your own site
<a href="https://agentmods.dev/skills/babyagecalculator/ai/baby-age"><img src="https://agentmods.dev/badge/skills/babyagecalculator/ai/baby-age/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 baby-age

Your own site · 80×15
<a href="https://agentmods.dev/skills/babyagecalculator/ai/baby-age"><img src="https://agentmods.dev/badge/skills/babyagecalculator/ai/baby-age.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 68 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 779 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.
Origin 100% copy Near-identical to another mod 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.00068 $0.00779
Opus 5 $0.00034 $0.00390
Sonnet 5 $0.00014 $0.00156
Haiku 4.5 $0.00007 $0.00078

Measured 12d ago against content hash 9bb92498e2c1, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

baby-age 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 12d 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.

Origin

This is a copy

100% identical to baby-age — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

skills/baby-age/SKILL.md · 79 lines

How it starts

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

Baby Age Calculator

Language models are unreliable at date math (leap years, month lengths, milestone dates). Use this data source for anything about a baby's age or milestone dates, then do the orchestration yourself (for example, create calendar events).

When to use

  • "How old is my baby, born YYYY-MM-DD?"
  • "When is the 100-day / 1000-day / first birthday?"
  • "Add my baby's milestones to my calendar."
  • Anything that needs a baby's zodiac sign.

Option A — the MCP server (preferred)

If the Baby Age Calculator MCP server is connected, call its tools:

  • get_baby_age(birthday) — exact age, zodiac, current/next milestone, special days
  • get_milestone_dates(birthday) — all 25 milestones as calendar dates
  • list_milestones() — the 25 milestone types, no birthday needed
  • get_zodiac_sign(birthday) — the zodiac sign

Option B — the public JSON API (no MCP needed)

Free, no key, CORS-open. Dates are YYYY-MM-DD and must not be in the future. Every response has the shape { code, data, error, meta }; the payload is in data. A bad date returns HTTP 400 with a message in error.message.

  1. Age, zodiac, and milestones for one birthday:

    GET https://babyagecalculator.com/api/age/?birthday=YYYY-MM-DD
    

    data contains:

    • age: { years, months, weeks, days, human }
    • totals: { months, weeks, days, hours }
    • zodiac: { name, emoji, dates, element, nickname, guide_url }
    • current_milestone and next_milestone: each { name, day, date, days_left, guide_url }
    • special_days: 100 days, 200 days, 1st birthday, 1000 days — each { label, date, reached, days_left, guide_url }
    • links: result_page and guide lists
  2. All 25 milestone types (name, emoji, group, and day = days from birth):

    GET https://babyagecalculator.com/api/milestones/
    

    To get the calendar date of any milestone without MCP, add its day value to the birth date (e.g. day 100 = birthday + 100 days). The MCP tool get_milestone_dates does this for all 25 at once.

Read the full file on GitHub · 79 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. 12d ago First seen · 79 lines · 68 tokens per session scan A 9bb92498e2c1

Subscribe to this mod's changes

baby-age is a skill published in the GitHub repository babyagecalculator/ai (0 stars, last pushed 1mo ago), licensed MIT. It adds 68 tokens to every session and 779 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to baby-age, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories

exploratory-data-analysis

Perform bounded, local exploratory analysis of explicitly supported scientific files. Use for redacted CSV/TSV/JSON profiles; optional NumPy, HDF5, FASTA/FASTQ, and basic image metadata inspection; missingness/leakage audits; outlier and transformation sensitivity; and rigorous EDA report scaffolds. Other domain…

K-Dense-AI/scientific-agent-skills · 83 tokens

google-ads-audit

Google Ads account audit and business context setup. Use for account-health audits and business-context setup. Trigger on "audit my ads", "ads audit", "set up my ads", "onboard", "account overview", "how's my account", "ads health check", "what should I fix in my ads", or when the user is new to NotFair and hasn't run…

nowork-studio/notfair-plugin · 86 tokens

data-charts-tako

Search and visualize the world's data - get charts, insights, and embeddable knowledge cards for finance, economics, demographics, sports, and more.

gooseworks-ai/goose-skills · 35 tokens

webhook-management

Configure and validate CCAM webhook targets across supported chat, incident, automation, and generic providers. Use when listing provider requirements, creating or updating a target, scoping it to alert rules, sending a test notification, reviewing delivery history, or deleting a target.

hoangsonww/Claude-Code-Agent-Monitor · 56 tokens

gesellschaftsrechtliche-satzungen-agb

Für Gesellschaftsrechtliche Satzungen AGB Abgrenzung: ordnet Norm, Beweislast und Gegenargument; Ergebnis: Prüfprodukt mit Risiko und nächstem Schritt. Fachgebiet: AGB-Recht-Prüfer. Route: gesellschaftsrechtliche-satzungen-agb.

Klotzkette/claude-fuer-deutsches-recht · 69 tokens

master-yinguang

A reference-based assistant for questions about Yinguang and Pure Land Buddhism, a Buddhist tradition focused on faith, ethical living, and practice connected with rebirth in the Pure Land. It can answer in Yinguang’s historical teaching style.

xr843/Master-skill · 274 tokens