用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/a5c-ai/babysitter --skill critical-chain-scheduler命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | critical-chain-scheduler |
| description | Critical Chain Project Management (CCPM) skill with buffer management and resource leveling |
| allowed-tools | ["Read","Write","Glob","Grep","Edit"] |
| metadata | {"specialization":"operations","domain":"business","category":"theory-of-constraints"} |
| graph | {"domains":["domain:operations"],"skillAreas":["skill-area:capacity-planning-ops","skill-area:quantitative-modeling","skill-area:change-management-ops"],"workflows":["workflow:vendor-onboarding","workflow:vendor-evaluation"],"roles":["role:operations-analyst","role:procurement-manager","role:project-manager"]} |
The Critical Chain Scheduler skill provides comprehensive capabilities for implementing Critical Chain Project Management (CCPM). It supports critical chain identification, buffer sizing and monitoring, resource leveling, and multi-project synchronization.
skill: critical-chain-scheduler
inputs:
project_name: "New Product Launch"
tasks:
- id: "T1"
name: "Design"
duration_50: 10 # 50% confidence estimate
duration_90: 18 # 90% confidence estimate
resources: ["Engineer A"]
predecessors: []
- id: "T2"
name: "Prototype"
duration_50: 5
duration_90: 9
resources: ["Engineer A"]
predecessors: ["T1"]
- id: "T3"
name: "Testing"
duration_50: 8
duration_90: 14
resources: ["Engineer B"]
predecessors: ["T2"]
resource_constraints:
- name: "Engineer A"
capacity: 1
outputs:
- critical_chain
| Aspect | Traditional | CCPM |
|---|---|---|
| Task estimates | Include safety | Aggressive (50%) |
| Safety time | Hidden in tasks | Aggregated in buffers |
| Start rule | As soon as possible | As late as safely possible |
| Progress tracking | Task completion | Buffer consumption |
| Resource focus | Utilization | Flow |
Location: End of critical chain
Size: 50% of critical chain length
Purpose: Protect project due date
Location: Where non-critical path joins critical chain
Size: 50% of feeding chain length
Purpose: Protect critical chain from delays
Location: Before resource-constrained critical chain tasks
Purpose: Alert resources to upcoming critical work
| Buffer Status | % Consumed | Action |
|---|---|---|
| Green | 0-33% | Plan recovery |
| Yellow | 34-66% | Implement recovery |
| Red | 67-100% | Escalate and expedite |