
environment-specific-bash-mastery
by Sounder25
Operational capabilities for high-leverage AI coding agents. Features deterministic execution, 100% tested safety gates, impasse detection, and adversarial review. Includes 'Gold Standard' meta-skills like Pre-Action Guard and Failure Postmortem to prevent loops and data loss.
SKILL.md
name: Environment-Specific Bash Mastery description: Generate optimized scripts that utilize the specific hardware (cores, GPU, OS) of the execution environment. version: 1.0.0 author: Antigravity Skills Library created: 2026-01-16 leverage_score: 4/5
SKILL-013: Environment-Specific Bash Mastery
Overview
Executes "Hardware-Aware Execution" by profiling the host machine (CPU cores, RAM availability, OS Version, GPU presence) to generate execution scripts that maximize performance. No more single-threaded scripts on a 12-core beast.
Trigger Phrases
optimize script executionget system profilerun with max performancegenerate hardware aware script
Inputs
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
--output-dir | string | No | .env | Directory to save profile |
Outputs
1. SYSTEM_PROFILE.json
Detailed hardware specs:
{
"os": "Microsoft Windows 10.0.22631",
"cpu": {
"name": "AMD Ryzen 9 7900X 12-Core Processor",
"cores": 12,
"logical_processors": 24
},
"memory": {
"total_gb": 64,
"free_gb": 32
},
"flags": {
"has_cuda": true,
"has_avx2": true,
"is_wsl": false
}
}
2. OPTIMIZED_FLAGS.env
Environment variables ready to be sourced:
export MAKE_JOBS=24
export OMP_NUM_THREADS=24
export NODE_OPTIONS="--max-old-space-size=60000"
export PYTHON_MULTIPROCESSING=1
Preconditions
- PowerShell access to WMI/CIM or system commands.
Implementation
Script: detect_env.ps1
- Queries WMI (Win32_Processor, Win32_OperatingSystem) to get raw stats.
- Detects Capabilities: Checks for
nvidia-smito infer CUDA. - Calculates Optimal Settings:
- Compile Jobs (
-j): Logical Cores. - Node Memory: 90% of Total RAM.
- Compile Jobs (
- Outputs JSON & ENV profiles.
Use Cases
- High Performance: Writing a Python script that uses
multiprocessingto crunch data, utilizing all 12 cores of "The Beast". - System Hardening: Generating backup scripts that know exactly which drive is the encrypted local backup based on volume labels.
スコア
総合スコア
リポジトリの品質指標に基づく評価
SKILL.mdファイルが含まれている
ライセンスが設定されている
100文字以上の説明がある
GitHub Stars 100以上
3ヶ月以内に更新がある
10回以上フォークされている
オープンIssueが50未満
プログラミング言語が設定されている
1つ以上のタグが設定されている
レビュー
レビュー機能は近日公開予定です