Agent skill · Data & Analytics

loopstructural

Build 3D geological models with implicit surfaces, faults, folds, and stratigraphic constraints from structural geology data. Use when Claude needs to: (1) Build 3D geological models from structural data, (2) Model fault networks and displacements, (3) Create folded geology representations, (4) Interpolate geological surfaces, (5) Export models to VTK for visualization, (6) Perform uncertainty analysis on geological models, (7) Evaluate model values on grids.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill loopstructural --agent claude-code

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

Facts
Files in the skill folder: 2
SKILL.md size: 7 KB
Bundled scripts: none
Version: 1.0.0
Declared author: Geoscience Skills
Requires: [LoopStructural>=1.5.0, numpy, pandas]
Path: skills/ai-ml/loopstructural/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

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

From the SKILL.md

# LoopStructural - 3D Geological Modelling ## Quick Reference ```python from LoopStructural import GeologicalModel from LoopStructural.visualisation import LavaVuModelViewer import pandas as pd import numpy as np # Create model model = GeologicalModel(origin=[0, 0, -1000], maximum=[10000, 10000, 0]) # Add data model.data = pd.DataFrame({ 'X': [5000], 'Y': [5000], 'Z': [-500], 'feature_name': ['strat'], 'val': [0] }) # Build and visualize model.create_and_add_foliation('strat', interpolatortype='PLI') model.update() viewer = LavaVuModelViewer(model) viewer.add_isosurface(model['strat'], isovalue=0) viewer.interactive() ``` ## Key Classes | Class | Purpose | |-------|---------| | `GeologicalModel` | Main model container - holds features and data | | `ProcessInputData` | Data preparation and validation | | `StructuralFrame` | Coordinate system for fold modelling | | `FaultSegment` | Individual fault surface with displacement | ## Essential Operations ### Build Stratigraphic Model ```python model = GeologicalModel([0, 0, -1000], [10000, 10000, 0]) model.data = pd.DataFrame({ 'X': [5000, 5000, 5000], 'Y': [5000, 5000, 5000], 'Z': [-200, -500, -800], 'feature_name': ['strat', 'strat', 's

What's inside
Steps it walks through
  1. Quick Reference
  2. Key Classes
  3. Essential Operations
  4. Build Stratigraphic Model
  5. Add Orientation Data
  6. Model with Fault
  7. Folded Geology
  8. Evaluate on Grid
  9. Export to VTK
  10. Data Requirements
  11. When to Use vs Alternatives
  12. Common Workflows
  13. Build faulted geological model from structural data
  14. Modelling Tips
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the loopstructural skill do?

Build 3D geological models with implicit surfaces, faults, folds, and stratigraphic constraints from structural geology data. Use when Claude needs to: (1) Build 3D geological models from structural data, (2) Model fault networks and displacements, (3) Create folded geology representations, (4) Interpolate geological surfaces, (5) Export models to VTK for visualization, (6) Perform uncertainty analysis on geological models, (7) Evaluate model values on grids.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill loopstructural --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 majiayu000/claude-skill-registry, a repository with 534 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