Agent skill
bsee-sodir-extraction
Extract and process energy data from BSEE (Gulf of Mexico) and SODIR (Norway) regulatory databases
Install this agent skill to your Project
npx add-skill https://github.com/vamseeachanta/workspace-hub/tree/main/.claude/skills/data/analysis/bsee-sodir-extraction
SKILL.md
Bsee Sodir Extraction
When to Use This Skill
Use BSEE/SODIR data extraction when you need:
- Production data - Oil, gas, water production by field/well
- Well information - Directional surveys, completions, drilling data
- Field data - Reserves, operators, development status
- HSE data - Safety incidents, environmental compliance
- Economic analysis - NPV calculations using regulatory data
- Regulatory compliance - Track permits, violations, inspections
Data sources covered:
- BSEE (US Gulf of Mexico): Production, wells, platforms, safety
- SODIR (Norway): Fields, production, wells, discoveries
- NPD FactPages: Norwegian petroleum data (legacy)
Complete Pipeline Example
"""
Complete BSEE/SODIR data extraction and analysis pipeline.
"""
import pandas as pd
from pathlib import Path
from datetime import datetime
import plotly.graph_objects as go
def run_extraction_pipeline(
output_dir: Path = Path("data"),
report_dir: Path = Path("reports")
) -> dict:
"""
Run complete data extraction and analysis pipeline.
Returns:
Dictionary with extraction summary
"""
output_dir.mkdir(parents=True, exist_ok=True)
report_dir.mkdir(parents=True, exist_ok=True)
results = {
"extraction_date": datetime.now().isoformat(),
*See sub-skills for full details.*
## Resources
- **BSEE Data Center**: https://www.data.bsee.gov/
- **SODIR FactPages**: https://factpages.sodir.no/
- **BSEE API Documentation**: https://www.data.bsee.gov/api-documentation
- **NPD (legacy)**: https://www.npd.no/en/facts/
---
**Use this skill for all energy regulatory data extraction in worldenergydata!**
## Sub-Skills
- [1. BSEE Data Extraction](1-bsee-data-extraction/SKILL.md)
- [2. SODIR/NPD Data Extraction (Norway)](2-sodirnpd-data-extraction-norway/SKILL.md)
- [3. Combined Analysis](3-combined-analysis/SKILL.md)
- [4. NPV Analysis with Regulatory Data](4-npv-analysis-with-regulatory-data/SKILL.md)
- [1. Rate Limiting (+2)](1-rate-limiting/SKILL.md)
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
gsd-complete-milestone
Archive completed milestone and prepare for next version
gsd-reapply-patches
Reapply local modifications after a GSD update
gsd-verify-work
Validate built features through conversational UAT
gsd-thread
Manage persistent context threads for cross-session work
clinical-trial-protocol
Generate clinical trial protocols for medical devices or drugs through a modular, waypoint-based architecture with research-only and full protocol modes.
single-cell-rna-qc
Performs quality control on single-cell RNA-seq data (.h5ad or .h5 files) using scverse best practices with MAD-based filtering and comprehensive visualizations.
Didn't find tool you were looking for?