skills

api_version: v1

install
source · Clone the upstream repo
git clone https://github.com/cbwinslow/cloudcurio-monorepo-new
manifest: skills/monitor_system.skill.yaml
source content

api_version: v1 kind: Skill metadata: name: monitor_system version: 1.0.0 description: Monitor system health and resources type: command tags: [system, monitoring, health]

spec: command: /monitor

parameters: - name: target type: string description: What to monitor (cpu, memory, disk, processes, all) required: false default: "all"

- name: duration
  type: integer
  description: Monitoring duration in seconds
  required: false
  default: 10

- name: alert_threshold
  type: integer
  description: Alert threshold percentage
  required: false
  default: 80

agents: - system_monitor

examples: - command: '/monitor' description: "Monitor all system resources for 10 seconds" expected_output: "System health report"

- command: '/monitor target="cpu" duration=30 alert_threshold=90'
  description: "Monitor CPU for 30 seconds with 90% alert threshold"
  expected_output: "CPU monitoring report with alerts"

permissions: - system_info

config: timeout: 60 max_retries: 1