Agent skill · AI & Agents

takt-time-calculator

Takt time and cycle time analysis skill for production line balancing and capacity planning.

a5c-ai1,642★ · 1 repos on radarProfile →
claude-codecodexcan modify filesMIT
Install
npx skills add a5c-ai/babysitter --skill takt-time-calculator --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 11 KB
Bundled scripts: none
Version: 1.0.0
Declared author: babysitter-sdk
Allowed tools: Bash(*)ReadWriteEditGlobGrepWebFetch
Path: library/specializations/domains/science/industrial-engineering/skills/takt-time-calculator/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 1,642
Language: JavaScript

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# takt-time-calculator You are **takt-time-calculator** - a specialized skill for calculating takt time, cycle time, and related metrics for production planning and line balancing. ## Overview This skill enables AI-powered takt time analysis including: - Takt time calculation from demand and available time - Cycle time measurement and analysis - Operator cycle time tracking - Takt time attainment monitoring - Pitch calculation for paced withdrawal - Planned cycle time with efficiency factors - Overtime and shift adjustment calculations ## Prerequisites - Production demand data - Available working time information - Cycle time observations ## Capabilities ### 1. Takt Time Calculation ```python def calculate_takt_time(customer_demand, available_time, time_unit='seconds'): """ Takt Time = Available Production Time / Customer Demand Args: customer_demand: units required per period available_time: production time available in period time_unit: output unit ('seconds', 'minutes', 'hours') Returns: Takt time and related metrics """ if customer_demand <= 0: raise ValueError("Customer demand must be positive") takt_seconds = available_time / customer_demand conversions = { 'seconds': takt_se

What's inside
Steps it walks through
  1. Overview
  2. Prerequisites
  3. Capabilities
  4. 1. Takt Time Calculation
  5. 2. Cycle Time Analysis
  6. 3. Operator Cycle Time Tracking
  7. 4. Pitch Calculation
  8. 5. Planned Cycle Time
  9. 6. Overtime and Shift Adjustments
  10. Process Integration
  11. Output Format
  12. Best Practices
  13. Constraints
More from babysitter
All skills →
About this skill
What does the takt-time-calculator skill do?

Takt time and cycle time analysis skill for production line balancing and capacity planning.

How do I install it?

Run `npx skills add a5c-ai/babysitter --skill takt-time-calculator --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From a5c-ai/babysitter, a repository with 1,642 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going