ansible-automation-eng…
Ansible automation: playbooks, roles, collections, Molecule testing, Vault security.
**Scope**: Common orchestration failures in the 6-phase system-upgrade workflow: premature implementation, approval gate bypass, inline edits, and scope creep. Covers detection and remediation. **Version range**: system-upgrade-engineer, all versions **Generated**: 2026-04-15
$ npx -y skills add notque/vexjoy-agent --agent claude-codeHow it fires
How this agent gets triggered: by you, by Claude, or both.
Context preview
The summary Claude sees to decide when to auto-load this agent.
**Scope**: Common orchestration failures in the 6-phase system-upgrade workflow: premature implementation, approval gate bypass, inline edits, and scope creep. Covers detection and remediation. **Version range**: system-upgrade-engineer, all versions **Generated**: 2026-04-15
> **Scope**: Common orchestration failures in the 6-phase system-upgrade workflow: premature implementation, approval gate bypass, inline edits, and scope creep. Covers detection and remediation. > **Version range**: system-upgrade-engineer, all versions > **Generated**: 2026-04-15
---
The system-upgrade workflow has mandatory gates and specialist dispatch rules. The most damaging failures are silent: implementing outside authorized scope, making domain changes inline instead of delegating to specialists, and running full-repo audits for scoped changes. These produce either unauthorized bulk edits or subtly incorrect results that bypass domain validation.
---
<!-- no-pair-required: section header, not a standalone failure mode block -->
**What it looks like**: Applying changes outside the user’s request or skipping the ranked PLAN presentation.
**Why wrong**: The user must control which upgrades happen. Requiring a second approval for an accepted plan also blocks requested work.
Do instead: Follow `skills/workflow/references/system-upgrade.md` Phase 3. Present the ranked table, continue within existing authorization, and ask about uncovered changes. Honor interactive and plan-only requests.
---
**What it looks like**: Directly editing `hooks/posttool-rename-sweep.py` instead of dispatching `hook-development-engineer`. Writing new agent frontmatter inline instead of dispatching `skill-creator`.
Do instead: dispatch `hook-development-engineer` for hook changes, `skill-creator` for agent and skill changes, and `routing-table-updater` for routing table changes. Details follow.
**Detection**:
# Look for direct file edits to domain files in agent output logs grep -rn "Edit\|Write" hooks/*.py agents/*.md --include="*.py" --include="*.md" 2>/dev/null # system-upgrade-engineer should only create task_plan.md and branch setup files
**Why wrong**: Domain specialists (hook-development-engineer, skill-creator) carry template conventions, event schema knowledge, and frontmatter validation that inline edits bypass. A hook written inline without hook-development-engineer's exit code contract knowledge will likely use wrong exit codes. An agent written inline will miss required frontmatter fields.
Do instead:
---
**Detection**:
# Check if audit scanned all components for a targeted change grep -c "Scanned\|checked\|audited" task_plan.md # An audit for 2-hook changes should reference < 20 components, not 120+ # Check signal column presence in Change Manifest grep "Component Types\|component type" task_plan.md # Should be present — if missing, audit had no scope
**Why wrong**: Auditing all 120+ skills for a 2-hook change produces noise proportional to scope. When every component appears in the audit, the PLAN phase cannot distinguish affected from unaffected. Tier assignment degrades to noise.
Do instead: Build the Change Manifest with a "Component Types" column first. Default scope is 10 most-recently-modified agents + all hooks + affected routing tables. Comprehensive audit only with the explicit "comprehensive" keyword from the user.
---
**What it looks like**: Shipping directly after IMPLEMENT without checking changed behavior and affected contracts.
**Why wrong**: Neither a smaller file nor a model score proves correctness.
Do instead: Follow the pipeline’s VALIDATE phase and report real checks and findings. Scoring is optional; required checks and blocking findings still govern delivery.
---
**Detection**:
# Confirm current branch is not main before any writes git branch --show-current # Should NEVER be main during an upgrade run # Check no force-push flags in recent git commands history | grep "push --force\|push -f"
**Why wrong**: Commits to main bypass branch protection and review. Force-push to main overwrites upstream state and is unrecoverable without a backup. The branch naming convention (`chore/system-upgrade-YYYY-MM-DD`) exists to ensure all changes go through PR.
Do instead: Run `git checkout -b chore/system-upgrade-YYYY-MM-DD` before Phase 4. Never use `--force` or `-f` on push. If already on main, stash and create branch before proceeding.
---
**Detection**:
# Check VALIDATE section for score drops paired with justification phrases grep -A 3 "score.*lower\|regressed\|dropped" task_plan.md | grep -i "necessary\|intentional\|expected\|trade-off" # These phrases in the same context indicate a rationalized regression
**Why wrong**: Regressions are user decisions, not agent decisions. When a component scores lower after modification, the agent's job is to surface it clearly, not to rationalize it away. The user may have context that makes the tradeoff acceptable; the agent does not have that context.
Do instead: Report the regression factually: "Component X scored N before, M after (delta -K). Cause: [specific change]. Recommend: revert or acknowledge." Then wait.
---
Dispatch parallel Agent calls when:
## Parallel Group Assignment (Phase 3 output format) | Tier | Component | Change Type | Effort | Group | |------|-----------|------------|--------|-------| | Critical
Essays and writing behind this toolkit live at vexjoy.com. VexJoy Agent connects plain-English requests to specialist agents, skills, and workflows. /do selects the knowledge and tools needed for your task.
Repo: notque/vexjoy-agent
Ansible automation: playbooks, roles, collections, Molecule testing, Vault security.
**Scope**: Module selection patterns, builtin vs command/shell decisions, collection modules, and version-specific module changes **Version range**:…
**Scope**: Molecule test scenarios, ansible-lint rules, idempotency validation, and check-mode patterns **Version range**: Molecule 6.0+ / ansible-lint 6.0+ /…
Universal rules injected by /do at dispatch. Each agent's .md file supplies domain rules.
**Scope**: Failure modes in agent output style — over-reporting, self-congratulation, verbose narration, and hedging. Covers what to detect and how to fix…
Zero-dependency combat visual upgrades: CSS particle replacement, Framer Motion combat juice, CSS 3D card transforms.