system-info

system-info is a skill for Claude Code, Codex from Daisybastioned440/lite-research-agents. It costs 38 tokens per session (1,644 once invoked), scanned A, a copy of system-info, MIT.

A tool for checking a computer's processor, memory, storage, graphics hardware, and available acceleration support.

In plain words
What is it for?
Use it to choose settings such as batch size, worker count, number format, and dataset size for training or large data-processing jobs.
Why use it?
It shows what computing resources are available before a large experiment starts, helping avoid slow runs, crashes, or unsuitable settings.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: positional $N argument.

Good fit Use it to choose settings such as batch size, worker count, number format, and dataset size for training or large data-processing jobs.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/daisybastioned440/lite-research-agents/system-info
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Daisybastioned440/lite-research-agents --skill system-info
Clone the repo
git clone --depth 1 https://github.com/Daisybastioned440/lite-research-agents

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for system-info

README.md
[![agentmods](https://agentmods.dev/badge/skills/daisybastioned440/lite-research-agents/system-info/github.svg)](https://agentmods.dev/skills/daisybastioned440/lite-research-agents/system-info)
Your own site
<a href="https://agentmods.dev/skills/daisybastioned440/lite-research-agents/system-info"><img src="https://agentmods.dev/badge/skills/daisybastioned440/lite-research-agents/system-info/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for system-info

Your own site · 80×15
<a href="https://agentmods.dev/skills/daisybastioned440/lite-research-agents/system-info"><img src="https://agentmods.dev/badge/skills/daisybastioned440/lite-research-agents/system-info.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 38 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,644 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 100% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00038 $0.01644
Opus 5 $0.00019 $0.00822
Sonnet 5 $0.00008 $0.00329
Haiku 4.5 $0.00004 $0.00164

Measured 8d ago against content hash 4457f5ed8144, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

system-info scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

100% identical to system-info — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

skills/system-info/SKILL.md · 214 lines

How it starts

The opening of the file, as written. The whole thing — 214 lines — stays where its author put it; the contents beside it link to each section on GitHub.

System Info

Gather a complete picture of available compute before designing or launching experiments. After collecting the data, produce a structured profile and write it to memory/system-profile.md in the project sandbox.


When to Use

  • At the start of any project involving training, fine-tuning, or large-scale data processing
  • When a training run is unexpectedly slow or crashes (re-run to check resource pressure)
  • Before deciding batch size, number of workers, mixed precision settings, or dataset size

Step 1 — Detect OS

uname -s
  • Linux → use Linux commands below
  • Darwin → use macOS commands below
  • Windows → use PowerShell commands below (limited support)

Step 2 — CPU

Linux:

lscpu | grep -E "Model name|Socket|Core|Thread|MHz"
nproc

macOS:

sysctl -n machdep.cpu.brand_string
sysctl -n hw.physicalcpu hw.logicalcpu

Record: model name, physical cores, logical cores (threads).


Step 3 — RAM

Linux:

free -h

macOS:

sysctl -n hw.memsize | awk '{print $1/1024/1024/1024 " GB"}'
vm_stat | grep -E "Pages free|Pages active|Pages inactive|Pages wired"

Record: total RAM, available RAM. On macOS, note that vm_stat pages are 16KB each.


Step 4 — Disk

Linux / macOS:

df -h .

Run from within the project sandbox_root to see available space on the relevant partition.

Record: total disk, used, available on the partition where the project lives.


Step 5 — GPU Detection

Check for NVIDIA GPU (Linux / Windows WSL)

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

If nvidia-smi is not found, no NVIDIA GPU is available.

Also check CUDA availability via Python:

python3 -c "import torch; print('CUDA:', torch.cuda.is_available()); print('Device count:', torch.cuda.device_count()); [print(f'  GPU {i}:', torch.cuda.get_device_name(i)) for i in range(torch.cuda.device_count())]"

Read the full file on GitHub · 214 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 214 lines · 38 tokens per session scan A 4457f5ed8144

Subscribe to this mod's changes

system-info is a skill published in the GitHub repository Daisybastioned440/lite-research-agents (2 stars, last pushed 2d ago), licensed MIT. It adds 38 tokens to every session and 1,644 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to system-info, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories

system-info

Probe system resources — CPU, RAM, disk, GPU/CUDA/MPS — and translate findings into experiment design recommendations. Run this at the start of any compute-intensive project.

frankaging/lite-research-agents · 38 tokens

ai-medical-content-compliance-review

A risk review assistant for checking provided medical content and producing findings, recommendations, and reusable review materials.

skillsaiagent/aiskills · 74 tokens

ai-medical-literature-evidence-map

A business diagnosis assistant for turning provided healthcare or other source material into summaries, conclusions, action suggestions, and reusable deliverables.

skillsaiagent/aiskills · 78 tokens

arxiv-watcher

Search and summarize papers from ArXiv. Use when the user asks for the latest research, specific topics on ArXiv, or a daily summary of AI papers.

frankaging/lite-research-agents · 39 tokens

tooluniverse-phylogenetics

Phylogenetic analysis — de novo multiple sequence alignment (Clustal Omega/MUSCLE/MAFFT via EBImsaalign) and neighbour-joining/UPGMA tree building (EBIbuildphylogenetictree) from your own sequences, plus tree analysis, treeness, saturation (PhyKIT), parsimony-informative sites, alignment gap analysis, DVMC…

mims-harvard/ToolUniverse · 155 tokens

tooluniverse-cell-line-profiling

Cancer cell-line selection and profiling for experimental model choice. Cross-references DepMap, Cellosaurus, COSMIC, PharmacoDB to deliver identity verification, mutation/CNV profile, gene dependencies, drug sensitivities, and druggable targets. Use to answer 'which cell line should I use for studying gene X?' or 'is…

mims-harvard/ToolUniverse · 100 tokens