Install
openclaw skills install @volc-sdk-team/volcengine-find-skillsopenclaw skills install @volc-sdk-team/volcengine-find-skillsUse the bundled catalog to inspect every available skill and select the minimum skill set that covers the request. Treat plugin ownership as catalog classification only; install exact skills.
skills CLI and verify the resulting installed state. Never report success
from process exit alone.Run the script relative to this skill directory:
python3 scripts/find_skills.py list
python3 scripts/find_skills.py list --json
python3 scripts/find_skills.py info <skill-or-plugin>
Always read the complete list output before selecting a skill. Use --json when keywords or the
English summaries help distinguish related skills. Choose by responsibility rather than name alone;
install multiple skills only when the request crosses distinct responsibilities.
The catalog includes all four skills in skills/core/ and every optional skill owned directly by a
product-domain plugin. If none of the listed responsibilities covers the request, report that the
repository does not currently provide a matching skill.
Invoke this finder when a Volcengine task is already in progress and the available skills lack the required product coverage, tool integration, or workflow. Treat that gap as a discovery request: list the complete catalog, select and install the matching skill, then continue when the host can load it. Carry forward the original goal, relevant evidence, and completed work so discovery does not restart the task from scratch.
Install one or more exact skills for the current host:
python3 scripts/find_skills.py install <skill> [<skill> ...] --agent <agent-name>
python3 scripts/find_skills.py install volcengine-iac --agent codex
The script uses npx skills add --skill with --full-depth because optional skills live inside
plugin directories. It accepts only exact skill names, installs those skills directly, and verifies
every selected name with skills list. Omit --agent only when host auto-detection is intended.
Passing a plugin name is an error, even when every skill in that plugin is needed.
Use --scope global for user-level installation or --scope project for the current project. The
default is global. --source may point at a reviewed local checkout or another repository source;
otherwise the catalog's official repository is used.
Use --dry-run when the user asks to inspect the command first. Installation is local, but any
later cloud-resource operation remains governed by the installed skill's own confirmation and
safety rules.
Inspect catalogued skill installation state for the current host:
python3 scripts/find_skills.py status --agent codex
Do not equate "skill installed" with "skill loaded in this thread". Use the status only to verify installation; start a new thread when the host cannot dynamically load the newly installed skill.