ワンクリックで
hermes-automation
Developer workflow automation — git, Docker, CI/CD, code review, monitoring, dependencies, backups, and project management
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Developer workflow automation — git, Docker, CI/CD, code review, monitoring, dependencies, backups, and project management
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | hermes-automation |
| description | Developer workflow automation — git, Docker, CI/CD, code review, monitoring, dependencies, backups, and project management |
| version | 1.0.0 |
| license | MIT |
| metadata | {"author":"azizaeffendi","hermes":{"tags":["automation","devops","git","docker","cicd","github-actions","monitoring","dependencies","productivity"],"category":"devops","requires_toolsets":["terminal"]}} |
Developer workflow automation across 8 domains. Each domain encodes a complete, production-tested procedure that the agent follows precisely — no guessing, no improvising. Covers git workflow, Docker, CI/CD pipelines, code review, monitoring, dependency management, backup/recovery, and project management.
Automate the repeatable. Document the exceptional. Every workflow in this skill is a procedure that a senior engineer has refined through production experience. The agent follows it exactly so you don't have to remember the steps.
/hermes-automation, $hermes-automation# Git: conventional commit format
# feat(scope): description
# fix(scope): description
# docs: description
# chore: description
# BREAKING CHANGE: description
# Git: check what changed for PR description
git diff main...HEAD --stat
git log main...HEAD --oneline
# Docker: build and check size
docker build -t myapp . && docker images myapp
# Docker: check for vulnerabilities
docker scout cves myapp:latest
# CI/CD: validate GitHub Actions syntax
act --list # requires act installed
# Dependencies: audit
npm audit --audit-level=high
pip-audit # Python
cargo audit # Rust
# Monitoring: check endpoint health
curl -si https://your-app.com/health | grep -E "HTTP|status|healthy"
Load only the reference file relevant to the user's request.
01 — Git Workflow
Branch naming conventions, conventional commits, PR descriptions, squash vs merge strategies, conflict resolution, tag and release creation.
→ Load: references/git-workflow.md
02 — Docker & Containers
Multi-stage Dockerfiles, .dockerignore, layer caching, image optimization, docker-compose for development, health checks, non-root users, container security.
→ Load: references/docker-automation.md
03 — CI/CD Pipelines
GitHub Actions workflows for test/build/deploy, environment promotion gates, secret management in pipelines, branch protection rules, matrix builds, deployment rollback.
→ Load: references/cicd-pipeline.md
04 — Code Review
Structured review checklist (correctness, security, performance, maintainability), automated review for common issues, diff analysis, reviewer assignment, review templates.
→ Load: references/code-review.md
05 — Monitoring & Alerts
Health check endpoints, uptime monitoring setup, alert thresholds, PagerDuty/OpsGenie integration patterns, on-call runbooks, incident response templates, postmortem structure.
→ Load: references/monitoring-alerts.md
06 — Dependency Management
Safe upgrade strategies, breaking change detection, semantic versioning, license compliance checking, vulnerability audit and triage, Dependabot/Renovate configuration.
→ Load: references/dependency-management.md
07 — Backup & Recovery
Backup verification (not just creation), restore testing procedures, retention policy configuration, disaster recovery runbooks, RTO/RPO documentation.
→ Load: references/backup-recovery.md
08 — Project Management
Automated release notes generation, CHANGELOG.md updates, issue triage templates, sprint planning checklists, milestone tracking, label taxonomy.
→ Load: references/project-management.md
For automation tasks, always show:
── PLAN ────────────────────────────────────────
Domain: [git-workflow / docker / cicd / etc.]
Task: [what will be done]
Steps: [N steps]
Est: [time estimate]
── EXECUTING ───────────────────────────────────
✅ Step 1: [action taken]
✅ Step 2: [action taken]
⚠️ Step 3: [action that needs confirmation]
→ Waiting for approval before proceeding
── RESULT ──────────────────────────────────────
Status: [Success / Partial / Failed]
Output: [relevant output]
Next: [what to do next]
git add . can include secrets — always use git add -p (interactive) or specific file paths for commits that touch config filesnpm install breaks layer caching; always copy package.json and package-lock.json firstpull_request_target is dangerous — it runs in the context of the target branch with full secrets access; use pull_request for untrusted codenpm audit fix --force can break your app — major version upgrades may contain breaking changes; review the changelog before applyingecho $SECRET prints the secret even if it's masked; use >> $GITHUB_OUTPUT for outputs, never echo secretsreferences/git-workflow.md — Branch strategy, conventional commits, PRs, conflict resolutionreferences/docker-automation.md — Dockerfiles, optimization, compose, securityreferences/cicd-pipeline.md — GitHub Actions, deployment gates, environment promotionreferences/code-review.md — Review process, automated checks, diff analysisreferences/monitoring-alerts.md — Health checks, alerts, runbooks, incident responsereferences/dependency-management.md — Audits, safe upgrades, license compliancereferences/backup-recovery.md — Backup strategies, restore testing, disaster recoveryreferences/project-management.md — Release notes, changelog, issue triage