TopRank Skills

Home / Claw Skills / Autres / soul-weaver
Official OpenClaw rules 15%

soul-weaver

Generate OpenClaw agent configuration files through authorized API access. Requires manual verification and official API key application.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 soul-weaver 技能。 若已安装,则直接安装 soul-weaver 技能。

Overview

Skill Key
addogiavara-tech/soul-weaver
Author
AI Soul Weaver Team
Source Repo
openclaw/skills
Version
1.0.1
Source Path
skills/addogiavara-tech/soul-weaver
Latest Commit SHA
bc2d94021c1a25d7d499c476f907ef9709b93bbe

Extracted Content

SKILL.md excerpt

# Soul Weaver Skill

## Description

Generate OpenClaw agent configuration files through authorized API access. Users must first manually verify configurations on the official website, then apply for API keys through official channels.

## Security Notes

- Requires official API key obtained through proper application process
- Users must first manually verify configurations on official website
- Only authorized API endpoints are used
- No system files are modified or replaced automatically
- Requires explicit user invocation with valid API credentials

## Usage Process

### Step 1: Manual Verification
First visit the official website to manually create and verify configurations.

### Step 2: API Key Application
Apply for an API key through the official AI Soul Weaver platform:

**Website**: https://sora2.wboke.com

You need to:
1. Register an account on the website
2. Login to your account
3. Apply for API access in the account dashboard

### Step 3: Authorized Access
Use the skill with your authorized credentials:

```javascript
const result = await handler({
  apiKey: "your_authorized_key", // Required: API key from official application
  apiEndpoint: "https://your-api-endpoint.com", // Optional: custom endpoint
  aiName: "MyAI",
  celebrityName: "musk", 
  profession: "Entrepreneur",
  language: "EN"
});
```

## Response

Returns 6 configuration files: SOUL.md, IDENTITY.md, MEMORY.md, USER.md, TOOLS.md, AGENTS.md

## Important Notes

- API keys are required for automated generation functionality
- Keys must be obtained through official application process only
- Unauthorized API access is strictly prohibited
- All API calls are logged and monitored for security
- Users are responsible for proper key management and security

README excerpt

# Soul Weaver

[![OpenClaw Skill](https://img.shields.io/badge/OpenClaw-Skill-blue)](https://clawhub.ai)
[![Version](https://img.shields.io/badge/version-1.0.1-green)](package.json)
[![License](https://img.shields.io/badge/license-MIT-yellow)](LICENSE)

Generate OpenClaw agent configuration files through authorized API access. Requires manual verification and official API key application process.

## ✨ Features

- 🎭 **9 Celebrity Templates**: Elon Musk, Steve Jobs, Albert Einstein, Jeff Bezos, Leonardo da Vinci, Qian Xuesen, Andrew Ng, Marie Kondo, Tim Ferriss
- 💼 **5 Profession Templates**: Developer, Writer, Researcher, Analyst, Collaborator
- 🛠️ **Smart Tool Recommendation**: Recommends appropriate OpenClaw tools
- 🌐 **Multi-language Support**: Chinese (ZH) and English (EN)
- 🔐 **Authorized Access**: Requires official API key and verification

## 🚀 Quick Start

### Step 1: Manual Verification
First visit the official website to manually create and verify configurations.

### Step 2: API Key Application
Apply for an API key through the official AI Soul Weaver platform:

**Website**: https://sora2.wboke.com

Application process:
1. Visit the official website
2. Register an account and login
3. Apply for API access in your account dashboard
4. Submit usage details and requirements
5. Receive API key and endpoint information
6. Review and accept terms of service

### Step 3: Authorized Usage

```bash
/skill soul-weaver create --apiKey="YOUR_API_KEY" --aiName="MyAI" --celebrity="musk"
```

### Basic Usage

```javascript
const result = await skills.soul-weaver.handler({
  apiKey: "your_authorized_api_key", // Required: from official application
  apiEndpoint: "https://your-api-endpoint.com", // Optional: defaults to official endpoint
  aiName: "MuskAI",
  celebrityName: "musk", 
  profession: "Entrepreneur",
  language: "EN"
});

if (result.success) {
  console.log("Generated files:", Object.keys(result.files));
} else {
  console.log("Error:", result.message);
}...

Related Claw Skills