Install
openclaw skills install skill-evolverA complete skill lifecycle manager for discovering, orchestrating, fusing, and evolving skills. Helps decide which skills to use, how to compose or fuse them...
openclaw skills install skill-evolverSolve first. Materialize later.
Create a timestamped output directory for this session:
# Format: output/MM-DD-<feature-slug>/
# Example: output/03-09-pdf-translate/
mkdir -p "output/$(date +%m-%d)-<feature-slug>"
Tip: Use a short slug derived from the task (e.g.,
pdf-translate,data-export,api-integration)
Store the output path for subsequent phases:
OUTPUT_DIR=output/<created-directory>
Analyze the user task and output ${OUTPUT_DIR}/01-intent.md.
See template: references/templates/01-intent.md
Follow the complete skill search workflow: → references/skill-search.md
This workflow covers:
Output files:
${OUTPUT_DIR}/02-candidates.md - Merged search results${OUTPUT_DIR}/02-verify.md - Installation verification (if installed)${OUTPUT_DIR}/02-audit.md - Security audit report (if installed)For each candidate skill, perform deep analysis:
Follow the workflow: references/skill-inspector.md
Output: ${OUTPUT_DIR}/03-inspection.md
After inspection, evaluate whether skills can solve the task:
LLM evaluates:
LLM Recommendation:
Options for user:
Only if approach is Fusion
Follow the complete skill fusion workflow: → references/skill-fusion.md
This workflow covers:
Output files:
${OUTPUT_DIR}/03-fusion-spec.md - Fusion specification${OUTPUT_DIR}/03-fusion-audit.md - Security audit (if fusion)Design execution plan and output ${OUTPUT_DIR}/04-orchestration.md.
See template: references/templates/04-orchestration.md
Use AskUserQuestion tool (or similar tool to Human-in-the-Loop) to confirm plan:
Execute the plan. For each step:
Use AskUserQuestion tool (or similar tool to Human-in-the-Loop) to ask about preservation:
skill-creator)Priority: native > orchestration > temporary > persistent
- Prefer native for simple tasks
- Prefer orchestration when existing skills can solve it
- Materialize only after validation + proven reuse value
- Always provide option [D] for additional input
- Re-optimize when user provides new information