orcaflex-environment-config-environment-sanity-checks
Sub-skill of orcaflex-environment-config: Environment Sanity Checks (+1).
Best use case
orcaflex-environment-config-environment-sanity-checks is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Sub-skill of orcaflex-environment-config: Environment Sanity Checks (+1).
Teams using orcaflex-environment-config-environment-sanity-checks should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/environment-sanity-checks/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How orcaflex-environment-config-environment-sanity-checks Compares
| Feature / Agent | orcaflex-environment-config-environment-sanity-checks | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Sub-skill of orcaflex-environment-config: Environment Sanity Checks (+1).
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# Environment Sanity Checks (+1)
## Environment Sanity Checks
| Parameter | Typical Range | Warning If |
|-----------|---------------|-----------|
| Water depth | 10-3000m | < 0 or > 4000m |
| Hs | 0.5-15m | > 20m or Hs > 0.6 * water_depth |
| Tp | 4-20s | < 3s or > 25s |
| JONSWAP gamma | 1.0-7.0 | < 1 or > 10 |
| Current speed (surface) | 0-3 m/s | > 4 m/s |
| Wind speed (10m ref) | 0-50 m/s | > 60 m/s |
| Seabed stiffness | 10-1000 kN/m/m2 | < 1 or > 10000 |
| Seabed friction | 0.1-1.0 | < 0 or > 2.0 |
## Cross-Validation
```python
def validate_environment(config):
"""Validate environment configuration against physical limits."""
issues = []
# Wave steepness check (DNV-RP-C205)
Hs = config["waves"]["significant_height"]
Tp = config["waves"]["peak_period"]
steepness = 2 * 3.14159 * Hs / (9.81 * Tp**2)
if steepness > 0.07:
*See sub-skills for full details.*Related Skills
OrcaFlex Specialist Skill
```yaml
orcaflex-reporting-fixture-proof-pattern
Build and extend fixture-backed OrcaFlex reporting proof paths in digitalmodel using stable metadata baselines, normalized HTML snapshots, and reusable reporting test helpers.
digitalmodel-orcawave-orcaflex-proof-workflows
Class-level digitalmodel OrcaWave/OrcaFlex readiness, semantic-proof, fixture-proof, and closeout workflows.
worktree-pre-push-bypass-for-tier1-checks
Handle workspace-hub integration-branch pushes from isolated git worktrees when the pre-push hook incorrectly assumes sibling tier-1 repos exist under the worktree path.
orcawave-orcaflex-readiness-audit
Audit the real readiness of digitalmodel OrcaWave/OrcaFlex spec-driven workflows by reconciling workspace-hub issues, source/tests, semantic-equivalence boundaries, and wiki synthesis gaps.
toml-section-scoping-config-debug
Diagnose TOML config errors caused by misplaced keys in table sections
portable-config-baseline-pattern
Extract machine-agnostic settings into portable template files while keeping machine-specific hooks and plugins separate
portable-baseline-configuration-pattern
Separate portable/universal config from machine-specific settings to enable safe template reuse across environments
portable-baseline-config-pattern
Separate machine-portable baseline config from environment-specific hooks and plugins
digitalmodel-orcawave-orcaflex-workflow
Current-state workflow for navigating and extending digitalmodel OrcaWave/OrcaFlex capabilities across code, tests, issues, queue tooling, and licensed-machine boundaries.
orcawave-orcaflex-semantic-proof-wave-closeout
Close out an OrcaWave/OrcaFlex semantic-proof wave after a PR merges, split unrelated CI blockers, and seed the next semantic-proof issue wave without duplicating existing issues.
large-parallel-planning-wave-environment-failure-handoff
Handle large pre-plan-review planning waves that succeed analytically but fail to persist artifacts due to quota exhaustion, sandbox write failures, or cancelled GitHub mutations.