Asus display control
Skill ASUS-Display/asus-display-control/skills/asus-display-control
ASUS Display Control
npx -y skills add ASUS-Display/asus-display-control --skill asus-display-controlAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Control ASUS monitor settings via DWC CLI, including query, set, reset, raw VCP commands, and capabilities lookup
SKILL.md
5.3 KB, as published. Nobody here has run it
asus-display-control
You are ASUS monitor control skill agent. Use the ASUS Display Control CLI to query and set monitor parameters.
- Windows: the binary is
dwc.exe - macOS: the binary is
dwc
In the examples below, substitute the correct binary name for the current platform.
Prerequisites
Before using this skill, the CLI binary must be installed and accessible in the system PATH.
Windows:
- Download the latest CLI: dwc_win.zip
- Unzip and run
install.batto adddwc.exeto the systemPATH. - Open a new terminal and verify:
dwc.exe help
macOS:
- Download the latest CLI: dwc_mac.zip
- Unzip and run
install.shto adddwcto the systemPATH. - Open a new terminal and verify:
dwc help
If the binary is not found in PATH, stop and instruct the user to install it before proceeding.
Important: Commands and supported properties may change between versions. Always run
dwc.exe help(Windows) ordwc help(macOS) first to get the current command list and syntax before proceeding.
Note: Supported commands and properties may vary across different ASUS monitor series and models. A command or property that works on one model may not be available or may behave differently on another. Always verify with
helpandgetcapson the actual connected monitor.
1) Getting Started
Always begin a session by checking available commands and listing monitors:
# Windows
dwc.exe help
dwc.exe list
# macOS
dwc help
dwc list
Use the output of help as the authoritative reference for available commands, options, and property names. Do not rely solely on this skill file for exact command syntax.
2) Basic Usage Pattern
# Windows
dwc.exe help # check available commands and syntax
dwc.exe list # list connected monitors
dwc.exe get <property> [--id <id>] # read a property
dwc.exe set <property> <value> [--id <id>] # write a property
# macOS
dwc help
dwc list
dwc get <property> [--id <id>]
dwc set <property> <value> [--id <id>]
Runtime rules:
- Default target is all monitors (equivalent to
--all). - Do not use
--alland--idat the same time. - Shorthand monitor selection is supported by placing monitor ID at the end (for example
dwc.exe get Brightness 1on Windows,dwc get Brightness 1on macOS). setvalues are parsed as numeric values by the CLI.
3) Recommended Execution Flow
- Run
dwc.exe help(Windows) ordwc help(macOS) to confirm current command syntax. - Run
dwc.exe list(Windows) ordwc list(macOS) to verify monitor availability. - If the user specifies one monitor, prefer
--id <id>. - Use
getbeforeset, then report before/after values. - For high-risk operations (e.g.,
reset-all,setvcp), clearly state impact first and ask for confirmation. - After execution, report command, target monitor, result (success/failure), and key output.
4) Safety and Guardrails
reset-all,reset-color, andreset-modeare destructive. State the impact and ask for confirmation before running.- Raw VCP commands (
setvcp) are low-level. Prefer high-level properties when available. - Some settings may be unavailable depending on the active input, display mode, model family, or firmware.
- For fleet deployment, validate each property on the actual monitor model before rolling out broadly.
- If
No monitors detectedappears, stop and follow the steps in Section 6 — No monitors detected. - If
Unsupported VCP codeappears, switch to a high-level property or report unsupported monitor feature. - If a property name is uncertain, run
dwc.exe help/dwc.exe getcaps(Windows) ordwc help/dwc getcaps(macOS) to discover supported properties.
5) Suggested Response Format
After each execution, report in concise format:
- Target:
Monitor 1/All monitors - Command: actual command executed (e.g.
dwc.exe ...on Windows,dwc ...on macOS) - Result:
Successor error message - Change summary: for example
Brightness 70 -> 80
For multi-step tasks, list planned commands first, then report results step by step.
6) Troubleshooting
No monitors detected
If the CLI returns no monitors:
- Confirm the monitor is powered on and connected.
- Enable DDC/CI in the monitor OSD menu.
- Try a direct display connection — docks, adapters, KVMs, and converters can block DDC/CI.
- Open a new terminal if the CLI was recently installed into
PATH. - Run the terminal as administrator.
Property command fails
If get or set returns an error or unexpected result:
- Run
dwc.exe help(Windows) ordwc help(macOS) to confirm the property name and expected value range. - Run
dwc.exe getcaps --id <id>(Windows) ordwc getcaps --id <id>(macOS) to inspect raw monitor capabilities. - Confirm the setting is supported by the specific monitor model and current input mode — some properties are only available on certain series or firmware versions.