well-log-evaluation

well-log-evaluation is a skill for Claude Code, Codex from SteadfastAsArt/geoscience-skills. It costs 41 tokens per session (2,280 once invoked), scanned A, original, MIT.

A workflow for evaluating well log files, which contain measurements recorded by instruments in an oil or gas well. It covers loading data, checking its quality, analysing rock properties, classifying rock layers, and creating visualisations.

In plain words
What is it for?
Use it to load LAS or DLIS files, clean and combine curves, estimate properties such as porosity and water saturation, classify lithology, and create 3D well views.
Why use it?
It organises the many steps needed to turn raw well measurements into formation-evaluation results and visual displays.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to load LAS or DLIS files, clean and combine curves, estimate properties such as porosity and water saturation, classify lithology, and create 3D well views.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/steadfastasart/geoscience-skills/well-log-evaluation
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add SteadfastAsArt/geoscience-skills --skill well-log-evaluation
Clone the repo
git clone --depth 1 https://github.com/SteadfastAsArt/geoscience-skills

Made for: Claude Code, Codex.

Its marketplace also offers this one on its own, as the plugin well-log-evaluation/plugin install well-log-evaluation after adding the marketplace above.

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 well-log-evaluation

README.md
[![agentmods](https://agentmods.dev/badge/skills/steadfastasart/geoscience-skills/well-log-evaluation/github.svg)](https://agentmods.dev/skills/steadfastasart/geoscience-skills/well-log-evaluation)
Your own site
<a href="https://agentmods.dev/skills/steadfastasart/geoscience-skills/well-log-evaluation"><img src="https://agentmods.dev/badge/skills/steadfastasart/geoscience-skills/well-log-evaluation/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 well-log-evaluation

Your own site · 80×15
<a href="https://agentmods.dev/skills/steadfastasart/geoscience-skills/well-log-evaluation"><img src="https://agentmods.dev/badge/skills/steadfastasart/geoscience-skills/well-log-evaluation.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 41 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,280 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.00041 $0.02280
Opus 5 $0.00020 $0.01140
Sonnet 5 $0.00008 $0.00456
Haiku 4.5 $0.00004 $0.00228

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

Security

Grade A, and why

well-log-evaluation 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 10d 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.

workflows/well-log-evaluation/SKILL.md · 245 lines

How it starts

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

Well Log Evaluation Workflow

End-to-end pipeline for formation evaluation, from loading well log files through quality control, petrophysical analysis, lithology classification, and multi-dimensional visualization.

Skill Chain

lasio/dlisio     welly           petropy         striplog        pyvista
[File I/O]   --> [QC & Prep]  --> [Petrophysics] --> [Lithology] --> [3D Viz]
  |               |                |                 |               |
  LAS parsing     Despike          Vshale calc       Facies log      3D well
  DLIS frames     Normalize        Porosity          Intervals       Fence diagram
  Curve extract   Merge curves     Sw, Perm          Correlation     Property vol

Decision Points

Question If Yes If No
LAS format (.las)? Use lasio for loading Check DLIS format
DLIS format (.dlis)? Use dlisio for loading Check file type
Multiple wells or curve QC needed? Use welly for management Use lasio directly
Full formation evaluation (Sw, phi, Vsh)? Use petropy Compute manually with numpy
Need lithology column or stratigraphic log? Use striplog Skip to visualization
3D well trajectory visualization? Use pyvista Use matplotlib for log plots

Step-by-Step Orchestration

Stage 1: Data Loading (lasio / dlisio)

import lasio
import numpy as np
import pandas as pd

# Load LAS file
las = lasio.read('well_A.las')
df = las.df().reset_index()  # DataFrame with depth as column
null_val = float(las.well['NULL'].value)
df = df.replace(null_val, np.nan)

# Inspect available curves
print(las.curves.keys())  # ['DEPT', 'GR', 'RHOB', 'NPHI', 'RT', 'DT']
well_name = las.well['WELL'].value
import dlisio

# Load DLIS file (for modern well data)
with dlisio.dlis.load('well_B.dlis') as files:
    f = files[0]
    for frame in f.frames:
        print(frame.name, [ch.name for ch in frame.channels])
    # Extract channels to numpy arrays
    frame = f.frames[0]
    depth = frame.channels[0].curves()
    gr = frame.channels[1].curves()

Read the full file on GitHub · 245 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. 10d ago First seen · 245 lines · 41 tokens per session scan A 6aca23f5276c

Subscribe to this mod's changes

well-log-evaluation is a skill published in the GitHub repository SteadfastAsArt/geoscience-skills (58 stars, last pushed 5mo ago), licensed MIT. It adds 41 tokens to every session and 2,280 once invoked, about $0.0002 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-30.

Related

Other skills, from other repositories

figure-composer

Compose one publication-grade multi-panel figure. Entry from a one-line claim + data files, OR from an existing figure via deriveoutlineprompt (you read the PNG). Runs a per-figure loop: outline (12-col grid, per-panel ask + labelbudget) → render each panel with paneltask (loading figure-style), one at a time or…

UnicomAI/wanwu · 169 tokens

paper-narrative

Judge and reshape the STORY a paper's figures tell. Input is the work itself — manuscript (or abstract) + figure deck — no hand-written brief. paperbriefprompt(abstract, captions) hands you the prompt to write the brief yourself (pitch/vision/per-figure-claims); then you play a handling editor over the full deck and…

UnicomAI/wanwu · 155 tokens

tao-run-deft-cr-its-mining

Run the mining-based DEFT improvement workflow for ITS Cosmos-Reason binary video questions, focused on the non-reasoning classification/evaluation path. Use when the user asks for a DEFT CR ITS mining workflow, traffic-camera Cosmos Reason improvement loop, collision-identification workflow with data mining, or…

NVIDIA-TAO/tao-skill-bank · 80 tokens

tao-run-deft-object-detection

Run the full DEFT smart-data-augmentation loop for NVIDIA TAO Grounding DINO object detection: zero-shot baseline inference, KPI analysis, per-class gap analysis, SigLIP embedding of weak images, unique-neighbor mining against a source pool, ODVG dataset staging, and retraining — repeated for a fixed number of…

NVIDIA-TAO/tao-skill-bank · 196 tokens

tao-run-deft-od-aoi

Run a binary industrial-inspection DEFT loop with TAO RT-DETR: measure on frozen KPI/test roles, mine gap-similar real and clean images with SigLIP, accumulate admitted COCO data, retrain from one base checkpoint, and select by KPI AP50. Use for iterative AOI defect detection, not generic multiclass OD.

NVIDIA-TAO/tao-skill-bank · 81 tokens

sciverse-paper-search

Use this skill for scientific literature search, evidence retrieval, paper metadata screening, and cited research synthesis with Sciverse. This LazyLLM-adapted version supports SciverseSearch search, metasearch, metacatalog, and getcontent only; it does not assume full Sciverse MCP resource or attachment APIs are…

LazyAGI/LazyMind · 68 tokens