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]| Flag | Type | Default | Description |
|---|---|---|---|
--installed | Show installed skills instead of fetching the remote list | ||
--global | Check the global skills directory (with --installed) | ||
--agent | string | auto-detect | Agent to check: claude-code or universal. Auto-detected from ~/.claude/ |
Global Flags
Section titled “Global Flags”| Flag | Type | Default | Description |
|---|---|---|---|
--json | Output in JSON format instead of TOON |
Examples
Section titled “Examples”List available skills (remote)
Section titled “List available skills (remote)”uc-apx skills listskills[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,verifyList installed skills
Section titled “List installed skills”uc-apx skills list --installedskills[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"Check global install
Section titled “Check global install”uc-apx skills list --installed --globalJSON output
Section titled “JSON output”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" } ]}