Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计提醒

os-scripting操作系统脚本

Agent Skill

os-scripting 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,322

周安装

54

GitHub Stars

35,667

下载量

428
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:os-scripting(操作系统脚本)
来源仓库:https://github.com/sickn33/antigravity-awesome-skills
仓库路径:skills/os-scripting
安装命令:
npx skills add https://github.com/sickn33/antigravity-awesome-skills --skill os-scripting
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/sickn33/antigravity-awesome-skills --skill os-scripting

简介

os-scripting 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词或任务场景快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前建议确认权限范围和维护状态,注意是否会触发联网或文件读写操作。
  • 可结合来源仓库和原始 README 进一步核验具体用法和功能边界。

SKILL.md

OS/Shell Scripting Troubleshooting Workflow Bundle

Overview

Comprehensive workflow for operating system troubleshooting, shell scripting, and system administration across Linux, macOS, and Windows. This bundle orchestrates skills for debugging system issues, creating robust scripts, and automating administrative tasks.

When to Use This Workflow

Use this workflow when:

  • Debugging shell script errors
  • Creating production-ready bash scripts
  • Troubleshooting system issues
  • Automating system administration tasks
  • Managing processes and services
  • Configuring system resources

Workflow Phases

Phase 1: Environment Assessment

Skills to Invoke

  • bash-linux - Linux bash patterns
  • bash-pro - Professional bash scripting
  • bash-defensive-patterns - Defensive scripting

Actions

  1. Identify operating system and version
  2. Check available tools and commands
  3. Verify permissions and access
  4. Assess system resources
  5. Review logs and error messages

Diagnostic Commands

# System information
uname -a
cat /etc/os-release
hostnamectl

# Resource usage
top
htop
df -h
free -m

# Process information
ps aux
pgrep -f pattern
lsof -i :port

# Network status
netstat -tulpn
ss -tulpn
ip addr show

Copy-Paste Prompts

Use @bash-linux to diagnose system performance issues

Phase 2: Script Analysis

Skills to Invoke

  • bash-defensive-patterns - Defensive scripting
  • shellcheck-configuration - ShellCheck linting
  • bats-testing-patterns - Bats testing

Actions

  1. Run ShellCheck for linting
  2. Analyze script structure
  3. Identify potential issues
  4. Check error handling
  5. Verify variable usage

ShellCheck Usage

# Install ShellCheck
sudo apt install shellcheck  # Debian/Ubuntu
brew install shellcheck      # macOS

# Run ShellCheck
shellcheck script.sh
shellcheck -f gcc script.sh

# Fix common issues
# - Use quotes around variables
# - Check exit codes
# - Handle errors properly

Copy-Paste Prompts

Use @shellcheck-configuration to lint and fix shell scripts

Phase 3: Debugging

Skills to Invoke

  • systematic-debugging - Systematic debugging
  • debugger - Debugging specialist
  • error-detective - Error pattern detection

Actions

  1. Enable debug mode
  2. Add logging statements
  3. Trace execution flow
  4. Isolate failing sections
  5. Test components individually

Debug Techniques

# Enable debug mode
set -x  # Print commands
set -e  # Exit on error
set -u  # Exit on undefined variable
set -o pipefail  # Pipeline failure detection

# Add logging
log() {
    echo "[$(date '+%Y-%m-%d %H:%M:%S')] $*" >> /var/log/script.log
}

# Trap errors
trap 'echo "Error on line $LINENO"' ERR

# Test sections
bash -n script.sh  # Syntax check
bash -x script.sh  # Trace execution

Copy-Paste Prompts

Use @systematic-debugging to trace and fix shell script errors

Phase 4: Script Development

Skills to Invoke

  • bash-pro - Professional scripting
  • bash-defensive-patterns - Defensive patterns
  • linux-shell-scripting - Shell scripting

Actions

  1. Design script structure
  2. Implement functions
  3. Add error handling
  4. Include input validation
  5. Add help documentation

Script Template

#!/usr/bin/env bash
set -euo pipefail

# Constants
readonly SCRIPT_NAME=$(basename "$0")
readonly SCRIPT_DIR=$(cd "$(dirname "$0")" && pwd)

# Logging
log() {
    local level="$1"
    shift
    echo "[$(date '+%Y-%m-%d %H:%M:%S')] [$level] $*" >&2
}

info() { log "INFO" "$@"; }
warn() { log "WARN" "$@"; }
error() { log "ERROR" "$@"; exit 1; }

# Usage
usage() {
    cat <<EOF
Usage: $SCRIPT_NAME [OPTIONS]

Options:
    -h, --help      Show this help message
    -v, --verbose   Enable verbose output
    -d, --debug     Enable debug mode

Examples:
    $SCRIPT_NAME --verbose
    $SCRIPT_NAME -d
EOF
}

# Main function
main() {
    local verbose=false
    local debug=false

    while [[ $# -gt 0 ]]; do
        case "$1" in
            -h|--help)
                usage
                exit 0
                ;;
            -v|--verbose)
                verbose=true
                shift
                ;;
            -d|--debug)
                debug=true
                set -x
                shift
                ;;
            *)
                error "Unknown option: $1"
                ;;
        esac
    done

    info "Script started"
    # Your code here
    info "Script completed"
}

main "$@"

Copy-Paste Prompts

Use @bash-pro to create a production-ready backup script
Use @linux-shell-scripting to automate system maintenance tasks

Phase 5: Testing

Skills to Invoke

  • bats-testing-patterns - Bats testing framework
  • test-automator - Test automation

Actions

  1. Write Bats tests
  2. Test edge cases
  3. Test error conditions
  4. Verify expected outputs
  5. Run test suite

Bats Test Example

#!/usr/bin/env bats

@test "script returns success" {
    run ./script.sh
    [ "$status" -eq 0 ]
}

@test "script handles missing arguments" {
    run ./script.sh
    [ "$status" -ne 0 ]
    [ "$output" == *"Usage:"* ]
}

@test "script creates expected output" {
    run ./script.sh --output test.txt
    [ -f "test.txt" ]
}

Copy-Paste Prompts

Use @bats-testing-patterns to write tests for shell scripts

Phase 6: System Troubleshooting

Skills to Invoke

  • devops-troubleshooter - DevOps troubleshooting
  • incident-responder - Incident response
  • server-management - Server management

Actions

  1. Identify symptoms
  2. Check system logs
  3. Analyze resource usage
  4. Test connectivity
  5. Verify configurations
  6. Implement fixes

Troubleshooting Commands

# Check logs
journalctl -xe
tail -f /var/log/syslog
dmesg | tail

# Network troubleshooting
ping host
traceroute host
curl -v http://host
dig domain
nslookup domain

# Process troubleshooting
strace -p PID
lsof -p PID
iotop

# Disk troubleshooting
du -sh /*
find / -type f -size +100M
lsof | grep deleted

Copy-Paste Prompts

Use @devops-troubleshooter to diagnose server connectivity issues
Use @incident-responder to investigate system outage

Phase 7: Automation

Skills to Invoke

  • workflow-automation - Workflow automation
  • cicd-automation-workflow-automate - CI/CD automation
  • linux-shell-scripting - Shell scripting

Actions

  1. Identify automation opportunities
  2. Design automation workflows
  3. Implement scripts
  4. Schedule with cron/systemd
  5. Monitor automation health

Cron Examples

# Edit crontab
crontab -e

# Backup every day at 2 AM
0 2 * * * /path/to/backup.sh

# Clean logs weekly
0 3 * * 0 /path/to/cleanup.sh

# Monitor disk space hourly
0 * * * * /path/to/monitor.sh

Systemd Timer Example

# /etc/systemd/system/backup.timer
[Unit]
Description=Daily backup timer

[Timer]
OnCalendar=daily
Persistent=true

[Install]
WantedBy=timers.target

Copy-Paste Prompts

Use @workflow-automation to create automated system maintenance workflow

Common Troubleshooting Scenarios

High CPU Usage

top -bn1 | head -20
ps aux --sort=-%cpu | head -10
pidstat 1 5

Memory Issues

free -h
vmstat 1 10
cat /proc/meminfo

Disk Space

df -h
du -sh /* 2>/dev/null | sort -h
find / -type f -size +500M 2>/dev/null

Network Issues

ip addr show
ip route show
ss -tulpn
curl -v http://target

Service Failures

systemctl status service-name
journalctl -u service-name -f
systemctl restart service-name

Quality Gates

Before completing workflow, verify:

  • All scripts pass ShellCheck
  • Tests pass with Bats
  • Error handling implemented
  • Logging configured
  • Documentation complete
  • Automation scheduled

Related Workflow Bundles

  • development - Software development
  • cloud-devops - Cloud and DevOps
  • security-audit - Security testing
  • database - Database operations

Limitations

  • Use this skill only when the task clearly matches the scope described above.
  • Do not treat the output as a substitute for environment-specific validation, testing, or expert review.
  • Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.8%
按下载量换算145

Claude

30.71%
按下载量换算131

Cursor

16.68%
按下载量换算71

Gemini CLI

9.53%
按下载量换算41

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/sickn33/antigravity-awesome-skills --skill os-scripting 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills