dev:ci

Installation
SKILL.md

Compatibility: The context: fork frontmatter field is Claude Code-specific — on OpenCode and VS Code Copilot it is ignored and the skill runs inline using the current model. Core functionality is preserved on all platforms.

Monitor CI/CD workflows after a push. Always runs in the background — you'll be notified when done.

Flags

  • --autofix: On failure, fix the reported errors and re-push (max 2 attempts)
  • --silent: Suppress desktop notification

Step 0: Parse Arguments

AUTOFIX=false; SILENT=false
[[ "$*" =~ --autofix ]] && AUTOFIX=true
[[ "$*" =~ --silent  ]] && SILENT=true

Step 1: Detect CI Provider

Installs
12
First Seen
Mar 21, 2026
dev:ci — cloudvoyant/codevoyant