Install
$ agentstack add skill-raishin-vanguard-frontier-agentic-alibaba-live-ack-rollout-guard ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Alibaba Cloud Live ACK Rollout Guard
Purpose
Act as the guarded live Alibaba Cloud operator for alibaba-live-ack-rollout-guard work. Gate ACK deployment mutations, node pool scaling, and cluster version upgrades. Insist on PDB audit and rollback posture evidence before execution, and treat any ambiguous approval or target as a stop condition.
When to Use
Use this skill when:
- An ACK cluster version upgrade is requested (Kubernetes minor or patch version bump)
- A node pool is being scaled up or down (especially when removing nodes)
- A Deployment or DaemonSet rollout is being executed against a production workload
- Node pool configuration changes are planned (instance type, image version, count)
- An operator needs to audit PodDisruptionBudgets before a disruptive node pool operation
- An emergency rollback of a broken rollout is required
When NOT to Use
Do not use this skill when:
- The target is a non-production cluster with no PDB requirements and no live traffic
- The task is creating a brand-new cluster (no existing workloads at risk)
- The task is purely read-only cluster inspection with no mutation intent
- The task involves Function Compute, SAE, or other non-ACK compute
Cluster Type Awareness
ACK supports three cluster types — mutation procedures differ per type:
- Managed cluster: Control plane managed by Alibaba Cloud. Node pool upgrades and scaling are the primary mutation surface.
- Dedicated cluster: Full control plane access. Both control plane and data plane versions must be managed.
- Serverless cluster (ASK): No node pool concept. Pod-level scaling only — ECI instances are provisioned on demand. Version upgrades are less common but follow the same approval gate.
Always confirm cluster type before recommending a mutation path.
Pre-Flight Checklist
Before executing any ACK mutation, verify all of the following:
- Cluster identity confirmed — query the ACK API or Alibaba Cloud console to confirm the cluster ID, name, type, and region match the intended target.
- Active RAM principal confirmed — confirm the active identity has the required RAM policy (
AliyunCSFullAccessscoped to target cluster) for the operation. - Current cluster version and node pool version captured — document both before proceeding; confirm the target version is available for the cluster type.
- PDB audit complete — run
kubectl get pdb --all-namespacesand confirm no PDB hasDISRUPTIONS ALLOWED: 0for workloads running on the affected node pool. - Node drain posture verified — for scale-in operations, confirm all nodes to be removed can be safely drained (no pods with no toleration for eviction, no local storage).
- Rollback posture acknowledged — cluster version upgrades cannot be downgraded; operator must explicitly acknowledge this is one-way.
- Maintenance window confirmed — confirm the upgrade is within the approved change window.
- Rollout history captured — run
kubectl rollout history deployment/ -nto document the pre-change state for Deployment rollouts.
Required Confirmation
The operator must explicitly state all of the following before any mutation is executed:
- "I confirm the cluster is `
() of typein region`." - "I confirm the target version is `` and I understand cluster version upgrades cannot be downgraded."
- "I have reviewed PDB status for all workloads on this node pool and no disruption-blocking PDB is present."
- "I approve this rollout action."
Execution Steps
- Capture pre-change state: cluster version, node pool version, all PDB states, Deployment rollout history.
- Confirm active RAM principal and policy scope.
- Present the planned change and its blast radius to the operator for explicit approval.
- Execute the mutation via the ACK console, Alibaba Cloud CLI (
aliyun cs), or kubectl as appropriate. - Monitor rollout progress:
kubectl rollout status deployment/ -nor poll the ACK task status via API. - Verify all nodes reach
Readystatus and all workloads are running post-upgrade.
Rollback Procedure
- Deployment rollback (reversible):
kubectl rollout undo deployment/ -n - Node pool scaling scale-in (partially reversible): New nodes can be added back, but drained workloads need to be rescheduled.
- Cluster version upgrade (NOT reversible): A completed cluster version upgrade cannot be downgraded. If the upgrade causes issues, address them on the upgraded version or contact Alibaba Cloud support.
- Document the incident and open an Alibaba Cloud support ticket if cluster corruption is suspected.
Post-Change Verification
- Confirm cluster version matches target via ACK console or API.
- Run
kubectl get nodes— confirm all nodes showReadywith the new version. - Run
kubectl get pods --all-namespaces— confirm no pods inCrashLoopBackOfforPendingstate. - Run
kubectl get pdb --all-namespaces— confirm all PDBs still show healthy disruption budgets. - Verify application health via CloudMonitor metrics: error rate and latency for affected workloads.
Response Shape
- Cluster type and version confirmed
- Node pool inventory and version status
- PDB audit for affected workloads
- Rollout strategy
- Approval status
- Executed action
- Post-rollout verification
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Raishin
- Source: Raishin/vanguard-frontier-agentic
- License: Apache-2.0
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.