Token导航 LogoToken导航TokenDH.com
开发只读github未标认证来源可访问许可证需确认审计异常

using-devops-skills使用 DevOps 技能

Agent Skill

用于辅助云资源、部署、容器、基础设施和运维自动化任务。它适合让 Agent 检查配置、整理部署步骤、分析资源状态、生成排障思路或辅助云服务接入。使用时需要明确目标环境、账号权限、区域和资源组,区分本地测试与生产操作;涉及删除资源、重启服务、修改网络或权限配置时,应先确认影响范围。

总安装

220

周安装

9

GitHub Stars

7

下载量

71
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/lgbarn/devops-skills --skill using-devops-skills

简介

用于辅助云资源、部署、容器和基础设施任务。

  • 适合检查配置、整理部署步骤、分析资源状态或生成排障思路。
  • 使用时需明确目标环境、账号权限和资源组,区分测试与生产操作。
  • 涉及删除资源或修改网络配置时应先确认影响范围。
  • using-devops-skills 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

IF A SKILL APPLIES TO YOUR TASK, YOU DO NOT HAVE A CHOICE. YOU MUST USE IT.

This is not negotiable. This is not optional. You cannot rationalize your way out of this.

This plugin supports the FULL DevOps lifecycle - Development AND Operations.

Core Principles

For Development

  1. Test First - Write tests before implementation (TDD)
  2. Debug Systematically - Follow evidence, not hunches
  3. Review Thoroughly - Code review before merge
  4. Plan Before Coding - Design before implementation

For Operations

  1. Never Auto-Apply - All terraform/tofu apply commands require explicit user approval
  2. Explain Each Step - Guide the user through what will happen before doing it
  3. Escalate Conflicts - When uncertain, ask the user rather than guessing
  4. Fewer Mistakes - Safety over speed, always

How to Access Skills

In Claude Code: Use the Skill tool. When you invoke a skill, its content is loaded and presented to you—follow it directly. Never use the Read tool on skill files.

The Rule

Invoke relevant or requested skills BEFORE any response or action. Even a 1% chance a skill might apply means you should invoke the skill.

digraph skill_flow {
    "User message received" [shape=doublecircle];
    "Might any skill apply?" [shape=diamond];
    "Invoke Skill tool" [shape=box];
    "Announce: 'Using [skill] to [purpose]'" [shape=box];
    "Has checklist?" [shape=diamond];
    "Create TodoWrite todo per item" [shape=box];
    "Follow skill exactly" [shape=box];
    "Respond (including clarifications)" [shape=doublecircle];

    "User message received" -> "Might any skill apply?";
    "Might any skill apply?" -> "Invoke Skill tool" [label="yes, even 1%"];
    "Might any skill apply?" -> "Respond (including clarifications)" [label="definitely not"];
    "Invoke Skill tool" -> "Announce: 'Using [skill] to [purpose]'";
    "Announce: 'Using [skill] to [purpose]'" -> "Has checklist?";
    "Has checklist?" -> "Create TodoWrite todo per item" [label="yes"];
    "Has checklist?" -> "Follow skill exactly" [label="no"];
    "Create TodoWrite todo per item" -> "Follow skill exactly";
}

Available Skills

Development Skills

TaskSkillWhen to Use
Writing new codebrainstormingBefore any creative work
Implementing featurestest-driven-developmentWriting tests first, then code
Fixing bugssystematic-debuggingFollow evidence to root cause
Code reviewrequesting-code-reviewAfter completing implementation
Receiving feedbackreceiving-code-reviewWhen getting review comments
Planning implementationwriting-plansMulti-step task design
Executing plansexecuting-plansFollowing implementation plans
Parallel workdispatching-parallel-agentsMultiple independent tasks
Multi-agent executionsubagent-driven-developmentComplex parallel implementation
Isolated workusing-git-worktreesFeature isolation
Completing workfinishing-a-development-branchReady to merge
Verificationverification-before-completionBefore claiming "done"

Operations Skills

TaskSkillWhen to Use
terraform planterraform-plan-reviewBefore any apply
State surgeryterraform-state-operationsmv, rm, import operations
Drift detectionterraform-drift-detectionChecking for out-of-band changes
AWS operationsaws-profile-managementBefore any AWS/Terraform work
Provider upgradesprovider-upgrade-analysisAnalyzing upgrade impact
Generate docsauto-documentationCreating READMEs, runbooks
Past patternshistorical-pattern-analysisLearning from git history

Commands

CommandPurpose
/planRun terraform plan with parallel analysis
/driftDetect infrastructure drift
/review-infraFull IaC code review
/upgrade-checkProvider upgrade analysis
/generate-docsAuto-generate documentation
/env-compareCompare environments

Skill Priority

When multiple skills could apply, use this order:

  1. Process skills first (brainstorming, debugging) - these determine HOW to approach the task
  2. Implementation skills second (TDD, code review) - these guide execution
  3. Infrastructure skills when working with IaC

Examples:

  • "Let's build X" → brainstorming first, then TDD
  • "Fix this bug" → systematic-debugging first
  • "Deploy this change" → terraform-plan-review, then aws-profile-management

Red Flags - STOP if You Think These

Development Red Flags

ThoughtReality
"This is just a simple fix"Simple fixes can have complex impacts. Use skills.
"I'll add tests later"Tests first. Always. Use TDD skill.
"I know how to debug this"Follow systematic-debugging anyway.
"Let me just explore first"Skills tell you HOW to explore. Check first.

Operations Red Flags

ThoughtReality
"I'll just run a quick apply"NEVER. Use /plan first, get approval.
"This is a simple change"Simple changes can cascade. Use the skill.
"I can fix it if it breaks"Infrastructure mistakes can be irreversible.
"This is just a dev environment"Treat all environments with same rigor.

Dangerous Commands - ALWAYS BLOCKED

These commands are intercepted by safety hooks:

  • terraform apply / tofu apply (without explicit approval flow)
  • terraform destroy / tofu destroy
  • terraform state rm
  • terraform force-unlock
  • Any command with -auto-approve flag

Parallel Agent Workflows

For complex tasks, dispatch multiple agents in parallel:

Infrastructure Analysis

/plan command →
  ├─→ Task(terraform-plan-analyzer) → Risk Analysis
  ├─→ Task(security-reviewer) → Security Analysis
  └─→ Task(historical-pattern-analyzer) → Pattern Detection

Development Tasks

Multiple test failures →
  ├─→ Task(fix test file A)
  ├─→ Task(fix test file B)
  └─→ Task(fix test file C)

Memory System

DevOps-skills maintains memory across sessions for learning from history.

User Instructions

Instructions say WHAT, not HOW. "Add X" or "Fix Y" doesn't mean skip workflows.

The user's #1 goal is fewer mistakes. Honor that above all else - in BOTH development AND operations.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.39%
按下载量换算26

Claude

33.16%
按下载量换算24

Cursor

17.3%
按下载量换算12

Gemini CLI

9.88%
按下载量换算7

安全审计

Gen Agent Trust Hub

未通过

Socket

未通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills