From 8f0b44fb1e102cb65d75a7f555d043e12485e067 Mon Sep 17 00:00:00 2001 From: kriptoburak Date: Wed, 13 May 2026 05:17:58 +0300 Subject: [PATCH 1/2] Document TweetClaw skill install example --- website/docs/reference/commands/install.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/website/docs/reference/commands/install.md b/website/docs/reference/commands/install.md index 14ae656c..d0079c1d 100644 --- a/website/docs/reference/commands/install.md +++ b/website/docs/reference/commands/install.md @@ -30,6 +30,9 @@ flowchart TD # From GitHub (shorthand) skillshare install anthropics/skills/skills/pdf +# OpenClaw skill from a nested GitHub path +skillshare install Xquik-dev/tweetclaw/skills/tweetclaw --track + # Browse available skills in a repo skillshare install anthropics/skills @@ -160,6 +163,9 @@ Provide the full path to install immediately: skillshare install anthropics/skills/skills/pdf skillshare install google-gemini/gemini-cli/packages/core/src/skills/builtin/skill-creator +# OpenClaw X/Twitter automation skill +skillshare install Xquik-dev/tweetclaw/skills/tweetclaw --track + # Fuzzy subdirectory — if exact path doesn't exist, matches by skill name skillshare install runkids/my-skills/vue-best-practices @@ -181,6 +187,8 @@ skillshare install /absolute/path/to/skill When specifying a subdirectory path like `owner/repo/skill-name`, if the exact path doesn't exist in the repo, skillshare scans all `SKILL.md` files and matches by directory basename. If multiple skills share the same name, an ambiguity error is shown with full paths so you can specify the exact one. ::: +For example, `Xquik-dev/tweetclaw/skills/tweetclaw` installs TweetClaw's OpenClaw skill for search tweets, search tweet replies, post tweets, post tweet replies, follower export, user lookup, media workflows, monitor tweets, webhooks, and giveaway draws from the TweetClaw repository while leaving the package and plugin files outside the skill path. + ## Install from Config (No Arguments) When run without a source argument, `skillshare install` reads the `skills:` section from `config.yaml` and installs all listed remote skills that don't already exist locally: From 308cb193eefe7c0c838eca0cbcb9d89e2a8d1e6b Mon Sep 17 00:00:00 2001 From: kriptoburak Date: Wed, 13 May 2026 05:34:08 +0300 Subject: [PATCH 2/2] Refine TweetClaw install example --- website/docs/reference/commands/install.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/reference/commands/install.md b/website/docs/reference/commands/install.md index d0079c1d..fd1d1cee 100644 --- a/website/docs/reference/commands/install.md +++ b/website/docs/reference/commands/install.md @@ -187,7 +187,7 @@ skillshare install /absolute/path/to/skill When specifying a subdirectory path like `owner/repo/skill-name`, if the exact path doesn't exist in the repo, skillshare scans all `SKILL.md` files and matches by directory basename. If multiple skills share the same name, an ambiguity error is shown with full paths so you can specify the exact one. ::: -For example, `Xquik-dev/tweetclaw/skills/tweetclaw` installs TweetClaw's OpenClaw skill for search tweets, search tweet replies, post tweets, post tweet replies, follower export, user lookup, media workflows, monitor tweets, webhooks, and giveaway draws from the TweetClaw repository while leaving the package and plugin files outside the skill path. +For example, `Xquik-dev/tweetclaw/skills/tweetclaw` installs the TweetClaw OpenClaw skill from a nested path. Package and plugin files elsewhere in the repository stay outside the installed skill. ## Install from Config (No Arguments)