用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/agno-agi/agno --skill system-info命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | system-info |
| description | Inspect the host operating system, Python runtime, and local files |
| license | MIT |
| metadata | {"version":"1.0.0","author":"agno"} |
Use this skill when the user asks about the host running the AgentOS process or needs a directory inventory from that host.
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.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.