소스 정보
- 저장소
- MikeTreml/MissionControl
- 최근 소스 활동
- 2026년 4월 29일 22:06
- 감지된 SKILL.md 언어
- 영어
- 스타
- 1
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/MikeTreml/MissionControl --skill cnc-programming명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | cnc-programming |
| description | Expert skill for CNC programming and toolpath optimization using CAM software |
| allowed-tools | ["Read","Write","Glob","Grep","Bash"] |
| metadata | {"specialization":"mechanical-engineering","domain":"science","category":"manufacturing","priority":"high","phase":3,"tools-libraries":["Mastercam","Siemens NX CAM","Fusion 360 Manufacturing","GibbsCAM"]} |
The CNC Programming skill provides expert capabilities for CNC programming and toolpath optimization using CAM software, enabling efficient and accurate machining of mechanical components.
Material Removal Strategies
| Strategy | Application | Advantages |
|---|---|---|
| Adaptive/Dynamic | General roughing | Constant chip load |
| Enclosed areas | Efficient material removal | |
| Facing | Flat surfaces | Surface prep |
| Plunge rough | Deep pockets | Axial chip evacuation |
Stock Allowance
Finishing allowance = 0.25-0.5 mm (typical)
Semi-finish allowance = 0.5-1.0 mm
Rough allowance = Stock - finish - semi-finish
Step-Over Guidelines
Adaptive roughing: 10-25% tool diameter
Pocket roughing: 50-75% tool diameter
Depth of cut: 1-2x tool diameter (end mills)
Surface Finish Strategies
| Strategy | Application | Surface Finish |
|---|---|---|
| Parallel | Flat surfaces | Ra 0.8-1.6 um |
| Contour | Walls, profiles | Ra 0.8-1.6 um |
| Scallop | 3D surfaces | Ra 1.6-3.2 um |
| Pencil | Corners, fillets | Clean-up |
Step-Over for Finish
Cusp height = r - sqrt(r^2 - (s/2)^2)
For cusp height = 0.01 mm, r = 5 mm:
Step-over s = 0.89 mm
Cutting Speed (SFM): V = pi * D * N / 12 (imperial)
V = pi * D * N / 1000 (metric)
Feed Rate: F = f * z * N
Where:
V = cutting speed (SFM or m/min)
D = tool diameter
N = spindle speed (RPM)
f = feed per tooth
z = number of teeth
F = feed rate (IPM or mm/min)
| Material | Speed (SFM) | Feed/Tooth (in) | Notes |
|---|---|---|---|
| Aluminum | 500-1000 | 0.004-0.008 | High spindle, coolant |
| Steel (mild) | 80-120 | 0.003-0.006 | Flood coolant |
| Steel (hard) | 50-80 | 0.002-0.004 | Reduce speed |
| Stainless | 60-100 | 0.002-0.005 | Rigid setup |
| Titanium | 40-60 | 0.002-0.004 | High pressure coolant |
| Application | Tool Type | Coating |
|---|---|---|
| Aluminum roughing | 2-3 flute, polished | Uncoated/ZrN |
| Aluminum finishing | 2-3 flute, high helix | Uncoated |
| Steel roughing | 4+ flute, variable helix | AlTiN/TiAlN |
| Steel finishing | 4+ flute | AlTiN |
| Hardened steel | Ball nose, solid carbide | AlCrN |
Tool life tracking:
- Material removed (cm3)
- Cutting time (minutes)
- Parts produced
Replace at:
- Wear land > 0.3 mm
- Surface finish degradation
- Dimension out of tolerance
Clamping Force
Accessibility
Simulation Checks
First Article
{
"part_model": "CAD file reference",
"material": {
"name": "string",
"hardness": "string (e.g., HRC 30)"
},
"machine": {
"type": "3-axis|4-axis|5-axis|lathe",
"controller": "Fanuc|Siemens|Haas|other",
"spindle_max": "number (RPM)",
"rapids": "number (mm/min)"
},
"tolerances": {
"dimensional": "number (mm)",
"surface_finish": "number (Ra um)"
},
"production_volume": "prototype|low|medium|high"
}
{
"program_info": {
"program_number": "string",
"operations": "number",
"total_tools": "number"
},
"cycle_time": {
"machining": "number (min)",
"non-cutting": "number (min)",
"total": "number (min)"
},
"tool_list": [
{
"tool_number": "number",
"description": "string",
"diameter": "number (mm)",
"length": "number (mm)"
}
],
"setup_sheet":