一键导入
configuration-management-sysadmin
Configuration management, Infrastructure as Code, and automation with Ansible, Puppet, Chef
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Configuration management, Infrastructure as Code, and automation with Ansible, Puppet, Chef
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
3D computer vision, depth estimation, and 3D reconstruction
Adversarial machine learning, robustness, and security in ML
Expert guidance on agentic AI systems, autonomous agents, and AI orchestration. Use for: building agentic AI systems, tool orchestration, memory systems, planning and reasoning, multi-step workflows, feedback loops, evaluation frameworks, ReAct patterns, and building sophisticated AI pipelines.
Algebraic topology, homotopy, homology, and topological invariants
Design and analysis of analog electronic circuits and systems
Expert assistant for working with Anthropic's Claude API and Claude-powered applications. Use this skill whenever you need help with: API integration, message formatting, tool use implementation, context window management, Constitutional AI principles, prompt engineering, Claude models (Claude 3.5, Claude 3), vision capabilities, computer use, or building production systems with Claude. Also use for understanding Anthropic's safety approaches, token optimization, or any Claude-related development task.
| name | configuration-management-sysadmin |
| description | Configuration management, Infrastructure as Code, and automation with Ansible, Puppet, Chef |
| license | MIT |
| compatibility | opencode |
| metadata | {"audience":"devops","category":"systems-administration"} |
When managing infrastructure at scale, automating deployments, or ensuring consistent configurations.
- name: Install nginx
hosts: webservers
become: yes
tasks:
- name: Install nginx
apt:
name: nginx
state: present
package { 'nginx':
ensure => installed,
}
service { 'nginx':
ensure => running,
require => Package['nginx'],
}
package 'nginx' do
action :install
end
service 'nginx' do
action [:start, :enable]
end
resource "aws_instance" "web" {
ami = "ami-12345678"
instance_type = "t2.micro"
tags = {
Name = "WebServer"
}
}