← Back to Skills Marketplace
afine907

Linux Ops

by afine907 · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
45
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install linux-ops
Description
Linux 运维速查。当需要:(1) 进程管理 (2) 日志分析 (3) 网络诊断 (4) 性能监控 (5) 用户管理时使用。
README (SKILL.md)

Linux Operations

Linux 运维命令速查手册。

快速参考

进程管理

ps aux | grep nginx          # 查找进程
kill -9 PID                  # 终止进程
systemctl status nginx       # 服务状态
journalctl -u nginx -f       # 服务日志

系统资源

top / htop                   # CPU/内存
free -h                      # 内存
df -h                        # 磁盘
du -sh /var/log              # 目录大小

网络

ip addr                      # 网络接口
netstat -tuln                # 监听端口
ss -tun                      # 连接状态
ping -c 5 host               # 测试连通
curl -v https://example.com  # HTTP 测试

日志

tail -f /var/log/syslog      # 实时查看
grep "error" /var/log/syslog # 搜索日志
journalctl -u nginx --since "1 hour ago"

文件查找

find /path -name "*.py"      # 按名称查找
find / -size +100M           # 按大小查找
grep -r "pattern" /path      # 递归搜索

详细参考

常用命令

查找大文件

find / -type f -size +100M 2>/dev/null
du -ah / | sort -rh | head -20

统计访问

awk '{print $1}' access.log | sort | uniq -c | sort -rn | head
awk '{print $9}' access.log | sort | uniq -c | sort -rn

排查端口占用

lsof -i :80
netstat -tlnp | grep 80

文档

Usage Guidance
This skill appears safe as a Linux command reference. Before installing, be aware that some listed commands can stop services, change firewall rules, capture network traffic, delete users, or grant sudo privileges if executed. Treat it as a cheat sheet and confirm any system-changing command before running it.
Capability Analysis
Type: OpenClaw Skill Name: linux-ops Version: 1.0.0 The 'linux-ops' skill bundle is a comprehensive reference guide for standard Linux system administration tasks, including process management, log analysis, and network diagnostics. It contains only documentation and common shell commands (e.g., in SKILL.md and references/*.md) without any evidence of malicious intent, obfuscation, or data exfiltration.
Capability Assessment
Purpose & Capability
The skill is an instruction-only Linux operations reference, and the listed commands match its stated scope of process, logs, network, performance, and user management.
Instruction Scope
The artifacts provide command examples, including process termination, service control, firewall changes, and user/permission management; they do not instruct hidden or automatic execution.
Install Mechanism
No install spec, code files, required binaries, environment variables, or credentials are present.
Credentials
Broad local inspection commands such as reading logs, finding files under /, checking network state, and packet capture are expected for Linux operations but can expose sensitive system information if used carelessly.
Persistence & Privilege
The reference includes privileged administration examples such as enabling services and granting sudo rights, but these are documented examples rather than persistent behavior by the skill itself.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install linux-ops
  3. After installation, invoke the skill by name or use /linux-ops
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release
Metadata
Slug linux-ops
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Linux Ops?

Linux 运维速查。当需要:(1) 进程管理 (2) 日志分析 (3) 网络诊断 (4) 性能监控 (5) 用户管理时使用。 It is an AI Agent Skill for Claude Code / OpenClaw, with 45 downloads so far.

How do I install Linux Ops?

Run "/install linux-ops" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Linux Ops free?

Yes, Linux Ops is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Linux Ops support?

Linux Ops is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Linux Ops?

It is built and maintained by afine907 (@afine907); the current version is v1.0.0.

💬 Comments