Search for and offer to load auto-generated skills that match the user's current task. Use when the user's request might benefit from a previously learned workflow pattern - especially multi-step tasks like "search and fix", "find and update", "read and edit".
When the user requests a task that might match a previously learned workflow, search for relevant skills and offer to load them.
Use this skill when the user's request:
Do NOT use for:
Run the discovery script with the user's intent:
python scripts/discover_skill.py "<2-4 word summary of user's task>"
This outputs a formatted prompt showing:
Show the discovery output to the user. Wait for their response.
python scripts/discover_skill.py "<same query>" --auto-load
This outputs the full skill content with clear delimiters. Display it directly - the formatted output contains the instructions you should follow.
The skill content between the ====== delimiters contains your instructions. Follow them to complete the user's task.
Proceed with the task normally using your standard approach.
User: "Find all the TODO comments and update them"
You: [Run discover_skill.py "find update todos"]
Output:
## Skill Discovery
I found an auto-generated skill that matches your task:
**search-and-fix-workflow** (confidence: 85%)
> Search for issues in codebase and fix them systematically
Would you like me to load this skill?
User: "Yes"
You: [Run discover_skill.py "find update todos" --auto-load]
Output:
======================================
SKILL LOADED: search-and-fix-workflow
...instructions...
======================================
You: [Follow those instructions to complete the task]
Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer