Claude Code Plugins

Community-maintained marketplace

Feedback

devops-scripts-authoring

@JoernStoehler/msc-viterbo
0
0

Create or modify devops helper scripts in scripts/ or packages/*/scripts. Use for new wrappers, automation, or script style conventions.

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name devops-scripts-authoring
description Create or modify devops helper scripts in scripts/ or packages/*/scripts. Use for new wrappers, automation, or script style conventions.

Devops Scripts Authoring

Conventions

  • Use simple shell/python scripts to wrap common tasks.
  • Avoid scripts when a popular native command exists.
  • Locations: scripts/ and packages/*/scripts/.
  • Style: minimal arguments, --help, fail fast, forward common errors, idempotent when sensible.
  • Avoid Makefiles/Justfiles.

During development

  • Run syntax checks and dry-runs.
  • Manually inspect outputs and side effects.
  • Document test steps in script comments.

Documentation

  • Use a brief header comment and why-comments.
  • Keep usage-level instructions in onboarding docs (skills).