ワンクリックで
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"
}
}