dongsheng123132/dsh-cad-review0

dsh-cad-review

Evidence-first ASCII DXF inspection and rule-backed CAD review for DeepSeek Harness

AI 분석

核心用途是根据自定义策略对 ASCII 格式的 DXF 文件进行图层、实体类型及尺寸等规则审查。适合需要在 DSH 中对 CAD 图纸进行自动化合规性检查的设计与工程管理任务。

패키지
dsh-cad-review
버전
0.1.0
라이선스
MIT
최근 업데이트
2026. 8. 13.

설치

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:dongsheng123132/dsh-cad-review

Install

dsh plugin --profile  add github:dongsheng123132/dsh-cad-review

Configure a workspace root and project-owned policy:

- id: dsh-cad-review
  name: dsh-cad-review
  config:
    workspaceRoot: C:/absolute/project/path
    maxBytes: 20971520
    policy:
      requiredLayers: ["WALL"]
      forbiddenLayers: ["DEFPOINTS"]
      forbiddenEntityTypes: ["3DSOLID"]
      requireClosedPolylines: true
      minTextHeight: 2.5
      maxDrawingSpan: 1000
      requiredInsUnits: 4
      maxEntities: 100000
      maxIssues: 500

Paths must be .dxf files relative to workspaceRoot. Traversal, symlink escape, binary DXF and oversized input are refused.