TopRank Skills

Home / Claw Skills / Autres / growthx-bx-submit
Official OpenClaw rules 15%

growthx-bx-submit

Submit your project to Built at GrowthX — the community builder showcase for GrowthX members. Requires a GrowthX API key.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

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

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

Overview

Skill Key
gxt-admin/growthx-bx-submit
Author
gxt-admin
Source Repo
openclaw/skills
Version
-
Source Path
skills/gxt-admin/growthx-bx-submit
Latest Commit SHA
8e375c0fb3727ff04e86154315d3908e2cecae56

Extracted Content

SKILL.md excerpt

# Built at GrowthX — Project Submission

Submit a project to **Built at GrowthX**, the community builder showcase for GrowthX members.

## When to Use

Activate this skill when the user wants to:

- Push, submit, or share a project to Built at GrowthX
- Post a project to the GrowthX builder showcase
- Publish their build on GrowthX

## Getting an API Key

If the user hasn't configured their API key yet, direct them to:

1. Go to **Built at GrowthX** on the GrowthX platform
2. Navigate to their profile / API key settings
3. Click **Generate API Key** — the raw key is shown once, copy it immediately
4. Set the key in OpenClaw config: add it under `skills.entries.growthx-bx-submit.apiKey` in `~/.openclaw/openclaw.json`, or set the `GROWTHX_API_KEY` environment variable

The key is tied to the user's GrowthX membership. If their membership lapses, the key stops working.

## API Endpoint

```
POST https://backend.growthx.club/api/v1/bx/projects/agent
```

### Authentication

Send the API key in the `x-api-key` header:

```
x-api-key: <GROWTHX_API_KEY>
```

### Request Body (JSON)

**Required fields:**

| Field | Type | Constraints |
|-------|------|-------------|
| `name` | string | Max 100 characters. The project name. |
| `tagline` | string | Max 200 characters. A short one-liner about the project. |

**Optional fields:**

| Field | Type | Default | Constraints |
|-------|------|---------|-------------|
| `description` | string | `""` | Max 2000 characters. Longer project description. |
| `category` | string | `"SaaS"` | e.g. SaaS, Fintech, Marketplace, EdTech, HealthTech, AI/ML, Developer Tools, E-commerce |
| `stack` | string[] | `[]` | Tech stack tags, e.g. `["React", "Node.js", "MongoDB"]` |
| `url` | string | `null` | Project URL (must be a valid URI) |
| `status` | string | `"shipped"` | One of: `shipped`, `idea`, `prototyping`, `beta` |
| `buildathon` | string | `null` | Name of a buildathon if this project was built during one |

### Example Request

```bash
cu...

Related Claw Skills