Claude-skill-registry devops-scripts-authoring
Create or modify devops helper scripts in scripts/ or packages/*/scripts. Use for new wrappers, automation, or script style conventions.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/devops-scripts-authoring" ~/.claude/skills/majiayu000-claude-skill-registry-devops-scripts-authoring && rm -rf "$T"
manifest:
skills/data/devops-scripts-authoring/SKILL.mdsource content
Devops Scripts Authoring
Conventions
- Use simple shell/python scripts to wrap common tasks.
- Avoid scripts when a popular native command exists.
- Locations:
andscripts/
.packages/*/scripts/ - Style: minimal arguments,
, fail fast, forward common errors, idempotent when sensible.--help - 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).