Skip to main content

OS Skills

OS Skills is a system management and DevOps skill library for AI Agents. It provides pre-built skills that enable Agents to perform common system administration and automation tasks.


Overview

OS Skills covers three main areas:

  • System Administration — user management, service control, package operations, filesystem tasks
  • Cloud Integration — cloud resource queries, instance management, network configuration
  • DevOps Automation — CI/CD pipeline management, container operations, deployment workflows

Installation

anolisa install os-skills

Quick Start

Once installed, OS Skills are available to any ANOLISA-compatible Agent runtime. The Agent can invoke skills via natural language:

> "Check disk usage on all mounted filesystems"
> "Restart the nginx service"
> "Show running containers and their resource usage"

Skill Categories

System Administration

SkillDescription
disk-usageCheck filesystem disk usage
service-ctlStart/stop/restart system services
process-mgmtList and manage processes
user-mgmtUser and group management
package-opsPackage install/remove/query

DevOps Automation

SkillDescription
container-opsDocker/Podman container management
log-analysisSearch and analyze system logs
network-diagNetwork diagnostics (ping, traceroute, port check)
cron-mgmtCron job management

Usage with Agent Runtimes

OS Skills integrates with cosh and other ANOLISA-compatible runtimes automatically. Skills are discovered at startup and made available to the Agent's tool inventory.

# Verify skills are loaded
anolisa status os-skills

Configuration

Configuration file: ~/.config/os-skills/config.toml

[skills]
# Enabled skill categories
enabled = ["system", "devops"]

[safety]
# Require confirmation for destructive operations
confirm_destructive = true

See Also