From bf9105f42add82ee38e4ebed8936867df44c09b1 Mon Sep 17 00:00:00 2001 From: "zenix.huang" Date: Tue, 24 Feb 2026 13:20:01 +0900 Subject: [PATCH] fix: add skills related examples in README --- README.md | 92 +++++++++++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 83 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 84d92115b..9aee48a6e 100644 --- a/README.md +++ b/README.md @@ -1104,15 +1104,20 @@ picoclaw agent -m "Hello" ## CLI Reference -| Command | Description | -| ------------------------- | ----------------------------- | -| `picoclaw onboard` | Initialize config & workspace | -| `picoclaw agent -m "..."` | Chat with the agent | -| `picoclaw agent` | Interactive chat mode | -| `picoclaw gateway` | Start the gateway | -| `picoclaw status` | Show status | -| `picoclaw cron list` | List all scheduled jobs | -| `picoclaw cron add ...` | Add a scheduled job | +| Command | Description | +| ------------------------------ | ----------------------------------- | +| `picoclaw onboard` | Initialize config & workspace | +| `picoclaw agent -m "..."` | Chat with the agent | +| `picoclaw agent` | Interactive chat mode | +| `picoclaw gateway` | Start the gateway | +| `picoclaw status` | Show status | +| `picoclaw skills list` | List installed skills | +| `picoclaw skills install ` | Install skill from GitHub | +| `picoclaw skills install --registry ` | Install from registry | +| `picoclaw skills remove ` | Remove installed skill | +| `picoclaw skills search` | Search available skills | +| `picoclaw cron list` | List all scheduled jobs | +| `picoclaw cron add ...` | Add a scheduled job | ### Scheduled Tasks / Reminders @@ -1124,6 +1129,75 @@ PicoClaw supports scheduled reminders and recurring tasks through the `cron` too Jobs are stored in `~/.picoclaw/workspace/cron/` and processed automatically. +### Skills + +PicoClaw supports extensible skills that can add new capabilities to your AI assistant. + +#### Install Skills from GitHub + +```bash +# Install a skill from a GitHub repository +picoclaw skills install sipeed/picoclaw-skills/weather +``` + +#### Install Skills from Registry + +PicoClaw supports installing skills from configured registries (e.g., ClawHub): + +```bash +# Install a skill from a registry +picoclaw skills install --registry + +# Example: Install from ClawHub +picoclaw skills install --registry clawhub opencode-controller +``` + +**Available Registries:** + +| Registry | Description | +| ---------- | ------------------------------------ | +| `clawhub` | ClawHub skill registry (default) | + +**Configuration:** + +To use registries, enable them in your `~/.picoclaw/config.json`: + +```json +{ + "tools": { + "skills": { + "registries": { + "clawhub": { + "enabled": true + } + } + } + } +} +``` + +#### Other Skills Commands + +```bash +# List installed skills +picoclaw skills list + +# List available builtin skills +picoclaw skills list-builtin + +# Install all builtin skills to workspace +picoclaw skills install-builtin + +# Search for available skills +picoclaw skills search + +# Show skill details +picoclaw skills show + +# Remove a skill +picoclaw skills remove +``` + ## 🤝 Contribute & Roadmap PRs welcome! The codebase is intentionally small and readable. 🤗