ワンクリックで
file-operation
Use when reading, statting, listing, or tailing local files for SysGuard diagnostics without modifying filesystem contents.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Use when reading, statting, listing, or tailing local files for SysGuard diagnostics without modifying filesystem contents.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Use when creating structured incident alerts from SysGuard findings, health reports, log analysis, remediation failures, or operational events.
Use when checking database connectivity, running read-only diagnostic SQL, validating DSNs, or collecting small database health evidence through SysGuard.
Use when checking host health, service health, CPU, memory, disk, network status, or determining whether SysGuard should treat a system as unhealthy.
Use when analyzing operational logs, filtering errors or warnings, summarizing incidents from log files, or finding relevant lines in SysGuard-managed logs.
Use when collecting structured CPU, memory, disk, network, service, or health-score metrics from SysGuard for dashboards or reports.
Use when diagnosing DNS, TCP connectivity, ping reachability, network interfaces, service ports, or network-related SysGuard incidents.
| name | file-operation |
| description | Use when reading, statting, listing, or tailing local files for SysGuard diagnostics without modifying filesystem contents. |
Use this skill for safe local file inspection during diagnostics.
The Go implementation is registered by RegisterCoreSkills and invoked as "file-operation":
registry.Execute(ctx, "file-operation", &skills.SkillInput{Params: map[string]interface{}{
"operation": "tail",
"path": "/var/log/syslog",
"lines": 100,
}})
Supported operations are read, stat, list, and tail.
stat to confirm path type and size before reading large files.tail for logs and potentially large files.list for directory inspection.log-analysis when keyword filtering is needed.This skill is read-only. Do not create, overwrite, rename, chmod, or delete files through this skill.