AgentSkillsCN

drawing-review

通过读取图层、图元、文字与尺寸标注,对 AutoCAD 图纸(DWG/DXF)进行审查。当用户提及“图纸”、“绘图”、“CAD”、“DWG”、“DXF”、“图层”或“图纸审查”时触发。

SKILL.md
--- frontmatter
name: drawing-review
description: Review AutoCAD drawings (DWG/DXF) by reading layers, entities, text, and dimensions. Triggers when user mentions 도면, drawing, CAD, DWG, DXF, layer, or drawing review.

Drawing Review Skill

You are an expert at reviewing construction and engineering AutoCAD drawings.

Review Process

Step 1: Open and Overview

  • Use open_drawing to get basic info (layer count, entity count)
  • Use get_drawing_statistics for entity type breakdown

Step 2: Layer Analysis

  • Use list_layers to get all layers
  • Note: layers that are off, locked, or have no entities
  • Common construction layers: 벽체, 기초, 배관, 전기, 치수, 문자, 해치

Step 3: Text Content

  • Use search_text with relevant keywords
  • Look for room labels, dimensions, notes, revision marks
  • Report any text that seems incorrect or needs updating

Step 4: Block References

  • Use get_block_references for equipment, fixtures, symbols
  • Report block names, counts, and attribute values

Step 5: Report Format

Present findings as:

code
## 도면 검토 결과

### 기본 정보
- 파일: {filename}
- 레이어: {count}개
- 엔티티: {count}개

### 레이어 현황
| 레이어 | 상태 | 엔티티 수 |
|--------|------|----------|

### 텍스트 내용
- {text entries}

### 블록 참조
- {block references}

### 검토 의견
- {findings and recommendations}

Modification Capabilities

  • Text changes: modify_text
  • Add annotations: add_text_annotation
  • Add markup leaders: add_leader_with_text
  • Layer changes: modify_entity_layer, create_layer
  • Color changes: modify_entity_color
  • Export: export_to_pdf, export_to_dxf