marine-safety
# Marine Safety & Integrity Specialist
What this skill does
# Marine Safety & Integrity Specialist
> Integrity management, life extension, and safety assessment for offshore assets.
**Version:** 1.0.0
**Created:** 2026-01-13
**Category:** SME / Safety & Integrity
## Overview
This skill covers the assessment of aging offshore assets, focusing on structural integrity, corrosion management, and life extension. It synthesizes knowledge from legacy projects like "Horn Mountain TTR VIV Analysis" and "Marlin TTR Life Extension".
## Core Capabilities
### 1. Life Extension Assessment (LEX)
- **Gap Analysis**: Comparing original design codes vs. current standards (API 2INT-MET).
- **Fatigue Re-analysis**: Using updated metocean data to calculate remaining fatigue life.
- **Risk-Based Inspection (RBI)**: Prioritizing inspections based on failure probability and consequence.
### 2. Corrosion Management
- **Corrosion Rate Modelling**: CO2/H2S corrosion prediction (Norsok M-506).
- **Wall Thickness Checks**: Evaluating hoop stress and collapse/burst pressure with degraded wall thickness.
- **Anode Retrofit**: Designing sacrificial anode sleds for life extension.
### 3. Fitness-For-Service (FFS)
- **API 579 / BS 7910**: Assessing defects (cracks, dents, corrosion) to determine if equipment is safe to operate.
- **VIV Assessment**: Vortex Induced Vibration fatigue analysis for risers and conductors.
## When to Use
### Use This Skill When:
- Evaluating an asset for operation beyond its original design life.
- Assessing the safety of a corroded pipeline or vessel.
- Planning inspection campaigns (RBI).
- Reviewing "Fitness for Service" reports.
### Do Not Use This Skill When:
- Designing a *new* asset (use Structural Analysis or DNV Standards).
- Calculating basic hydrostatics (use Marine Engineering).
## Knowledge Areas
### 1. Life Extension Workflow
1. **Data Gathering**: Collect original design reports, inspection logs, and production history.
2. **Condition Assessment**: Evaluate current physical state (corrosion, marine growth).
3. **Re-Analysis**: Update models with current weight, metocean, and soil data.
4. **Remediation**: Propose clamps, strengthening, or derating.
### 2. Defect Assessment
Cracks or metal loss are evaluated using "Failure Assessment Diagrams" (FAD) to determine if the combination of stress and defect size is critical.
## Code & Data Patterns
### Corrosion Derating Check
```python
def check_wall_thickness(nominal_wt, corrosion_rate, years, min_required_wt):
"""
Calculate remaining wall thickness and check against minimum required.
"""
loss = corrosion_rate * years
current_wt = nominal_wt - loss
if current_wt < min_required_wt:
return False, f"FAILED: Current WT {current_wt:.2f}mm < Min {min_required_wt:.2f}mm"
remaining_life = (current_wt - min_required_wt) / corrosion_rate
return True, f"PASS: {remaining_life:.1f} years remaining"
```
## Best Practices
- **Conservatism**: When data is missing (e.g., actual corrosion rates), use conservative estimates from standards (e.g., Norsok M-506).
- **Trend Analysis**: Use historical inspection data (UT/ILI) to validate corrosion models.
## Resources
- **Legacy Projects**: `/mnt/ace/docs/disciplines/integrity_management/projects/`
- `31519_fmog_marlin_ttr_life_extension`
- `0185_ecs_ffs_engineering`
Related in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.