Agent skill · Code Review & Quality

mesh-generation

Plan and evaluate mesh generation for numerical simulations. Use when choosing grid resolution, checking aspect ratios/skewness, estimating mesh quality constraints, or planning adaptive mesh refinement for PDE discretization.

FreedomIntelligencegithub.com/FreedomIntelligenceGitHub ↗
claude-codecan modify filesships scripts
Install
npx skills add FreedomIntelligence/OpenClaw-Medical-Skills --skill mesh-generation --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 5
SKILL.md size: 4 KB
Bundled scripts: yes
Allowed tools: ReadBashWriteGrepGlob
Path: skills/mesh-generation/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 2,909
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Mesh Generation ## Goal Provide a consistent workflow for selecting mesh resolution and checking mesh quality for PDE simulations. ## Requirements - Python 3.8+ - No external dependencies (uses stdlib) ## Inputs to Gather | Input | Description | Example | |-------|-------------|---------| | Domain size | Physical dimensions | `1.0 × 1.0 m` | | Feature size | Smallest feature to resolve | `0.01 m` | | Points per feature | Resolution requirement | `10 points` | | Aspect ratio limit | Maximum dx/dy ratio | `5:1` | | Quality threshold | Skewness limit | `< 0.8` | ## Decision Guidance ### Resolution Selection ``` What is the smallest feature size? ├── Interface width → dx ≤ width / 5 ├── Boundary layer → dx ≤ layer_thickness / 10 ├── Wave length → dx ≤ lambda / 20 └── Diffusion length → dx ≤ sqrt(D × dt) / 2 ``` ### Mesh Type Selection | Problem | Recommended Mesh | |---------|------------------| | Simple geometry, uniform | Structured Cartesian | | Complex geometry | Unstructured triangular/tetrahedral | | Boundary layers | Hybrid (structured near walls) | | Adaptive refinement | Quadtree/Octree or AMR | ## Script Outputs (JSON Fields) | Script | Key Outputs | |--------|-------------

What's inside
Steps it walks through
  1. Goal
  2. Requirements
  3. Inputs to Gather
  4. Decision Guidance
  5. Resolution Selection
  6. Mesh Type Selection
  7. Script Outputs (JSON Fields)
  8. Workflow
  9. Conversational Workflow Example
  10. Pre-Mesh Checklist
  11. CLI Examples
  12. Error Handling
  13. Interpretation Guidance
  14. Aspect Ratio
Ships with 4 files
  • references/mesh_types.md
  • references/quality_metrics.md
  • scripts/grid_sizing.py
  • scripts/mesh_quality.py
Commands it runs
python3 scripts/grid_sizing.py --length 0.001 --resolution 200 --json
Compute grid sizing for 1D domain
python3 scripts/grid_sizing.py --length 1.0 --resolution 200 --json
Check mesh quality
python3 scripts/mesh_quality.py --dx 1.0 --dy 0.5 --dz 0.5 --json
High aspect ratio check
python3 scripts/mesh_quality.py --dx 1.0 --dy 0.1 --json
More from OpenClaw-Medical-Skills
All skills →
About this skill
What does the mesh-generation skill do?

Plan and evaluate mesh generation for numerical simulations. Use when choosing grid resolution, checking aspect ratios/skewness, estimating mesh quality constraints, or planning adaptive mesh refinement for PDE discretization.

How do I install it?

Run `npx skills add FreedomIntelligence/OpenClaw-Medical-Skills --skill mesh-generation --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From FreedomIntelligence/OpenClaw-Medical-Skills, a repository with 2,909 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going