Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/diegosouzapw/awesome-omni-skill --skill astmコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Token-efficient tracking for AI orchestration. CLI-first for status updates (~50 tokens), agent fallback for complex ops (~1KB). Use when: updating task status, querying blockers, creating progress files, validating phases.
AshAi extension guidelines for integrating AI capabilities with Ash Framework. Use when implementing vectorization/embeddings, exposing Ash actions as LLM tools, creating prompt-backed actions, or setting up MCP servers. Covers semantic search, LangChain integration, and structured outputs.
This skill should be used when solving hard questions, complex architectural problems, or debugging issues that benefit from GPT-5 Pro or GPT-5.1 thinking models with large file context. Use when standard Claude analysis needs deeper reasoning or extended context windows.
SKILL.md を表示中
SOC 職業分類に基づく
| name | astm |
| version | 1.0.0 |
| category | engineering |
| description | ASTM Standards Specialist |
American Society for Testing and Materials (ASTM) standards for material properties and testing methods.
Version: 1.0.0 Created: 2026-01-12 Category: SME / Codes & Standards
ASTM standards define the specific properties of materials (steel, plastic, rubber) and the exact methods used to test them. They are referenced by almost all other design codes (API, DNV, ASME).
ASTM specifications often have multiple Grades (strength levels) and Classes (heat treatment/processing).
Critical for offshore/subsea applications. Ensures material is ductile at operating temperature.
def select_bolt_grade(temperature_c):
"""
Suggest ASTM bolt grade based on service temperature.
"""
if temperature_c < -40:
return "ASTM A320 Grade L7 (Low Temp)"
elif temperature_c > 400:
return "ASTM A193 Grade B16 (High Temp)"
else:
return "ASTM A193 Grade B7 (Standard)"
/mnt/ace/O&G-Standards/ASTM/