freecad-mcp-pro: Skill for Claude Code

.opencode/skills/f-implement/SKILL.md

f-implement is a skill for Claude Code, OpenCode from GadatheGod/freecad-mcp-pro. It costs 26 tokens per session (767 once invoked), scanned A, original, MIT.

A set of repository instructions for ResQ’s Python packages, including its projects, tools, testing commands, code checks, and release process. PyPI is the main package index for Python software.

In plain words
What is it for?
Use it when developing, testing, linting, type-checking, or releasing the resq-mcp and resq-dsa packages or the fleet-api service.
Why use it?
It gives an agent the project map and the commands and rules needed to work consistently in that repository.

Skill for Claude CodeOpenCode

Written for Claude Code and OpenCode: disable-model-invocation in frontmatter, but also installed under .opencode/. Also seen: mentions OpenCode.

This is GadatheGod/freecad-mcp-pro's own configuration. It tells Claude Code and OpenCode how to work on freecad-mcp-pro itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything freecad-mcp-pro configures →

Not installable: its command points at a path on the author’s own machine, so it runs nowhere else. The line is /home/praveen/Desktop/Freecadmcp/docs/freecad/.

Reuse

Borrowing it

Nothing to install: this file belongs to GadatheGod/freecad-mcp-pro. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/GadatheGod/freecad-mcp-pro/main/.opencode/skills/f-implement/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/GadatheGod/freecad-mcp-pro

Made for: Claude Code, OpenCode.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for f-implement

README.md
[![agentmods](https://agentmods.dev/badge/skills/gadathegod/freecad-mcp-pro/f-implement/github.svg)](https://agentmods.dev/skills/gadathegod/freecad-mcp-pro/f-implement)
Your own site
<a href="https://agentmods.dev/skills/gadathegod/freecad-mcp-pro/f-implement"><img src="https://agentmods.dev/badge/skills/gadathegod/freecad-mcp-pro/f-implement/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for f-implement

Your own site · 80×15
<a href="https://agentmods.dev/skills/gadathegod/freecad-mcp-pro/f-implement"><img src="https://agentmods.dev/badge/skills/gadathegod/freecad-mcp-pro/f-implement.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 26 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 767 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00026 $0.00767
Opus 5 $0.00013 $0.00383
Sonnet 5 $0.00005 $0.00153
Haiku 4.5 $0.00003 $0.00077

Measured 9d ago against content hash 70cec2ea2508, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

f-implement scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.opencode/skills/f-implement/SKILL.md · 113 lines

How it starts

The opening of the file, as written. The whole thing — 113 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Implement — FreeCAD Edition

Implement FreeCAD geometry, assemblies, or FEM analysis based on a spec or ticket.

Context

  • FreeCAD MCP server running on localhost
  • MCP tools: create_document, create_object, edit_object, delete_object, execute_code, get_view, run_fem_analysis
  • FreeCAD docs: /home/praveen/Desktop/Freecadmcp/docs/freecad/
  • Object reference: /home/praveen/Desktop/Freecadmcp/.opencode/skills/freecad-objects/

Process

1. Read the ticket/spec

Extract the FreeCAD objects, dimensions, materials, and constraints to create.

2. Create the document

create_document(name="ProjectName")

3. Create objects in order

Follow the ticket's blocking edges. For each object:

create_object(
    doc_name="ProjectName",
    obj_name="ObjectName",
    obj_type="Part::Box",  # or Part::Cylinder, PartDesign::Pad, etc.
    obj_properties={
        "Length": 50,
        "Width": 30,
        "Height": 20,
        "ViewObject": {"ShapeColor": [0.8, 0.2, 0.2, 1.0]},
        "Placement": {"Base": {"x": 0, "y": 0, "z": 0}}
    }
)

4. Verify with screenshots

After creating each major object:

get_view(view_name="Isometric", focus_object="ObjectName")

5. Run FEM analysis (if applicable)

run_fem_analysis(
    doc_name="ProjectName",
    analysis_name="FEMAnalysis",
    timeout=600
)

6. Verify results

  • Check max von Mises stress < material yield strength
  • Check displacement within tolerance
  • Get screenshot of stress visualization

7. Review the work

Use /f-code-review to verify:

  • Standards: Objects use correct types and properties per FreeCAD docs
  • Spec: All dimensions, features, and constraints match the ticket

8. Save the document

execute_code(code="FreeCAD.ActiveDocument.save('/path/to/file.FCStd')")

FreeCAD Object Quick Reference

obj_type Key Properties
Part::Box Length, Width, Height
Part::Cylinder Radius, Height
Part::Sphere Radius
Part::Cone Radius, Radius2, Height
Part::Torus Radius, Radius2
Draft::Circle Radius
Draft::Rectangle Length, Width
Draft::Polygon Points, Radius

Read the full file on GitHub · 113 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 113 lines · 26 tokens per session scan A 70cec2ea2508

Subscribe to this mod's changes

f-implement is a skill published in the GitHub repository GadatheGod/freecad-mcp-pro (1 stars, last pushed 1mo ago), licensed MIT. It adds 26 tokens to every session and 767 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

scientific-schematics

Create publication-quality scientific diagrams using Nano Banana 2 AI with smart iterative refinement. Uses Gemini 3.6 Flash for quality review. Only regenerates if quality is below threshold for your document type. Specialized in neural network architectures, system diagrams, flowcharts, biological pathways, and…

K-Dense-AI/scientific-agent-skills · 67 tokens

paper-poster-html

A workflow for building an academic conference poster as one HTML/CSS file and printing it to a PDF at an exact page size. It uses the paper’s real figures and checks layout details before review.

wanshuiyin/Auto-claude-code-research-in-sleep · 107 tokens

paperFig

Design, implement, revise, and validate publication-quality scientific figures from references, existing plotting code, and real project data. Trace every figure to source code and inputs; deconstruct reference figures; plan the scientific story and multi-panel structure; build complex model architecture and…

WUBING2023/PaperSpine · 126 tokens

latex-posters

Use when creating or revising LaTeX research posters with beamerposter, tikzposter, or baposter, including poster layout, typography, color, print sizing, figure placement, QR codes, compilation, and print-ready PDF checks.

foryourhealth111-pixel/Vibe-Skills · 53 tokens

figure-composer

Compose a publication-grade multi-panel scientific figure from a claim, dataset, or draft result. Use when the task needs panel planning, consistent figure layout, figure review, or final figure assembly.

companion-inc/feynman · 42 tokens

ccf-visual-composer

A visual design assistant for research papers, presentations, posters, and README graphics. It can lay out figures, tables, diagrams, icons, colors, and other visual elements, including editable SVG, PDF, and PPTX outputs.

mikubaka88/CCFA-Skills · 86 tokens