ワンクリックで
cnc-programming
Expert skill for CNC programming and toolpath optimization using CAM software
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Expert skill for CNC programming and toolpath optimization using CAM software
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Reference for querying the Atlas knowledge graph through its MCP tools — the SECONDARY enrichment/comparison layer that adds best-practice context to systems you have ALREADY scanned from your real sources (`az`, repos, dirs). Use when you need to look up nodes, edges, kinds, clusters, stats, or wiki pages in Atlas to compare against your real inventory. (atlas graph, query atlas, atlas mcp, search the graph, graph neighbors, atlas record, atlas kinds, enrichment layer)
Atlas turns your STATED NEED into a real systems atlas by SCANNING your actual sources (Azure via `az`, git repos, local dirs) and process/data mining them, THEN enriching against the Atlas knowledge graph. Use this skill when asked to inventory/map your real systems, scan your cloud + repos + directories, mine the real processes or data they contain, or collect their real constraints/gotchas. (atlas, scan my systems, inventory our azure account, map my repos, real systems atlas, process mining, data mining, collect nuances, system discovery)
This skill should be used when the user asks to "find skills in the wild", "assimilate popular workflows", "discover SKILL.md files in repos", "research external skills", "find workflow patterns", "survey the skill landscape", "what skills exist out there", or wants to investigate public repositories for extractable processes, babysitter plugins, and reusable procedural insights. Searches GitHub for SKILL.md files, classifies repos by archetype, and maintains structured research under docs/reference-repos/.
JavaScript and TypeScript documentation generation using JSDoc and TSDoc. Parse source code, generate API documentation, validate coverage, and integrate with TypeDoc for comprehensive developer documentation.
Structured debugging methodology using hypothesis-driven investigation, log analysis, and bisection to isolate and resolve defects.
Zero-knowledge circuit development using Circom and Noir languages. Supports constraint optimization, ZK-friendly cryptographic primitives, proof generation (Groth16, PLONK), and Merkle tree implementations.
| 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"]} |
| graph | {"domains":["domain:mechanical-engineering"],"skillAreas":["skill-area:physics-simulation","skill-area:mathematical-reasoning","skill-area:motion-planning"],"roles":["role:systems-integration-engineer","role:research-engineer"]} |
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": {
"work_offset": "string",
"fixture": "string",
"stock_size": "array [L, W, H]"
},
"nc_file": "file reference"
}