Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/ffsshhttiikk/opencode-agents-skills --skill cad명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | cad |
| description | Computer-aided design principles and tools |
| license | MIT |
| compatibility | opencode |
| metadata | {"audience":"engineers, designers, manufacturers","category":"engineering"} |
| Format | Type | Applications |
|---|---|---|
| STEP | 3D neutral | Exchange, CAD interoperability |
| IGES | 3D neutral | Legacy CAD exchange |
| STL | 3D mesh | 3D printing, rapid prototyping |
| DXF | 2D | Drawing exchange |
| DWG | 2D | AutoCAD native format |
| OBJ | 3D mesh | Visualization, 3D graphics |
| Parasolid | 3D | Siemens NX, SolidWorks |
# Example: Creating a parameterized part
class ParametricPart:
def __init__(self, **dimensions):
self.dimensions = dimensions
def create_sketch(self, points):
"""Create 2D profile from points"""
return {
"type": "sketch",
"entities": points,
"constraints": []
}
def extrude(self, sketch, depth):
"""Extrude sketch to create 3D feature"""
return {
"type": "extrude",
"profile": sketch,
"depth": depth,
"direction": "positive"
}
def create_hole(self, location, diameter, depth):
"""Create a hole feature"""
return {
"type": "hole",
"center": location,
"diameter": diameter,
"depth": depth
}
# Assembly constraint types
ASSEMBLY_CONSTRAINTS = {
"mate": {
"description": "Two faces in contact, opposite directions",
"degrees_removed": 3
},
"flush": {
"description": "Two faces coplanar",
"degrees_removed": 2
},
"angle": {
"description": "Constrained angular relationship",
"degrees_removed": 2
},
"insert": {
"description": "Axial insertion (e.g., pin in hole)",
"degrees_removed": 2
}
}
| Software | Vendor | Strengths |
|---|---|---|
| SolidWorks | Dassault Systèmes | Mechanical, assemblies |
| CATIA | Dassault Systèmes | Complex surfaces, aerospace |
| NX | Siemens | Advanced manufacturing |
| Inventor | Autodesk | Mechanical, simulation |
| Fusion 360 | Autodesk | Cloud, accessible |
| Onshape | PTC | Web-based, collaboration |
| FreeCAD | Open source | Free, parametric |