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

auto-updates自动更新

Agent Skill

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

总安装

343

周安装

14

GitHub Stars

4

下载量

110
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:auto-updates(自动更新)
来源仓库:https://github.com/mikr13/secure-server-setup-skills
仓库路径:skills/auto-updates
安装命令:
npx skills add https://github.com/mikr13/secure-server-setup-skills --skill auto-updates
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/mikr13/secure-server-setup-skills --skill auto-updates

简介

auto-updates 用于在 Ubuntu/Debian 系统的 VPS 上启用自动安全更新,防止已知漏洞被利用。

  • 它配置 unattended-upgrades 服务实现无人值守补丁安装,并支持按计划重启以应用关键更新。
  • 可显著降低服务器被攻击的风险,特别适用于对外暴露的服务环境。
  • 使用前应评估自动重启对业务的影响,并建议在测试环境验证后再部署到生产系统。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Auto Updates Skill

Enable automatic security updates on VPS servers to ensure systems are patched against known vulnerabilities.

What This Skill Does

This skill helps AI agents configure automatic security updates on Ubuntu/Debian-based VPS servers. Every piece of software has vulnerabilities - patches fix them. If you're not patching, you're running known-vulnerable software that attackers have pre-built exploits for.

Key capabilities:

  • Update package lists and upgrade installed packages
  • Configure unattended-upgrades for automatic security patches
  • Set up automatic reboot schedules when required
  • Verify update configuration and status

When to Use

Use this skill when you need to:

  • Set up a new VPS server with automatic updates
  • Harden an existing server against known vulnerabilities
  • Ensure compliance with security patching requirements
  • Reduce manual maintenance overhead
  • Fix security audit findings related to outdated packages

Critical understanding: A server that's been up for 400 days isn't impressive - it's concerning. Regular updates and reboots are essential for security.

Prerequisites

  • Root or sudo access to the server
  • Ubuntu or Debian-based Linux distribution
  • Internet connectivity for package downloads
  • SSH access to the server

Installation & Configuration

Step 1: Update System Packages

First, update the package list and upgrade all installed packages:

sudo apt update && sudo apt upgrade -y

What this does:

  • apt update - Refreshes the package index from repositories
  • apt upgrade -y - Installs available updates without prompting

Step 2: Install Unattended Upgrades

Install the unattended-upgrades package:

sudo apt install unattended-upgrades -y

Step 3: Configure Unattended Upgrades

Enable automatic updates using the configuration tool:

sudo dpkg-reconfigure unattended-upgrades

Select "Yes" when prompted to enable automatic updates.

Alternative manual configuration:

Edit /etc/apt/apt.conf.d/50unattended-upgrades to customize:

sudo nano /etc/apt/apt.conf.d/50unattended-upgrades

Key settings to review:

  • Unattended-Upgrade::Allowed-Origins - Which updates to install
  • Unattended-Upgrade::Automatic-Reboot - Auto-reboot if required (default: false)
  • Unattended-Upgrade::Automatic-Reboot-Time - When to reboot (e.g., "02:00")
  • Unattended-Upgrade::Remove-Unused-Dependencies - Clean up old packages

Step 4: Verify Configuration

Check that unattended-upgrades is active:

sudo systemctl status unattended-upgrades

View the automatic upgrade log:

sudo cat /var/log/unattended-upgrades/unattended-upgrades.log

Configuration Options

Automatic Reboot Settings

To enable automatic reboots when kernel updates require them, edit /etc/apt/apt.conf.d/50unattended-upgrades:

Unattended-Upgrade::Automatic-Reboot "true";
Unattended-Upgrade::Automatic-Reboot-Time "02:00";

Update Frequency

The default update frequency is configured in /etc/apt/apt.conf.d/20auto-upgrades:

APT::Periodic::Update-Package-Lists "1";
APT::Periodic::Unattended-Upgrade "1";
APT::Periodic::Download-Upgradeable-Packages "1";
APT::Periodic::AutocleanInterval "7";

Testing

Perform a dry run to see what would be updated:

sudo unattended-upgrade --dry-run --debug

Manually trigger an update cycle:

sudo unattended-upgrade --debug

Troubleshooting

Updates Not Running

Check the systemd timer status:

sudo systemctl status apt-daily.timer
sudo systemctl status apt-daily-upgrade.timer

Enable timers if disabled:

sudo systemctl enable apt-daily.timer
sudo systemctl enable apt-daily-upgrade.timer

Check Logs

View recent update activity:

sudo journalctl -u unattended-upgrades

Held Packages

Some packages may be held back. List them:

apt-mark showhold

Unhold if safe:

sudo apt-mark unhold <package-name>

Security Best Practices

  1. Enable automatic security updates - Don't wait for manual intervention
  2. Monitor update logs - Regularly review /var/log/unattended-upgrades/
  3. Plan for reboots - Some updates require system restart
  4. Test in staging - For production systems, test updates in a staging environment first
  5. Set up monitoring - Alert on failed updates or long uptime without reboots

Common Mistakes to Avoid

  • ❌ Disabling updates because "they might break something"
  • ❌ Not monitoring update logs for failures
  • ❌ Ignoring reboot notifications for kernel updates
  • ❌ Holding back security packages indefinitely

Additional Resources

See references/apt-config.md for detailed APT configuration options.

See scripts/setup-auto-updates.sh for automated setup script.

Related Skills

  • ssh-hardening - Secure SSH configuration
  • firewall-configuration - Set up UFW firewall
  • fail2ban-setup - Configure brute-force protection

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.11%
按下载量换算41

Claude

30.48%
按下载量换算34

Cursor

18.55%
按下载量换算20

Gemini CLI

10.73%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills