process-planning

Skill for manufacturing process planning including operation sequencing and work instructions

509 stars

Best use case

process-planning is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Skill for manufacturing process planning including operation sequencing and work instructions

Teams using process-planning should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/process-planning/SKILL.md --create-dirs "https://raw.githubusercontent.com/a5c-ai/babysitter/main/library/specializations/domains/science/mechanical-engineering/skills/process-planning/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/process-planning/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How process-planning Compares

Feature / Agentprocess-planningStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Skill for manufacturing process planning including operation sequencing and work instructions

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

Related Guides

SKILL.md Source

# Manufacturing Process Planning Skill

## Purpose

The Manufacturing Process Planning skill provides capabilities for developing comprehensive manufacturing process plans including operation sequencing, work instructions, and quality controls for mechanical component production.

## Capabilities

- Operation sequence development
- Machine and tooling selection
- Cycle time estimation
- Inspection point specification
- Work instruction creation
- Process FMEA development
- Control plan generation
- Cost estimation and optimization

## Usage Guidelines

### Process Planning Framework

#### Information Gathering

1. **Design Requirements**
   - Part drawing and model
   - Material specification
   - Tolerance requirements
   - Surface finish requirements
   - Special requirements (certifications, traceability)

2. **Production Requirements**
   - Annual volume
   - Lot sizes
   - Lead time requirements
   - Budget constraints

3. **Available Resources**
   - Machine capabilities
   - Tooling inventory
   - Skilled labor
   - Quality equipment

### Operation Sequencing

#### Sequence Development Principles

```
General sequence:
1. Raw material preparation
2. Primary forming/roughing
3. Secondary operations
4. Finishing operations
5. Heat treatment (if required)
6. Final machining (post-heat treat)
7. Surface treatment/coating
8. Final inspection
9. Packaging
```

#### Operation Selection Matrix

| Feature | Possible Operations | Selection Criteria |
|---------|--------------------|--------------------|
| External cylinder | Turning, grinding | Tolerance, finish |
| Internal cylinder | Boring, drilling, reaming | Diameter, depth |
| Flat surface | Milling, grinding, lapping | Flatness, finish |
| Gear teeth | Hobbing, shaping, grinding | Accuracy, volume |
| Thread | Tapping, thread milling, rolling | Size, accuracy |
| Heat treat | Quench/temper, carburize, nitride | Hardness, depth |

### Machine Selection

#### Capability Assessment

```
Selection criteria:
- Workpiece size vs machine envelope
- Required tolerances vs machine capability
- Surface finish capability
- Spindle power vs material removal
- Tool capacity
- Automation potential
```

#### Process Capability

```
Typical capabilities:
Turning: IT7-IT9, Ra 0.8-3.2 um
Milling: IT7-IT10, Ra 0.8-6.3 um
Grinding: IT5-IT7, Ra 0.1-0.8 um
EDM: IT6-IT8, Ra 0.2-6.3 um
Honing: IT4-IT6, Ra 0.05-0.4 um
```

### Cycle Time Estimation

#### Time Components

```
Total cycle time = Setup time + Processing time + Non-productive time

Processing time per operation:
T_process = (L + A) / (f * N) + tool change time

Where:
L = length of cut
A = approach distance
f = feed rate
N = spindle speed
```

#### Standard Times

| Activity | Typical Time |
|----------|--------------|
| Load/unload (manual) | 15-60 seconds |
| Tool change (CNC) | 3-10 seconds |
| Index (turret) | 1-3 seconds |
| Probe cycle | 5-15 seconds |
| Deburr (manual) | 30-120 seconds |

### Work Instructions

#### Content Requirements

1. **Header Information**
   - Part number and revision
   - Operation number and description
   - Work center/machine
   - Standard time

2. **Setup Instructions**
   - Fixture identification
   - Tool list
   - Work offset procedures
   - Program number

3. **Operating Instructions**
   - Step-by-step procedures
   - Critical parameters
   - Safety requirements
   - Quality checks

4. **Visual Aids**
   - Photos of setup
   - Diagrams of critical dimensions
   - Defect examples (visual standards)

### Process FMEA

#### FMEA Structure

```
Process Step -> Potential Failure Mode -> Effect -> Cause

Severity (S): 1-10 scale
Occurrence (O): 1-10 scale
Detection (D): 1-10 scale

RPN = S x O x D

Actions required for RPN > 100 (typically)
```

#### Common Process Failure Modes

| Process | Failure Mode | Cause | Detection |
|---------|--------------|-------|-----------|
| Machining | Dimension out of tolerance | Tool wear | In-process gage |
| Heat treat | Incorrect hardness | Temperature error | Hardness test |
| Welding | Porosity | Contamination | NDT |
| Assembly | Missing component | Operator error | Check sheet |

### Control Plan

#### Control Plan Elements

```
For each operation:
- Process step
- Machine/device
- Characteristic (dimension, property)
- Specification/tolerance
- Measurement method
- Sample size and frequency
- Control method
- Reaction plan
```

## Process Integration

- ME-017: Manufacturing Process Planning

## Input Schema

```json
{
  "part_info": {
    "part_number": "string",
    "revision": "string",
    "material": "string"
  },
  "design_requirements": {
    "drawing_reference": "string",
    "critical_dimensions": "array",
    "surface_finish_requirements": "array"
  },
  "production_requirements": {
    "annual_volume": "number",
    "lot_size": "number",
    "lead_time": "number (weeks)"
  },
  "available_equipment": "array of machine types"
}
```

## Output Schema

```json
{
  "process_plan": {
    "routing_number": "string",
    "operations": [
      {
        "op_number": "number",
        "description": "string",
        "work_center": "string",
        "setup_time": "number (min)",
        "cycle_time": "number (min)",
        "tooling": "array",
        "inspection_points": "array"
      }
    ],
    "total_lead_time": "number (days)"
  },
  "work_instructions": "array of document references",
  "process_fmea": "document reference",
  "control_plan": "document reference",
  "cost_estimate": {
    "material": "number",
    "labor": "number",
    "overhead": "number",
    "total": "number"
  }
}
```

## Best Practices

1. Consider all design requirements before sequencing
2. Minimize setups and part handling
3. Group operations by work center when possible
4. Include quality gates at critical operations
5. Document all assumptions and alternatives
6. Review with production team before release

## Integration Points

- Connects with GD&T Drawing for requirements
- Feeds into CNC Programming for machining ops
- Supports FAI Inspection for verification
- Integrates with Quality for control plans

Related Skills

process-builder

509
from a5c-ai/babysitter

Scaffold new babysitter process definitions following SDK patterns, proper structure, and best practices. Guides the 3-phase workflow from research to implementation.

Workflow & Productivity

markdown-processor

509
from a5c-ai/babysitter

Specialized skill for processing Markdown and MDX documentation. Supports parsing, rendering, TOC generation, link validation, frontmatter processing, and diagram embedding.

Point Cloud Processing Skill

509
from a5c-ai/babysitter

Specialized skill for 3D point cloud processing and analysis using PCL and Open3D

MoveIt Motion Planning Skill

509
from a5c-ai/babysitter

Deep expertise in MoveIt/MoveIt2 configuration and manipulation planning

Motion Planning Skill

509
from a5c-ai/babysitter

Sampling-based and optimization-based motion planning algorithms

Grasp Planning Skill

509
from a5c-ai/babysitter

Grasp planning and execution for robotic manipulation tasks

OKR Planning

509
from a5c-ai/babysitter

Objectives and Key Results planning, tracking, and alignment capabilities

process-validator

509
from a5c-ai/babysitter

Validate process JS files for correct SDK patterns, task definitions, syntax, and quality gate implementation.

process-integrator

509
from a5c-ai/babysitter

Integrate skills and agents into process files by updating task definitions with appropriate skill.name and agent.name references.

process-generator

509
from a5c-ai/babysitter

Generate process JS files following Babysitter SDK patterns including task definitions, quality gates, breakpoints, and proper io configuration.

process-analyzer

509
from a5c-ai/babysitter

Analyze processes, identify workflows, define boundaries and scope, and map process requirements for specialization creation.

post-processing

509
from a5c-ai/babysitter

Post-processing skill for bloom, DOF, motion blur, color grading, and TAA.