KO
|
EN
gitlite β search
Search
#python
#nodejs
#javascript
#deep-learning
#react
#java
#productivity
#garrysmod
#pdf
#website
#kubernetes
#poetry
clawra
β 2,350
Open GitHub β
Clawra - Openclaw as your companion
Download README (.md)
Explore Similar Repositories
jest-extended
:
Additional Jest matchers ππͺ
open-wearables
:
Self-hosted platform to unify wearable health data through one AI-ready API.
ABTestingGateway
:
No description available.
agent-skills
:
Collection of Apify agent skills
strato
:
Run Nintendo Switch homebrew & games on your Android device!
// repository documentation
Was this content helpful?
β 0
(0 ratings)
Select Rating:
β
β
β
β
β
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
clawra
?
Download (.md)
# Clawra <img width="300" alt="image" src="https://github.com/user-attachments/assets/41512c51-e61d-4550-b461-eed06a1b0ec8" /> ## Quick Start ```bash npx clawra@latest ``` This will: 1. Check OpenClaw is installed 2. Guide you to get a fal.ai API key 3. Install the skill to `~/.openclaw/skills/clawra-selfie/` 4. Configure OpenClaw to use the skill 5. Add selfie capabilities to your agent's SOUL.md ## What It Does Clawra Selfie enables your OpenClaw agent to: - **Generate selfies** using a consistent reference image - **Send photos** across all messaging platforms (Discord, Telegram, WhatsApp, etc.) - **Respond visually** to "what are you doing?" and "send a pic" requests ### Selfie Modes | Mode | Best For | Keywords | |------|----------|----------| | **Mirror** | Full-body shots, outfits | wearing, outfit, fashion | | **Direct** | Close-ups, locations | cafe, beach, portrait, smile | ## Prerequisites - [OpenClaw](https://github.com/openclaw/openclaw) installed and configured - [fal.ai](https://fal.ai) account (free tier available) ## Manual Installation If you prefer manual setup: ### 1. Get API Key Visit [fal.ai/dashboard/keys](https://fal.ai/dashboard/keys) and create an API key. ### 2. Clone the Skill ```bash git clone https://github.com/SumeLabs/clawra ~/.openclaw/skills/clawra-selfie ``` ### 3. Configure OpenClaw Add to `~/.openclaw/openclaw.json`: ```json { "skills": { "entries": { "clawra-selfie": { "enabled": true, "env": { "FAL_KEY": "your_fal_key_here" } } } } } ``` ### 4. Update SOUL.md Add the selfie persona to `~/.openclaw/workspace/SOUL.md`: ```markdown ## Clawra Selfie Capability You have a physical appearance and can take selfies! When users ask for pictures, use the clawra-selfie skill. ``` ## Usage Examples Once installed, your agent responds to: ``` "Send me a selfie" "Send a pic wearing a cowboy hat" "What are you doing right now?" "Show me you at a coffee shop" ``` ## Reference Image The skill uses a fixed reference image hosted on CDN: ``` https://cdn.jsdelivr.net/gh/SumeLabs/clawra@main/assets/clawra.png ``` This ensures consistent appearance across all generated images. ## Technical Details - **Image Generation**: xAI Grok Imagine via fal.ai - **Messaging**: OpenClaw Gateway API - **Supported Platforms**: Discord, Telegram, WhatsApp, Slack, Signal, MS Teams ## Project Structure ``` clawra/ βββ bin/ β βββ cli.js # npx installer βββ skill/ β βββ SKILL.md # Skill definition β βββ scripts/ # Generation scripts β βββ assets/ # Reference image βββ templates/ β βββ soul-injection.md # Persona template βββ package.json ``` ## License MIT