ppsspp_list_scripts
List diagnostic scripts from the manifest registry, optionally filtered by category. Returns script entries without executing them, enabling inspection of available diagnostic tools.
Instructions
PURPOSE: List diagnostic scripts declared in .ppsspp-dfx/config/scripts.manifest.yaml.
USAGE: category optional filter (eboot / state / p0ab / ndx / memory / misc / recipe).
BEHAVIOR: READ-ONLY. Reads the in-memory manifest registry (loaded at startup). Does not execute any script.
RETURNS: {scripts: [ScriptEntryView...], count, category}.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| category | No | Optional category filter. Valid values: eboot / state / p0ab / ndx / memory / misc / recipe. If omitted, all manifest entries are returned. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| count | Yes | Number of entries returned. | |
| scripts | Yes | Manifest entries (filtered by category if requested). | |
| category | Yes | Category filter applied (None = no filter). |