AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Asus Esc8000 Firmware Upgrade

skill-soulmachine-skills-asus-esc8000-firmware-upgrade · by soulmachine

Check and upgrade BMC firmware and BIOS on ASUS ESC8000-E12P (and similar ASMB12/AST2600 AMI-BMC ASUS servers) via Redfish and the BMC's HPM wizard API. Use when asked to check firmware/BIOS versions, update BMC or BIOS on ASUS GPU servers, or recover a BMC stuck in firmware-update/flash mode (login blocked, Redfish 503).

No reviews yet
0 installs
17 views
0.0% view→install

Install

$ agentstack add skill-soulmachine-skills-asus-esc8000-firmware-upgrade

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-soulmachine-skills-asus-esc8000-firmware-upgrade)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Asus Esc8000 Firmware Upgrade? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

ASUS ESC8000 BMC/BIOS Upgrade

Validated end-to-end on ESC8000-E12P (ASMB12-iKVM, AMI SP-X gen13). BMC updates are host-safe; BIOS updates require the chassis powered OFF and a host reboot.

Quick start — check current + latest versions

export BMC_PASSWORD='...'
scripts/check_versions.sh                   # current BMC FW, BIOS, power state
scripts/check_versions.sh  ESC8000-E12P     # + latest versions from ASUS API

Download zips from the URLs the ASUS API returns. BIOS zip → .HPM (BMC-flashable) + .CAP (EzFlash only — don't use here). BMC zip → .hpm.

Workflow A — BMC firmware (host keeps running)

scripts/bmc_update.sh  

Does: preserve-config flags → Redfish multipart push → flash → BMC auto-reboot → version verify. ~10 min. Warning: after the BMC reboots, the host may power ON via power-restore policy — re-check chassis state before any subsequent BIOS work.

Workflow B — BIOS (chassis must be OFF)

  1. Confirm with the operator that the host may go down; gracefully shut it down:

POST /redfish/v1/Systems//Actions/ComputerSystem.Reset {"ResetType":"GracefulShutdown"} and wait for PowerState: Off.

  1. Flash (script enforces a power-off gate and exits update mode on any failure):

``bash python3 scripts/bios_update.py --ip --file ``

  1. Power on: {"ResetType":"On"}. First POST takes 5–15 min (memory retraining).

BiosVersion in Redfish flips mid-POST; then verify the OS comes back.

Update BMC first, then BIOS (paired releases). Do not run two flashes concurrently.

If the BMC is bricked in flash mode (the "3ed" state)

Symptoms: web UI loads but login returns {"error":"Could not login","code":1348} ("Firmware update in progress hence login has been blocked"), Redfish 503, SSH/IPMI/KVM ports closed. No remote fix exists once all sessions are gone — it never times out.

AC drain: unplug both PSU cords (or PDU outlets) 30 s, replug. BMC boots clean in ~3 min. Prevention: never abandon the firmware wizard mid-flow; the scripts here always exit update mode on failure, and hpm/exitupdatemode {"FWUPDATEID":N} works from ANY admin session.

Key gotchas (full details in REFERENCE.md)

  • Managers/Self & Systems/Self are invalid — discover members (Managers/BMC_0, Systems/System_0).
  • BMC reset type is ForceRestart; reset bounces the host ON via power-restore policy.
  • Redfish multipart needs THREE parts incl. OemParameters={"ImageType":"HPM"}.
  • The Redfish UpdateService/upload path CANNOT flash BIOS (demands an unsatisfiable

BiosUpdateMethod) — use the HPM wizard API (Workflow B).

  • After the wizard upload you MUST call PUT hpm/flash — without it the flash never starts

and upgradestatus returns 500 code 1442 "Error in HPM Finish Firmware Upload".

  • ipmitool hpm upgrade does not work: 0xD5 refusal, and ~3 KB/s if it runs at all.
  • PreserveConfiguration flags default to FALSE — set them before BMC flash or lose network/users.

See [REFERENCE.md](REFERENCE.md) for the complete API map, payloads, and error-code table.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.