cad-engineering-step-to-dxf

Sub-skill of cad-engineering: STEP to DXF (+2).

5 stars

Best use case

cad-engineering-step-to-dxf is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Sub-skill of cad-engineering: STEP to DXF (+2).

Teams using cad-engineering-step-to-dxf should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/step-to-dxf/SKILL.md --create-dirs "https://raw.githubusercontent.com/vamseeachanta/workspace-hub/main/.agents/skills/_archive/engineering/cad/cad-engineering/step-to-dxf/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/step-to-dxf/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How cad-engineering-step-to-dxf Compares

Feature / Agentcad-engineering-step-to-dxfStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Sub-skill of cad-engineering: STEP to DXF (+2).

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# STEP to DXF (+2)

## STEP to DXF


```python
from digitalmodel.agents.cad import FormatConverter

converter = FormatConverter()

# Convert STEP to DXF with projection
result = converter.convert(
    input_file="model.step",
    output_file="drawing.dxf",
    projection="front",  # top, front, right, isometric

*See sub-skills for full details.*

## DWG Version Conversion


```python
# Convert between DWG versions
result = converter.convert(
    input_file="drawing_2024.dwg",
    output_file="drawing_2010.dwg",
    target_version="2010"  # For compatibility
)
```

## Batch Format Conversion


```python
from digitalmodel.agents.cad import BatchConverter

batch = BatchConverter()

# Convert all STEP files to IGES
results = batch.convert_directory(
    input_directory="./step_files",
    output_directory="./iges_files",
    input_format="STEP",

*See sub-skills for full details.*

Related Skills

engineering-solver-domain-recon

5
from vamseeachanta/workspace-hub

Deep reconnaissance of an engineering solver domain (OrcaWave, OrcaFlex, CalculiX, OpenFOAM, etc.) across a multi-repo ecosystem — map infrastructure, issues, skills, data artifacts, machine constraints, and solver queue state before planning work.

engineering-domain-reconnaissance

5
from vamseeachanta/workspace-hub

Class-level external engineering domain reconnaissance: field development, external drive ingest planning, and source-to-artifact conversion.

cad-engineering

5
from vamseeachanta/workspace-hub

Expert CAD Engineering Specialist with comprehensive knowledge of CAD systems, file formats, and conversion technologies. Use for CAD software guidance, file format conversions, technical drawings, 3D modeling, PDF to CAD conversions, and interoperability between open-source and proprietary CAD systems.

engineering-report-generator

5
from vamseeachanta/workspace-hub

Generate engineering analysis reports with interactive Plotly visualizations, standard report sections, and HTML export. Use for creating dashboards, analysis summaries, and technical documentation with charts.

engineering-issue-workflow

5
from vamseeachanta/workspace-hub

Mandatory workflow for engineering-critical GitHub issues — resource intelligence, plan review, TDD, implementation, and 3-provider cross-review.

engineering-chatbot-demo

5
from vamseeachanta/workspace-hub

GTM demo execution for engineering AI chatbot presentations — system prompt authoring, demo scripting, ROI capture

hidden-folder-audit-step-1-inventory-all-hidden-folders

5
from vamseeachanta/workspace-hub

Sub-skill of hidden-folder-audit: Step 1: Inventory All Hidden Folders (+4).

skill-creator-step-1-name

5
from vamseeachanta/workspace-hub

Skill-creator checklist template. Use when scaffolding a new skill with step-by-step instructions and verification items.

skill-creator-step-1-define-the-skill-scope

5
from vamseeachanta/workspace-hub

Define skill scope and write frontmatter. Use when creating a new skill to establish problem, inputs, outputs, and YAML metadata.

clean-code-step-1-api-compatibility-check-mandatory-before-wr

5
from vamseeachanta/workspace-hub

Sub-skill of clean-code: Step 1: API Compatibility Check (MANDATORY before writing shims) (+2).

nextflow-pipelines-step-3-run-test-profile

5
from vamseeachanta/workspace-hub

Sub-skill of nextflow-pipelines: Step 3: Run Test Profile.

nextflow-pipelines-step-2-select-pipeline

5
from vamseeachanta/workspace-hub

Sub-skill of nextflow-pipelines: Step 2: Select Pipeline.