Agent Skills: System Info Skill

Get system information using executable scripts

UncategorizedID: agno-agi/agno/system-info

Repository

agno-agiLicense: Apache-2.0
41,0635,611

Install this agent skill to your local

pnpm dlx add-skill https://github.com/agno-agi/agno/tree/HEAD/cookbook/05_agent_os/23_skills/sample_skills/system-info

Skill Files

Browse the full folder contents for system-info.

Download Skill

Loading file tree…

cookbook/05_agent_os/23_skills/sample_skills/system-info/SKILL.md

Skill Metadata

Name
system-info
Description
Inspect the host operating system, Python runtime, and local files

System Info Skill

Use this skill when the user asks about the host running the AgentOS process or needs a directory inventory from that host.

Available scripts

  • get_system_info.py returns the hostname, operating system, architecture, Python version and executable, processor, and current UTC time.
  • list_directory.py lists the direct children of a directory. It accepts one optional path argument and defaults to the skill directory.

Execution

Load these instructions before choosing a script. Execute a script through the skill tool and inspect its structured result:

get_skill_script(
    skill_name="system-info",
    script_path="get_system_info.py",
    execute=True,
)

To list a directory:

get_skill_script(
    skill_name="system-info",
    script_path="list_directory.py",
    execute=True,
    args=["."],
)

Only use data parsed from stdout when returncode is 0. If execution returns a nonzero code, report stderr or the JSON error instead of inferring the result.