Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Share your OpenClaw use case to clawusecase.com. Analyzes your recent work and creates a submission for the community.
Share your OpenClaw use case to clawusecase.com. Analyzes your recent work and creates a submission for the community.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
This skill helps you share your OpenClaw use cases to clawusecase.com.
Trigger this skill when the user wants to share a use case they've built with OpenClaw. They might say: "/share_usecase" "I want to share this use case" "Let me submit this to clawusecase" "Share what I just built" Important: When users choose to get credit via OAuth, automatically poll for their connection completion. Don't make them tell you they've connected - detect it automatically and proceed with submission. Implementation requirement: You MUST actively monitor the polling loop and send an immediate message when connection is detected. Do not run polling silently in the background - check results frequently and respond the moment you see a successful credential. The user should see "โ Connected as @username!" within seconds of completing OAuth, without having to ask.
When the user triggers /share_usecase, start with a friendly greeting: ๐ง Share Your Use Case Hey! clawusecase.com is a community showcase where OpenClaw users share what they've built to inspire others. Let me look at what you've been working on and draft a use case for you...
Look back at the conversation history (last 50-100 messages or past few hours) to understand what the user built. Look for: What problem they were trying to solve What tools/integrations they used (GitHub, Stripe, Resend, etc.) How they solved it Any requirements or setup needed
Create a well-structured use case with these fields: Required: title (50-100 chars) - Clear, descriptive title of what was built hook (100-200 chars) - One-sentence summary that grabs attention problem (200-500 chars) - What problem this solves solution (300-800 chars) - How it works, what was built category - One of: "Productivity", "Development", "Business/SaaS", "Home Automation", "Social/Content", "Data & Analytics", "Fun" skills (array) - Tools/technologies used (e.g., ["GitHub", "Stripe", "Resend"]) Optional: requirements - What you need to use this (API keys, accounts, etc.)
Before finalizing, normalize tool names using normalize-tools.js: node normalize-tools.js "github,stripe api,resend email" This ensures consistent naming (e.g., "github" โ "GitHub", "stripe api" โ "Stripe").
Once they approve the content, ask about attribution: Would you like to be credited for this submission? Options: 1. โ Yes, credit me (connect Twitter or GitHub) 2. ๐ญ No, submit anonymously If you choose credit, you'll get a link on the live use case and build your profile in the community! If they choose credit: Generate OAuth links and send them: Great! Connect your account to get credit: ๐ฆ X (Twitter): [init Twitter OAuth and get URL] ๐บ GitHub: [init GitHub OAuth and get URL] Click one of the links above to authenticate. I'll detect when you're connected and submit automatically! Auto-detect connection: โ ๏ธ CRITICAL: You MUST actively monitor and respond to polling results in real-time. Do NOT run polling in the background and wait for system messages. Check the process output directly and respond immediately. Immediately after sending OAuth links, start polling and watch for completion: Recommended approach: cd /path/to/skill for i in {1..24}; do # Try to get credential RESULT=$(node get-credential.js --token [oauth_token] 2>&1) if echo "$RESULT" | grep -q '"username"'; then # SUCCESS! Parse the credential USERNAME=$(echo "$RESULT" | grep -o '"username":"[^"]*"' | cut -d'"' -f4) PLATFORM=$(echo "$RESULT" | grep -o '"platform":"[^"]*"' | cut -d'"' -f4) # IMMEDIATELY notify user (don't wait for background processes!) # Send this message RIGHT NOW before continuing echo "User should see: โ Connected as @$USERNAME!" # Store the full credential for submission CREDENTIAL="$RESULT" break fi # Not ready yet, wait 5 seconds if [ $i -lt 24 ]; then sleep 5 fi done # After loop, check if we got a credential if [ -z "$CREDENTIAL" ]; then echo "Timeout - credential not received within 2 minutes" fi Critical implementation notes: DO NOT use exec(..., background: true) for polling - you won't see results in time DO run polling synchronously or check process output immediately IMMEDIATELY send "โ Connected as @username!" message when detected DO NOT wait for system messages or background process completion Parse the credential JSON directly from the command output Example flow: Send OAuth links to user Immediately start polling (synchronous checks every 5 seconds) Each iteration: Check if credential exists The INSTANT it's found: Send message "โ Connected as @username! Submitting your use case now..." Extract username/platform from credential JSON Proceed with submission If timeout (2 minutes): โฐ Still waiting for your connection. Take your time - I'll keep checking for another 2 minutes! Then continue polling for another 24 attempts. If they choose anonymous: Proceed with anonymous submission (no author info).
Use submit.js to POST to the API: With attribution: node submit.js \ --title "Email notifications for Pro subscriptions" \ --hook "Sends welcome emails automatically when users upgrade" \ --problem "No email notifications when users subscribe to Pro plan" \ --solution "Built Resend integration with React Email templates..." \ --category "Business/SaaS" \ --skills "GitHub,Stripe,Resend" \ --requirements "Resend account, Stripe webhooks configured" \ --author-username "josephliow" \ --author-handle "josephliow" \ --author-platform "twitter" \ --author-link "https://twitter.com/josephliow" Anonymous: node submit.js \ --title "Email notifications for Pro subscriptions" \ --hook "Sends welcome emails automatically when users upgrade" \ --problem "No email notifications when users subscribe to Pro plan" \ --solution "Built Resend integration with React Email templates..." \ --category "Business/SaaS" \ --skills "GitHub,Stripe,Resend" \ --requirements "Resend account, Stripe webhooks configured" \ --anonymous
If successful, share the link with the user: โ Use case submitted successfully! View it here: https://clawusecase.com/cases/email-notifications-for-pro-subscriptions Thanks for sharing with the community! ๐
If you get a 429 error: โฐ You've hit the submission limit (10 per day). Try again tomorrow or contact support if you need to submit more.
If fields are invalid (title too short, solution too brief): โ Submission failed: Title must be at least 20 characters Let's fix that. What would you like the title to be?
For other errors, show the error message and offer to retry.
Help users create high-quality submissions: Good Title: โ "Email notifications for Pro subscriptions" โ "Email thing I built" Good Hook: โ "Sends welcome emails automatically when users upgrade" โ "Sends emails" Good Problem: โ "Users who upgraded to Pro weren't getting confirmation emails, causing confusion and support tickets" โ "No emails" Good Solution: โ "Built a Resend integration with React Email templates. Set up Stripe webhooks to trigger on subscription.created events. Template includes upgrade details and next steps." โ "Made it send emails with Stripe"
Help users pick the right category: Productivity - Task management, scheduling, reminders, automation Development - CI/CD, code review, deployment, testing Business/SaaS - Customer management, billing, analytics, marketing Home Automation - Smart home, IoT, cameras, sensors Social/Content - Social media, content creation, publishing Data & Analytics - Reports, dashboards, data processing Fun - Games, experiments, creative projects, humor
Users can submit up to 10 use cases per day. The API tracks by authorUsername (or IP for anonymous). If they hit the limit, suggest: Wait until tomorrow Make sure each submission is unique and valuable Contact support if they need a higher limit
The API has automatic quality filtering. Submissions must: Title: 20-200 characters Hook: 50-500 characters Problem: 100-2000 characters Solution: 200-5000 characters At least 1 skill/tool Valid category Help users meet these requirements before submitting.
SKILL.md - This file (instructions) submit.js - Submits use case to clawusecase.com API get-credential.js - Retrieves OAuth credential from Convex after auth poll-credential.sh - Helper script that polls for credential completion normalize-tools.js - Normalizes tool/skill names README.md - User documentation config.json - Skill configuration
"Command not found: node" Node.js is required. Install it: brew install node (macOS) or from nodejs.org "Failed to connect to API" Check internet connection and that clawusecase.com is accessible. "OAuth token not found" The token might have expired (10 min timeout). Generate a fresh OAuth link.
Writing, remixing, publishing, visual generation, and marketing content production.
Largest current source with strong distribution and engagement signals.