oimiragieo/agent-studio

system-health-check

Verifies repository baseline test passing state and available memory/GPU resources to ensure safe mission execution.

First seen Mar 22, 2026

Installation

$ npx skills add oimiragieo/agent-studio --skill system-health-check

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from oimiragieo/agent-studio · top by installs.

npx skills add oimiragieo/agent-studio

Browse all from oimiragieo/agent-studio

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 40
Default branch main
Open issues 501
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,524 B
  • docs SUMMARY.md 143 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 3 installs

SKILL.md

System Health Check (Pre-Flight)

Before accepting or starting a large architectural mission, you MUST run this health check to confirm you are not iterating on top of an already broken baseline.

1. Test Baseline Verification

Identify the primary test command for this workspace. Use the command matching the ecosystem:

  • Node.js: npm run test or pnpm test:all
  • Rust: cargo test
  • Python: pytest

Rule: If the tests FAIL, immediately halt your mission and inform the user. Do not proceed until the existing codebase compiles and tests pass.

2. Resource Verification

Ensure the host machine has adequate capacity to compile your work or run complex LLMs.

Windows PowerShell Examples: Check available memory and CPU cores:

systeminfo | findstr /C:"Total Physical Memory" /C:"Available Physical Memory"
wmic cpu get NumberOfCores,NumberOfLogicalProcessors /format:list

3. Hardware Accelerators (Optional)

If your mission explicitly governs a machine learning or GPU-heavy task, check for an NVIDIA GPU via:

nvidia-smi --query-gpu=name,memory.total,memory.free --format=csv,noheader

If resources look extremely constrained (e.g., <2GB Free RAM), halt and warn the user before proceeding to file modifications.