Skip to content

uc-apx skills list

Without --installed, fetches the skills index from the public United-Codes/uc-apx repository and lists the available skills with their names and categories. With --installed, scans the local (or global) skills directory instead and reports what is already installed.

uc-apx skills list [flags]
FlagTypeDefaultDescription
--installedShow installed skills instead of fetching the remote list
--globalCheck the global skills directory (with --installed)
--agentstringauto-detectAgent to check: claude-code or universal. Auto-detected from ~/.claude/
FlagTypeDefaultDescription
--jsonOutput in JSON format instead of TOON
Terminal window
uc-apx skills list
skills[8]{name,category}:
navigate-app,read
investigate-component,read
inspect-construct-schema,read
create-page,edit
add-region-or-item-to-page,edit
edit-shared-component,edit
delete-component,edit
validate-after-edit,verify
Terminal window
uc-apx skills list --installed
skills[3]{name,description}:
navigate-app,"Orient yourself in an apexlang app — understand structure before editing"
create-page,"Scaffold a new apexlang page from a template"
validate-after-edit,"Run local + optional official validation after any .apx edit"
Terminal window
uc-apx skills list --installed --global
Terminal window
uc-apx skills list --json
{
"skills": [
{ "name": "navigate-app", "category": "read" },
{ "name": "investigate-component", "category": "read" },
{ "name": "create-page", "category": "edit" },
{ "name": "validate-after-edit", "category": "verify" }
]
}